A project sponsored by the OS to relate photographs to each grid square.
How long before somebody finds a way of exploiting / monetising this?
Geograph.
Posted in Reference | Tagged geograph, ordinance survey, pictures, web 2.0
This SysInternals utility allows you to defrag the Windows page file and other files normally locked.
Posted in Reference | Tagged defrag, page-file, sysinternals
Alternatives to feeding layers’ pellets.
Posted in Reference | Tagged Chickens, feeding
ZamZar on-line file conversion looks like a handy tool for occasional conversions to other file formats. Their privacy policy claims that they don’t share email details, but I would be cautious about sending client confidential information to their servers for conversion. Links to converted documents are mailed back – and could be intercepted on the [...]
Posted in Reference | Tagged conversion, file, tool
OK, so Epson’s support proved to be useless – “isn’t there a DIP switch on the back” and “we don’t do programming here” seemed to be the best they can offer.
Inspiration led me to lookup the ESC/POS sequences for cursor display – not DC2 & DC4 as previously though, they use the ASCII US (31 [...]
Posted in Reference | Tagged code, epos, esc/pos, todo
Posted in Reference | Tagged todo, wordpress
Must spend some more time following this up:
http://www.sarahfreelance.co.uk/2006/02/28/10-minute-seo-check/
Posted in Reference | Tagged seo
Aparently UTW suffers from an expensive query – this site has a fix:
http://ocaoimh.ie/2006/09/27/simple-utw-performance-boost/
Posted in Reference | Tagged code, done, wordpress
From xlDynamic.com
File path, file and worksheet name:
=CELL(“filename”,A1)
File path only:
=LEFT(CELL(“filename”,A1),FIND(“[",CELL("filename",A1),1)-1)
File name only:
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1),1)+1,
FIND("]“,CELL(“filename”,A1),1)-FIND(“[",CELL("filename",A1),1)-1)
The sheet name:
=MID(CELL("Filename",A1),FIND("]“,CELL(“Filename”,A1))+1,255)
Restriction: this technique only works for workbooks that have been saved at least once.
Posted in Reference | Tagged code, excel
I really must get around to implementing these plug-ins to stop clutter in the WordPress category and page lists.
See also here.
Consider the following JavaScript:
// Toggle Show/Hide
function toggle(name) {
if (document.getElementById(name).style.display == “block”) {
document.getElementById(name).style.display = “none”;
} else {
document.getElementById(name).style.display = “block”;
}
}
Posted in Reference | Tagged code, todo, wordpress