| 00:01 | <MikeSmith> | Hixie: hober just tweeted, so if you need to ask him something, maybe DM him on twitter |
| 00:05 | <Hixie> | k |
| 00:05 | <Hixie> | thx |
| 08:51 | <foolip> | boblet: found a bug? |
| 08:52 | <foolip> | boblet: in your example there's no top-level item, nothing should show up, unless I'm misunderstanding |
| 10:09 | <boblet> | foolip: welcome back |
| 10:09 | <boblet> | foolip: that was inside a top level item (a vevent, hence itemprop="location") |
| 16:15 | AryehGregor | finds out about "cat /proc/sys/kernel/random/uuid", cute |
| 17:24 | <foolip> | LS |
| 22:17 | <Lachy> | Best optical illusion ever :-D http://www.reddit.com/r/pics/comments/cjkdj/four_stunning_optical_illusions_that_mess_with/ |
| 23:45 | <taptapir> | how can I achieve alternative sources for audio tag as in this: http://pastebin.com/hZ6r4eCm with javascript:http://en.saturngod.net/blogpost/html5-audio-with-javascript? |
| 23:49 | <aho> | var audio = new Audio(); |
| 23:49 | <aho> | if (audio.canPlayType('audio/ogg; codecs=vorbis') === 'probably') {... go with ogg...} else if etc |
| 23:52 | <taptapir> | aho: thanks, I guess there is no way to just specify alternative sources and let the browser figure it out as in HTML. |
| 23:53 | <aho> | well, you can write a small function for that |
| 23:59 | <roc> | you can create an anonymous audio element, give it anonymous <source> children, etc |
| 23:59 | <roc> | well not anonymous ,just not in the DOM |
| 23:59 | <roc> | note that "new Audio()" is equivalent to document.createElement("audio") |