Thursday, January 26, 2012
Tuesday, October 18, 2011
fait divers, background music (not) - the 2 (belgian) Dewaele brothers...
this time they did not release a mix/mash-up album - instead, this site/app: http://www.2manydjs.com/radio/radiosoulwax.html
this time they did not release a mix/mash-up album - instead, this site/app: http://www.2manydjs.com/radio/radiosoulwax.html
Thursday, January 06, 2011
jQuery Essentials - a comprehensive introduction for KB
KB - Check out this SlideShare Presentation: It might make more sense than my passionate ramblings?
jQuery Essentials
View more presentations from Marc Grabanski.
Wednesday, December 01, 2010
Wednesday, July 14, 2010
Beautiful YouTube error message - 1
The techs must love it - being referred to as 'highly trained monkeys'...
This is a cut'n'paste of the error page:
500 Internal Server Error
Sorry, something went wrong.
A team of highly trained monkeys has been dispatched to deal with this situation.
If you see them, show them this information:
QbFCxlJQYjqoVZnCEOqyCiUokIwArP
Wednesday, September 16, 2009
One has a webcam taking a picture every few seconds.
The webcam puts the picture in a directory accesible by Apache.
One uses javascript in an html page to dynamically update a webcam webpage.
The webcam overwrites the previous picture taken.
The old picture ends up in the Recycle bin.
After a while, one collects hundreds of images 'webcam.jpg' in the Recycle Bin...
Windows doesn't provide you with an option to restore these files - without one overwriting the other (remember, they have the same name (and came from the same source location/directory).
Here's how I rescued my old webcam pictures:
The above script will run on --probably-- any Squeak (-: and/or :-) Smalltalk.
Let me know if you've crafted a wicked variant on the above...
The webcam puts the picture in a directory accesible by Apache.
One uses javascript in an html page to dynamically update a webcam webpage.
The webcam overwrites the previous picture taken.
The old picture ends up in the Recycle bin.
After a while, one collects hundreds of images 'webcam.jpg' in the Recycle Bin...
Windows doesn't provide you with an option to restore these files - without one overwriting the other (remember, they have the same name (and came from the same source location/directory).
Here's how I rescued my old webcam pictures:
| fd |
fd _ FileDirectory on: 'C:\RECYCLER\S-1-5-21-527237240-515967899-725345543-500' .
fd entries do: [ :fde |
(fde name matches: '*.jpg') ifTrue: [
fd copyFileNamed: fde name toFileNamed: ('c:\webcam\webcam_', ((DateAndTime fromSeconds: fde modificationTime) asSortableString), '.jpg') ] ]
The above script will run on --probably-- any Squeak (-: and/or :-) Smalltalk.
Let me know if you've crafted a wicked variant on the above...
Friday, August 28, 2009
Subscribe to:
Posts (Atom)