September 2003 Archives

Archive navigation
Home

Colour

Sep 1

Here are some very good online colour tools.
Ideal for chosing that all important colour scheme for your next web site design.


Filed under:
Misc

SOS Math

Sep 1

Just discovered a Math site which would have saved me hours of headaches during those Math lessons on subjects such as Advanced calculus, series and Homogeneous Linear Equations.

Its a bit late now but I will use this as a reference if I ever have to solve a fast fourier transform anytime soon.


Filed under:
Misc

Float misbehaviour

Sep 1

Eric Meyer shows us how to stop our floats from misbehaving in this article called "Containing Floats".

The article explains how we can prevent float elements from floating outside their parent element.


Filed under:
Standards

CSS image rollovers

Sep 1

Petr Stanicek's innovative article 'Fast rollovers, no preload needed' demonstrates how we can speed up CSS image rollovers using one image instead of three separate images to define state (normal, hover, active / visited).

The principle uses the one image and positions it differently depending upon the state of the button. This actually speeds up the rollover and removes the requirement for preloading.

See also these related articles from A List Apart, Sliding doors part 1 and sliding doors part 2 (Published in 2003).


Filed under:
Standards

Backup MySQL database

Sep 17

Ive logged this one for future reference, its a little batch file used to automate the mysqldump command. It uses the 7-zip utility to compress the sql files http://www.7-zip.org.

If you want to do this in 'nix simply write a BASH script using the tar tool to compress the sql files, and add the script to your cron list.

#!/bin/sh
mysqldump -uroot -ppwd --opt db1 > /sqldata/db1.sql
mysqldump -uroot -ppwd --opt db2 > /sqldata/db2.sql

cd /sqldata/
tar -zcvf sqldata.tgz *.sql


Continue reading
Filed under:
Misc

Creating a photo album with Movable Type

Sep 19

Movable Type does not come with the functionality to upload batches of images, however there are a number of tips and hacks available to create a Photo-Log type gallery.


Continue reading
Filed under:
Misc

More CSS tricks

Sep 25

Try out these rollovers, 3 column alignment and rounded corners all implemented using CSS.


Filed under:
Standards

Making your site search engine frendly

Sep 25

Here is an article at scribbling.net that looks at ways to aid googlebot's ability to find your website.


Filed under:
Misc