Engine Room
Jump to navigation
Jump to search
Welcome to AardRock's Engine Room—The place where all instruments, tools and infrastructure come to live and evolve.
Mailing Lists
NOTA BENE:
- Adding and removing mailing lists is done using Plesk.
- Managing mailing lists (posts, subscription, digests) is done using MailMan directly.
To add a new mailing list:
- Login to Plesk as administrator.
- Select Domains in the General section of the left navigation bar.
- Select the domain to which you want to add a mailing list, e.g. aardrock.
- Select Mail under Services.
- Select the Mailing lists tab.
- Select Add new mailing list.
- Enter the mailing list name, password and administrators email and press OK.
To manage mailing lists:
- Use Mailman's adminstrative interface.
URLs and subdomains
To add a redirection
- Login on server
- Switch directory to the subdomain's directory.
- Create the directory.
- Create
index.php
containing theLocation:
header instruction.
For example, to have http://cheetah.aardrock.com/faq/ redirect to http://wiki.aardrock.com/Cheetah_FAQ:
# cd /var/www/vhosts/aardrock.com/subdomains/cheetah/httpdocs # mkdir faq # echo '<? header("Location: http://wiki.aardrock.com/Cheetah_FAQ"); ?>' > index.php
Publishing presentations online
To publish a presentation online:
- In Keynote, choose File > Export.
- Select the HTML tab.
- Select Format > JPEG (variable quality).
- Set Quality > 50%
- Click Next; the Save As dialog appears.
- Enter a descriptive name for your presentation, as this is used in all subseqent communication.
- Click Export. Keynote will start exporting the HTML
Note that a HTML file with name presentation.html is generated along with a folder called presentation_files containing slide images.
Next, use ImageMagick to convert the high-resolution images into more convenient low resulotion images.
- %
cd presentation_files
- %
mkdir hi
- %
mv *.jpg hi
- %
cd hi
- %
convert -verbose -crop '1008x768+0+0!' 'presentation.*.jpg[504x384]' ../presentation.%03d.jpg