Monthly Archives: January 2011

Preventing RGB colour shifts

If you are working purely in RGB with software more commonly used for print (and therefore CMYK), colours may shift unexpectedly when exporting between different formats. For example, this piece of artwork, created in Illustrator, contains some text plus a … Continue reading

Posted in Web development | Tagged , | 5 Comments

Colour modes for beginners

This post gives a brief introduction to colour and its representation on computer screens and printed materials. Fact 1: Screens display colour in a completely different way to printed colour. Virtually any screen, whether it’s on a computer, a TV, … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Installing and setting up phpMyAdmin

This is unusually straightforward for open source software. From Unix command line: wget phpMyAdmin-3.3.9-english.tar.gz (or use curl instead of wget) tar -xvzf phpMyAdmin-3.3.9-english.tar.gz (on the webserver) ln -s phpMyAdmin-3.3.9-english phpMyAdmin (so you can access the better-named ‘phpMyAdmin’ and have it point … Continue reading

Posted in mySQL, PHP, Unix | Leave a comment

CMS systems

http://www.joomla.org Free (open source) Gives you a ready-made design (template) which can be edited as necessary Conclusion: seems powerful but might not be worth it if you have to make lots of changes to the templates to get the design … Continue reading

Posted in Web development | Leave a comment

(Most) reliably working with UTF-8 in PHP

If these functions are used in place of the standard PHP string functions, results will be UTF-8 if at all possible. Other encodings can be given instead if desired. The code also includes some other useful string functions.

Posted in PHP, Web development | Tagged , | Leave a comment