JSMIN, The JavaScript Minifier.
This clever little tool will reformat your javascript to reduce its size by approx. 50%. This means that it speeds up the downlod time and removes comments and random spaces etc. This should all mean that page rendering including javascript processing should be a lot faster - not to metion reducing the [...]
Continue reading about Shrink your javascript - speed up your site
This is how to update a field in Mysql where you just want to change the value e.g. for testing etc.
UPDATE resources
SET name=(
REPLACE (name,
‘TestFile’,
‘OldTestFile’));
This will set any field in the column ‘name’ in the table resources to OldTestFile* from TestFile* if it has TestFile as part of its record. e.g. TestFile1.pdf will end up [...]