2009 Dec 27, 7:43"Have a look what happens when a huge hamster hits the Amsterdam Canals in a giant inflatable ball!" Almost a good idea. Maybe next time add some paddles to the outside of the ball.
humor video youtube hamster amsterdam water 2009 Dec 23, 9:58Results of a set of black box tests on various characters in various parts of URLs in various popular browsers.
via:mnot url uri iri idn dns browser web technical 2009 Dec 16, 9:48Its sometimes captioned frames from hilarious moments you may recall from The Simpsons!
humor history tv simpsons image 2009 Dec 8, 8:45"And then there’s Mysterious Letters, a Kickstarter project from two artists — Michael and Lenka — to mail everyone in the world a personal letter. It began in April with a small village named
Cushendall in Northern Ireland, where the letters caused quite a stir"
humor art letter mail 2009 Nov 29, 1:53Fictional characters with beards. "Bearded: Brock Samson, Bearded: Robocop, Bearded: Hellboy, Bearded: Boba Fett, Bearded: Black Mage, Bearded: Wario, Bearded: Clint Eastwood, Bearded: Batman"
humor art beard facial-hair hero brock-samson robocop batman boba-fett 2009 Nov 29, 1:43Queen's "Don't Stop Me Now" accompanied by 4 games of a hacked Super Mario World level. The matching of the background images between the four plays is what gets me.
humor videogame video youtube mario queen music dont-stop-me-now via:waxy 2009 Nov 28, 3:50The downside of the placebo the nocebo: "This is the amazing world of the nocebo effect, where negative expectations can induce unpleasant symptoms, in the absence of a physical cause.", "In two of
them, the consent form contained a statement outling various gastrointestinal side effects, and in these centres there was a sixfold increase in the number of people reporting such symptoms and
dropping out of the trial, compared with the one centre that did not list such side effects in the form."
nocebo placebo science medicine ben-goldacre 2009 Nov 23, 11:33A map of the sciences generated via science web portals: "Over the course of 2007 and 2008, we collected nearly 1 billion user interactions recorded by the scholarly web portals of some of the most
significant publishers, aggregators and institutional consortia...The resulting model was visualized as a journal network that outlines the relationships between various scientific domains and
clarifies the connection of the social sciences and humanities to the natural sciences."
via:pskomoroch visualization science map graph 2009 Nov 20, 2:31YouTube now does automatic captioning in some cases and automatic timing in all cases. Automatic timing lets you upload a transcript with a video and YouTube will do speech to text and figure out
when the various parts of the transcript need to be displayed.
youtube video caption accessibility audio subtitles technical 2009 Oct 28, 11:02"This session will expose the goodness in JavaScript, an outstanding dynamic programming language. Within the language is an elegant subset that is vastly superior to the language as a whole, being
more reliable, readable and maintainable." Zeke recommended listening to his talks.
google video technical douglas-crockford javascript programming presentation jslint web browser 2009 Oct 25, 5:50Every level has its own twist. In one, P switches stop time as in enemies freeze as well as the level clock, which starts at 60 seconds. The enemies are taken from previous Mario games, Donkey Kong
Country, Chrono Trigger, and others. Entertaining!
game mario download hack rom emulate nes nintendo japanese 2009 Oct 13, 9:14I like the window management they describe: looks like it would be simple and intuitive to switch between various apps. Although the giant keyboard sized touch pad sitting right in front of the
keyboard seems like they should somehow be merged.
via:waxy gui ui technical video touchscreen multitouch 2009 Oct 7, 8:10Quirksmode does a chart comparing the differences in various versions of WebKit: "There’s iPhone WebKit, Android WebKit, S60 WebKit (at least two versions each), Bolt, Iris, Ozone, and Palm Pre, and
I don’t doubt that I’ve overlooked a few minor WebKits along the way. All 10 mobile WebKits I’ve identified so far are subtly or wildly different."
compatibility web development browser webkit apple google android iphone safari technical via:mattb 2009 Oct 6, 9:43Articles on various APIs and other experiments from the NY Times. Some interesting things in here...
blog todo nytimes api programming mashup journalism technical 2009 Sep 17, 11:12This Javascript Nintendo emulator works amazingly well in Google Chrome. You can play Dr. Mario, Super Mario Bros., Tetris, The Legend of Zelda, etc.
browser javascript nintendo nes game videogame google tetris emulator 2009 Sep 10, 6:26Typekit's protections for their hosted fonts include referer header checking, and various obfuscations: "Our intent is only to discourage casual misuse and to make it clear that taking fonts from
Typekit is an explicit and intentional act."
via:kottke font typekit internet web security legal technical 2009 Aug 28, 9:12
sequelguy posted a photo:
Cookies and cupcakes mysteriously appeared in my office. (Actually not mysterious -- thanks Eric!)
birthday chair cookie cupcake 2009 Aug 28, 3:39
I built timestamp.exe, a Windows command line tool to convert between computer and human readable date/time formats
mostly for working on the first run wizard for IE8. We commonly write out our dates in binary form to the registry and in order to test and debug my work it became useful to be able to determine to
what date the binary value of a FILETIME or SYSTEMTIME corresponded or to produce my own binary value of a FILETIME and insert it into the registry.
For instance, to convert to a binary value:
[PS C:\] timestamp -inString 2009/08/28:10:18 -outHexValue -convert filetime
2009/08/28:10:18 as FILETIME: 00 7c c8 d1 c8 27 ca 01
Converting in the other direction, if you don't know what format the bytes are in, just feed them in and timestamp will try all conversions and list only the valid ones:
[PS C:\] timestamp -inHexValue "40 52 1c 3b"
40 52 1c 3b as FILETIME: 1601-01-01:00:01:39.171
40 52 1c 3b as Unix Time: 2001-06-05:03:30:08.000
40 52 1c 3b as DOS Time: 2009-08-28:10:18:00.000
(it also supports OLE Dates, and SYSTEMTIME which aren't listed there because the hex value isn't valid for those types). Or use the guess
option to get timestamp's best guess:
[PS C:\] timestamp -inHexValue "40 52 1c 3b" -convert guess
40 52 1c 3b as DOS Time: 2009-08-28:10:18:00.000
When I first wrote this I had a bug in my function that parses the date-time value string in which I could parse 2009-07-02:10:18 just fine, but I wouldn't be able to parse 2009-09-02:10:18
correctly. This was my code:
success = swscanf_s(timeString, L"%hi%*[\\/- ,]%hi%*[\\/- ,]%hi%*[\\/- ,Tt:.]%hi%*[:.]%hi%*[:.]%hi%*[:.]%hi",
&systemTime->wYear,
&systemTime->wMonth,
&systemTime->wDay,
&systemTime->wHour,
&systemTime->wMinute,
&systemTime->wSecond,
&systemTime->wMilliseconds) > 1;
See the problem?
To convert between these various forms yourself read The Old New Thing date conversion article or
Josh Poley's date time article. I previously wrote about date formats I like and dislike.
date date-time technical time windows tool 2009 Aug 28, 3:02Lovely visualization of the time travels taken by characters in various movies and television series and notes the places where they overlap.
via:waxy time-travel bttf startrek tv movie information visualization 2009 Aug 21, 3:26"Dive Into HTML 5 seeks to elaborate on a hand-picked Selection of features from the HTML 5 specification and other fine Standards. I shall publish Drafts periodically, as time permits." Lovely
design.
via:waxy reference programming howto design html5 typography mark-pilgrim html web development technical