Options:
- # Session Start: Sun Feb 03 00:00:00 2013
- # Session Ident: #whatwg
- # [00:03] <Velmont> Okay, so now I know that grammar myth about never ending sentences with prepositions.
- # [00:03] <Velmont> The stuff you learn in #whatwg :]
- # [00:04] <zewt> up with which i will not put and all that
- # [00:06] * Quits: Martin_L (~Martin_L@81-233-190-9-no212.tbcn.telia.com) (Remote host closed the connection)
- # [00:09] <Hixie> how can send() return less than the length that it was given, but with errno==0
- # [00:09] <Hixie> that makes no sense
- # [00:11] * Quits: miketaylr (~miketaylr@208.66.176.4) (Quit: Leaving...)
- # [00:16] * Quits: Lachy (~Lachy@cm-84.215.19.229.getinternet.no) (Quit: Computer has gone to sleep.)
- # [00:18] <smaug____> mystery solved. Ms2ger has been seen
- # [00:20] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [00:24] * Joins: thiessenp (~thiessenp@47.pool62-37-74.dynamic.orange.es)
- # [00:29] * Quits: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr)
- # [00:35] * Joins: Lachy (~Lachy@cm-84.215.19.229.getinternet.no)
- # [00:35] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [00:43] * Quits: nessy (~silviapf@119.17.37.50) (Quit: Leaving.)
- # [00:43] * Quits: stevefaulkner (~stevefaul@77.103.111.77) (Quit: stevefaulkner)
- # [00:51] * Quits: thiessenp (~thiessenp@47.pool62-37-74.dynamic.orange.es) (Quit: Peter is off to fight crime.)
- # [01:02] * Joins: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net)
- # [01:11] * Joins: kerozene (~kerozene@unaffiliated/kerozene)
- # [01:15] * Joins: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [01:15] * Quits: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [01:17] * Quits: yoav_ (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Read error: Operation timed out)
- # [01:19] * Quits: smaug____ (~chatzilla@stat-217-145-38-50.xdsl.toledo.be) (Ping timeout: 244 seconds)
- # [01:20] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [01:22] * Quits: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr)
- # [01:29] <zewt> Hixie: ENONBLOCK?
- # [01:31] <zewt> er, O_NONBLOCK or whatever
- # [01:39] * Quits: WeirdAl (~chatzilla@206.80.1.253) (Remote host closed the connection)
- # [01:43] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [01:45] * Quits: yorick (~yorick@oftn/member/yorick) (Remote host closed the connection)
- # [01:49] * Krinkle|detached is now known as Krinkle
- # [01:54] * Quits: adamovy (~adamovy@efe220.neoplus.adsl.tpnet.pl) (Quit: Nettalk6 - www.ntalk.de)
- # [01:56] * Quits: fr0zenice (~frozenice@unaffiliated/fr0zenice) (Remote host closed the connection)
- # [02:16] * Quits: weinig (~weinig@17.212.155.134) (Quit: weinig)
- # [02:16] * Quits: reinaldob (~reinaldob@201.74.207.56) (Remote host closed the connection)
- # [02:18] * Quits: carbonix (~vcarbune@80-218-192-6.dclient.hispeed.ch) (Quit: Leaving)
- # [02:27] * Joins: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [02:45] * Quits: kerozene (~kerozene@unaffiliated/kerozene) (Quit: leaving)
- # [02:45] <Hixie> zewt: ENONBLOCK is 0?
- # [02:46] <zewt> i mean, if it's a nonblocking fd then writing to it might write a partial amount of data (however much fills in the kernel buffer), and it'll return that amount
- # [02:46] * Quits: seventh (seventh@31.6.53.228) (Ping timeout: 276 seconds)
- # [02:47] <zewt> with tcp, anyway, not udp (and i'm not sure since i normally use write, not send)
- # [02:47] <Hixie> right, and set errno te EAGAIN or EWOULDBLOCK
- # [02:47] <Hixie> but it set it o 0
- # [03:01] * Joins: cabanier (~cabanier@198.134.90.170)
- # [03:06] * Quits: cabanier (~cabanier@198.134.90.170) (Ping timeout: 260 seconds)
- # [03:11] * Joins: weinig (~weinig@24.130.60.35)
- # [03:14] <zewt> errno is only set if there's an error, if it partially writes the buffer then there's no error
- # [03:15] <Hixie> send()'s documentation says the error is set to EAGAIN or EWOULDBLOCK in the case that the length returned doesn't equal the length provided.
- # [03:15] <zewt> if you get -1 and EAGAIN, that means nothing was written (or read) at all, but partial writes return the number of bytes written, which isn't an error (meaning errno is ENOERR)
- # [03:16] <Hixie> well clearly you're right, but imho that's not at all clear in the documentation
- # [03:16] <zewt> what documentation?
- # [03:16] <Hixie> linux man page
- # [03:17] <zewt> very loose documentation, that
- # [03:17] <zewt> write(2) is much slower to reality, i think
- # [03:18] <zewt> wait, i have different OS's in different shells, hold on
- # [03:18] <zewt> write(2) in OSX is closer (slower? i blame the weekend):
- # [03:19] <zewt> [EAGAIN] The file is marked for non-blocking I/O, and no data could be written immediately.
- # [03:22] <Hixie> well in any case this is a pain because i have to rearchitect my code so that i can check for write-readiness in my select loop and the "write" code is in an object that doesn't have access to the select loop's configuration variables. boo.
- # [03:23] <Hixie> (not that this is the most serious of problems, it happened once during an overnight run of continuously sending data)
- # [03:31] * Joins: miketaylr (~miketaylr@70.112.101.224)
- # [03:32] * Joins: kerozene (~kerozene@unaffiliated/kerozene)
- # [03:35] * Krinkle is now known as Krinkle|detached
- # [03:41] * Quits: tomasf (~tom@c-44dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [04:04] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [04:16] * Quits: miketaylr (~miketaylr@70.112.101.224) (Quit: Leaving...)
- # [04:24] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [04:25] * Krinkle|detached is now known as Krinkle
- # [05:07] * Quits: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr)
- # [05:31] * Joins: rcombs (~rcombs@rodgercombs.tk)
- # [05:32] <rcombs> has anyone considered adding inline SVG to WebVTT?
- # [05:32] <Hixie> considered and rejected :-)
- # [05:32] <rcombs> aww
- # [05:32] <rcombs> too complex?
- # [05:32] <Hixie> the first T in WebVTT stands for "Text"
- # [05:33] <shepazu> thus, no images in HyperText Markup Language
- # [05:33] <Hixie> if you want graphics overlayed on your movie... put them in your movie :-)
- # [05:33] <rcombs> hmm
- # [05:33] <Hixie> shepazu: i didn't name that one, so the same logic doesn't apply :-)
- # [05:34] <zewt> technically, couldn't you put images in background-image: url()? heh
- # [05:34] <rcombs> it'd be nice to have an ASS-like standard supported in web for more specific timing on overlays
- # [05:35] <zewt> (i suspect no non-browser implementation will actually implement anything but simple background colors, though)
- # [05:35] <Hixie> rcombs: if what you're looking for is just a generic vector animation system, SVG itself supports that natively
- # [05:35] <rcombs> Hixie: can't embed that in a video
- # [05:36] <Hixie> rcombs: ?
- # [05:36] <rcombs> e.g. screenshot #2 linked here: https://plexapp.lighthouseapp.com/projects/14382/tickets/1414-transcoder-baking-subtitles-results-in-artifacts-quality-degradation-and-incorrect-placement
- # [05:36] <rcombs> the actual bug there is in a very unrelated piece of software
- # [05:36] <rcombs> and the screenshot shows an incorrect rendering, but demonstrates my purpose well
- # [05:37] <zewt> (with one of the most hated seasons of anime of all time)
- # [05:37] <rcombs> the text is precisely positioned over the original in-video text, and a shaped box between the new and old text masking the original out
- # [05:37] <rcombs> zewt: yep
- # [05:37] <rcombs> zewt: I actually watched all 8
- # [05:38] <Hixie> rcombs: this isn't what WebVTT is for. WebVTT is for subtitles. If you're trying to localise a movie, updating graphics, changing text, etc, then subtitles aren't the right technology.
- # [05:38] <rcombs> zewt: there were originally only supposed to be about 3, but they were extended when the animators ran out of material when Disappearance was moved to a movie
- # [05:38] <zewt> nothing in webvtt is designed for replacing moving text in-frame
- # [05:39] <rcombs> Hixie: WebVTT may be the wrong standard, but I think there should be a right one
- # [05:39] <rcombs> at the moment, the best thing we've got is ASS
- # [05:39] <Hixie> rcombs: well that's fine, i have no objection to people making other standards for stuff :-)
- # [05:39] <rcombs> that may just be the standard to support
- # [05:39] <zewt> ssa/ass is not a standard, heh
- # [05:39] <zewt> it's an ad hoc file format
- # [05:39] <rcombs> zewt: therein lies the problem
- # [05:39] <Hixie> rcombs: i would have thought Ogg Theora and WebM were pretty good standards for it myself
- # [05:39] <Hixie> rcombs: gives you ultimate control over each pixel
- # [05:40] <rcombs> Hixie: do those support overlaying text over video in a precise manner that allows you to make paint edits without encoding, storing, and distributing multiple versions of each video?
- # [05:40] <Hixie> rcombs: no, the whole point is what you're doing _should_ involve "encoding, storing, and distributing multiple versions of each video"
- # [05:40] <Hixie> rcombs: because what you're doing is creating multiple versions of each video
- # [05:40] <zewt> Hixie: it absolutely should not
- # [05:41] <rcombs> Hixie: disagreeing there
- # [05:41] <Hixie> ok well i have no particular horse in this race, just letting you know what i think is the right answer
- # [05:41] <rcombs> Hixie: for a change as small as text replacement, which is done (and done well, most of the time) in ASS, there's no good reason for the "correct answer" to involve making a new version of the entire video
- # [05:42] <Hixie> when Pixar made a localised version of Monsters, Inc for the non-US market, they didn't just take Monsters, Inc and overlay it with subtitles
- # [05:42] <Hixie> they changed entire parts of the video
- # [05:42] <rcombs> that's true
- # [05:42] <rcombs> and there are plenty of videos where that is necessary
- # [05:42] <zewt> which means people who want to see the original version have to buy two copies, making it a poor solution
- # [05:42] <rcombs> but also plenty where it's not
- # [05:42] <Hixie> ok well as i said, you guys do as you wish :-)
- # [05:43] * Joins: a-ja (~Instantbi@70.230.170.141)
- # [05:43] <rcombs> (I'm also saddened by MKV's lack of a feature that lets you skip a portion of a video if a particular audio track is selected, and one that specifies a particular subtitle track to accompany a particular audio track)
- # [05:44] <zewt> subtitle tracks and audio tracks are by definition orthogonal
- # [05:44] <zewt> caption tracks and audio tracks are related (same language)
- # [05:44] <rcombs> (or allow swapping to another audio and subtitle track for a particular scene)
- # [05:45] <rcombs> zewt: e.g. associate a non-original audio track with a signs/songs subtitle track, and an original audio track with a full subtitle track
- # [05:46] <rcombs> zewt: or, if multiple full subtitle tracks are present, choose the user's preferred language out of them
- # [05:46] <rcombs> (current behavior, that last bit)
- # [05:46] <zewt> that's an implementation feature, not a file format issue
- # [05:46] <rcombs> I'm not sure what a better channel for this is
- # [05:47] <rcombs> zewt: the implementation can choose a track, but if you have multiple English tracks, it has no way of knowing which is a signs/songs and which is a full dialogue
- # [05:47] <zewt> never seen a case where that even makes sense to have
- # [05:49] <rcombs> zewt: e.g. file with 4 sub tracks (S/S english, D english, D French, D German) and 2 audio tracks (Japanese, English). If English user and English audio, show S/S English by default. If German user, show German by default (same with French). If English user and Japanese audio, show English D by default
- # [05:50] <zewt> "S/S" and "D" are not meaningful abbreviations :)
- # [05:50] <rcombs> zewt: S/S = signs/songs, D = dialogue; sorry
- # [05:51] <zewt> real users listening to english audio who speak english don't want to see captions for signs
- # [05:51] <rcombs> zewt: example on skipping/swapping: if English audio, but a portion was never dubbed, either skip that scene or revert to Japanese audio and English full subtitles (no need to double-encode the JP audio or English subtitles for the scene)
- # [05:52] <zewt> (well, i expect anything with english audio to be a commercial release, with signs actually translated in-band--which isn't really relevant to mkv, since i've never heard of commercial releases of anything in mkv)
- # [05:52] <rcombs> zewt: signs here refers to any original-language text present in the video
- # [05:53] <zewt> also bear in mind that not every single possible thing you might want to do in localization can be soft-encoded, and a whole lot of nittier things where trying to do it will just complicate everyone's lives and probably not actually work very well
- # [05:54] * Quits: kerozene (~kerozene@unaffiliated/kerozene) (Quit: stop with the smalltalk won't you)
- # [05:54] <rcombs> zewt: commercial releases should be able to include both audio tracks _and_ regular subtitles _and_ provide a way to show translated signs (SSA-style)
- # [05:55] <rcombs> zewt: what I'm currently suggesting could be done by making a few additions to the MKV spec (with more specific language than mine) and ASS being properly standardized
- # [05:55] <rcombs> there's no good reason why commercial releases shouldn't be able to use any of this
- # [05:56] <zewt> but it'll never allow changing everything they want to change, and if it doesn't do everything, they'll probably use it for nothing (if they have to pay the cost of reencoding anyway)
- # [05:56] <rcombs> side-note: any idea of a better channel for this?
- # [05:56] <zewt> well it's pretty irrelevant for commercial releases, since they'll always use whatever the home media standard is (eg. bluray), and that'll never be mkv
- # [05:56] <rcombs> This stopped being web-related quite a while back, and I feel like I'm cluttering the channel now
- # [05:57] <zewt> (well, commercial-movies-on-a-disc releases--who knows what'll happen with online delivery, of course, which is more potentially relevant for mkv, webvtt, and so on)
- # [05:57] <rcombs> zewt: why can't MKV be used commercially as a home media standard?
- # [05:57] <rcombs> zewt: online delivery is becoming very popular, and commercial movies on discs are dying slowly
- # [05:57] <rcombs> but dying they are
- # [05:59] <zewt> the industry will always favor a single, universally-supported standard, and open formats simply haven't yet dented that space
- # [05:59] <rcombs> while they haven't at the present time, I see no reason why they can't
- # [05:59] <zewt> maybe they will eventually, but I wouldn't put my money on it any time soon :)
- # [06:00] <zewt> (and no, I don't know what channels are relevant to this; it's not something I've sought out)
- # [06:01] <rcombs> well, that's about all I've got to say about that
- # [06:01] * rcombs returns to his regularly-scheduled bug report filing about bad ASS rendering in Plex
- # [06:04] <zewt> i filed a bug on libass at one point, and his response was along the lines of "people should fix their files, i don't need to make my software work with real data", so I quickly gave up that line of contribution, heh
- # [06:04] <rcombs> <_<
- # [06:04] <rcombs> >_>
- # [06:04] <zewt> http://code.google.com/p/libass/issues/detail?id=67 heh
- # [06:05] * Joins: nessy (~silviapf@124.149.71.84)
- # [06:07] <rcombs> zewt: well, I can see the guy's point
- # [06:07] <zewt> it's an academic point, with no understanding of the file format, that doesn't lead to reliable software
- # [06:08] <rcombs> zewt: it's a bit like keeping bugs in software because people have written around them, and fixing the bugs would break other people's stuff
- # [06:08] <zewt> except the other way around, since it's vsfilter that everything works with and libass that tries to be "pure" and doesn't work as a result
- # [06:09] <rcombs> zewt: I really wish the original web browsers completely stopped, XHTML-style, when presented with an invalid file
- # [06:09] <zewt> i prefer a web that works :)
- # [06:09] <rcombs> zewt: because then people would write valid files
- # [06:10] <rcombs> but it's too late for that now
- # [06:10] <zewt> putting aside other issues (it's pretty author-hostile), as soon as a browser has a bug and lets through an authoring error, it breaks down--now everyone else has to let it through, too
- # [06:11] * Quits: sindresorhus (~sindresor@ec2-107-22-60-93.compute-1.amazonaws.com) (Ping timeout: 260 seconds)
- # [06:11] <zewt> (just as in this case, vsfilter tolerates the broken section header, since it doesn't even parse them, which means libass needs to, too)
- # [06:12] <zewt> (it also doesn't allow for backwards-compatible format extensions, if older software rejects anything it doesn't already know about)
- # [06:13] <rcombs> zewt: anyone who cares about people actually being able to play their videos/view their webpages wouldn't write invalid stuff if it only worked in one browser
- # [06:13] <zewt> except real-world Joe Authors often only test in a single UA (whether that's a browser or a media player)
- # [06:13] <rcombs> zewt: and it'd be trivial to specify, say, for HTML, that unknown tags are allowed and parsed as <div>s
- # [06:14] <rcombs> actually, isn't that how it works now?
- # [06:14] <rcombs> (just an example)
- # [06:15] <rcombs> regardless, it's too late for any of this to actually happen
- # [06:19] * Joins: Guest68256 (~sindresor@107.22.60.93)
- # [06:21] * Joins: kerozene (~kerozene@unaffiliated/kerozene)
- # [06:32] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Ping timeout: 246 seconds)
- # [06:39] <zewt> it's a bit more complicated than that; it's not simply "fatal errors or not", it's "what's an error and what's a warning", which is an analog scale
- # [06:42] <zewt> that's less important than making the "warning" cases behave predictably (which HTML tries very hard to do, and in the above case, ASS failed at)
- # [07:08] * Joins: Jay2daM (~Tomasu@c-68-36-42-150.hsd1.nj.comcast.net)
- # [07:08] <Jay2daM> hello
- # [07:11] * Parts: Jay2daM (~Tomasu@c-68-36-42-150.hsd1.nj.comcast.net) ("Leaving")
- # [07:13] * Quits: dcherman (~dcherman@67.86.9.62) (Ping timeout: 245 seconds)
- # [07:30] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [07:36] * Joins: ehsan (~ehsan@24.212.206.174)
- # [07:47] * Joins: cabanier (~cabanier@67.159.191.98)
- # [07:58] * Quits: kerozene (~kerozene@unaffiliated/kerozene) (Quit: leaving)
- # [08:00] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
- # [08:20] * Joins: annevk (~annevk@94.116.96.141)
- # [08:24] * Quits: [[zz]] (~q@125.25.60.129) (Read error: Connection reset by peer)
- # [08:25] * Joins: [[zz]] (~q@101.108.124.168)
- # [08:42] * Joins: stevefaulkner (~stevefaul@77.103.111.77)
- # [08:46] * Quits: annevk (~annevk@94.116.96.141) (Remote host closed the connection)
- # [08:49] * Joins: kerozene (~kerozene@unaffiliated/kerozene)
- # [08:51] * Quits: cabanier (~cabanier@67.159.191.98) (Ping timeout: 252 seconds)
- # [08:55] * Joins: cabanier (~cabanier@67.159.191.98)
- # [09:04] * Joins: yoav_ (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
- # [09:08] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [09:09] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [09:33] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Quit: rniwa)
- # [09:38] * Joins: svl (~me@202.174.179.54)
- # [09:39] * Quits: cabanier (~cabanier@67.159.191.98) (Read error: No route to host)
- # [10:01] * Quits: stevefaulkner (~stevefaul@77.103.111.77) (Quit: stevefaulkner)
- # [10:02] * Joins: annevk (~annevk@94.116.127.150)
- # [10:03] * Krinkle is now known as Krinkle|detached
- # [10:04] * Joins: shepazu_ (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [10:04] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Read error: Connection reset by peer)
- # [10:04] * shepazu_ is now known as shepazu
- # [10:08] * Joins: Masklinn (~textual@77.109.116.6)
- # [10:10] * Joins: shepazu_ (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [10:10] * Joins: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [10:13] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Ping timeout: 260 seconds)
- # [10:13] * shepazu_ is now known as shepazu
- # [10:13] * Joins: nonge (~nonge@p5082948F.dip.t-dialin.net)
- # [10:16] * Quits: nonge_ (~nonge@p5082BA1E.dip.t-dialin.net) (Ping timeout: 240 seconds)
- # [10:17] * Joins: cabanier (~cabanier@67.159.191.98)
- # [10:21] * Quits: cabanier (~cabanier@67.159.191.98) (Ping timeout: 252 seconds)
- # [10:21] * Joins: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [10:23] * Quits: dbaron (~dbaron@50-0-248-166.dsl.dynamic.sonic.net) (Ping timeout: 244 seconds)
- # [10:38] * Quits: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Quit: stevefaulkner)
- # [10:40] * Joins: stevefaulkner (~stevefaul@77.103.111.77)
- # [10:41] * Joins: nvartolomei (~nvartolom@178.168.103.7)
- # [10:50] * Quits: annevk (~annevk@94.116.127.150) (Remote host closed the connection)
- # [10:51] * Quits: nvartolomei (~nvartolom@178.168.103.7) (Remote host closed the connection)
- # [10:53] * Joins: nvartolomei (~nvartolom@178.168.103.7)
- # [10:54] * Joins: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no)
- # [10:54] * Joins: annevk (~annevk@94.116.127.150)
- # [10:54] * Joins: smaug____ (chatzilla@conference/fosdem/x-bsbqzqbyxzqkyqao)
- # [11:02] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [11:03] * Joins: Martin_L (~Martin_L@81-233-190-9-no212.tbcn.telia.com)
- # [11:03] * Quits: stevefaulkner (~stevefaul@77.103.111.77) (Quit: stevefaulkner)
- # [11:05] * Quits: smaug____ (chatzilla@conference/fosdem/x-bsbqzqbyxzqkyqao) (Ping timeout: 245 seconds)
- # [11:08] * Quits: globbot (~logbot@110.173.227.145) (Remote host closed the connection)
- # [11:09] * Joins: smaug____ (chatzilla@conference/fosdem/x-umkviyvnvfphkvsz)
- # [11:12] * Quits: smaug____ (chatzilla@conference/fosdem/x-umkviyvnvfphkvsz) (Client Quit)
- # [11:14] * Quits: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no) (Remote host closed the connection)
- # [11:16] * Joins: alrra (~alrra@188.24.77.57)
- # [11:16] * Quits: alrra (~alrra@188.24.77.57) (Changing host)
- # [11:16] * Joins: alrra (~alrra@unaffiliated/alrra)
- # [11:21] * Joins: tomasf (~tom@85.229.219.68)
- # [11:34] * Quits: annevk (~annevk@94.116.127.150) (Remote host closed the connection)
- # [11:34] * Quits: svl (~me@202.174.179.54) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [11:35] * heycam|away is now known as heycam
- # [11:38] * heycam is now known as heycam|away
- # [11:38] * heycam|away is now known as heycam
- # [11:40] * Joins: reinaldob (~reinaldob@201.74.207.56)
- # [11:51] * Quits: a-ja (~Instantbi@70.230.170.141) (Quit: Instantbird 1.3 -- http://www.instantbird.com)
- # [12:02] * Joins: bholley (~bholley@ip-41.net-89-2-149.rev.numericable.fr)
- # [12:10] * Joins: Ms2ger (Ms2ger@conference/fosdem/x-fjgcnpxxnejskcds)
- # [12:16] * Quits: nvartolomei (~nvartolom@178.168.103.7) (Remote host closed the connection)
- # [12:22] * Joins: smaug____ (chatzilla@conference/fosdem/x-hietovmhhwupphwe)
- # [12:25] * Joins: fr0zenice (~frozenice@unaffiliated/fr0zenice)
- # [12:27] * Quits: smaug____ (chatzilla@conference/fosdem/x-hietovmhhwupphwe) (Remote host closed the connection)
- # [12:29] * Joins: smaug____ (chatzilla@conference/fosdem/x-ceatodilciomwmuy)
- # [12:41] * heycam is now known as heycam|away
- # [12:43] * Joins: sedovsek (~robert@89.142.208.236)
- # [12:44] * Joins: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no)
- # [12:48] * Quits: smaug____ (chatzilla@conference/fosdem/x-ceatodilciomwmuy) (Remote host closed the connection)
- # [12:48] * Quits: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no) (Ping timeout: 245 seconds)
- # [12:48] * Joins: smaug____ (chatzilla@conference/fosdem/x-jnfnvfypugyvtxat)
- # [12:53] * Quits: sedovsek (~robert@89.142.208.236) (Quit: sedovsek)
- # [13:07] * Quits: smaug____ (chatzilla@conference/fosdem/x-jnfnvfypugyvtxat) (Remote host closed the connection)
- # [13:10] * Quits: nessy (~silviapf@124.149.71.84) (Quit: Leaving.)
- # [13:10] * Quits: bholley (~bholley@ip-41.net-89-2-149.rev.numericable.fr) (Quit: bholley)
- # [13:15] * Quits: reinaldob (~reinaldob@201.74.207.56) (Remote host closed the connection)
- # [13:16] * Joins: yorick (~yorick@oftn/member/yorick)
- # [13:16] * Joins: smaug____ (chatzilla@conference/fosdem/x-cmehullchepawkdi)
- # [13:20] * Quits: Lachy (~Lachy@cm-84.215.19.229.getinternet.no) (Quit: Computer has gone to sleep.)
- # [13:22] * Quits: Ms2ger (Ms2ger@conference/fosdem/x-fjgcnpxxnejskcds) (Ping timeout: 245 seconds)
- # [13:34] * Joins: Ms2ger (Ms2ger@conference/fosdem/x-meatnuzzukmjpdjo)
- # [13:44] * Joins: miketaylr (~miketaylr@99-185-132-104.lightspeed.austtx.sbcglobal.net)
- # [13:47] * Quits: smaug____ (chatzilla@conference/fosdem/x-cmehullchepawkdi) (Read error: Connection timed out)
- # [13:49] * Joins: smaug____ (chatzilla@conference/fosdem/x-rmwxjikrcegoxcwt)
- # [14:05] * Quits: Ms2ger (Ms2ger@conference/fosdem/x-meatnuzzukmjpdjo) (Ping timeout: 245 seconds)
- # [14:13] * Quits: smaug____ (chatzilla@conference/fosdem/x-rmwxjikrcegoxcwt) (Read error: Connection timed out)
- # [14:13] * Joins: smaug____ (chatzilla@conference/fosdem/x-hteygjebaqpkzefq)
- # [14:21] * Quits: miketaylr (~miketaylr@99-185-132-104.lightspeed.austtx.sbcglobal.net) (Quit: Leaving...)
- # [14:25] * Joins: miketaylr (~miketaylr@99-185-132-104.lightspeed.austtx.sbcglobal.net)
- # [14:35] * Joins: Ms2ger (Ms2ger@conference/fosdem/x-yibrfmvvrejerbgg)
- # [14:36] * Joins: henrikkok (~henrikkok@mail.copenhagenbombay.com)
- # [14:37] * Joins: Lachy (~Lachy@cm-84.215.19.229.getinternet.no)
- # [14:37] * Quits: smaug____ (chatzilla@conference/fosdem/x-hteygjebaqpkzefq) (Remote host closed the connection)
- # [14:37] * Joins: smaug____ (chatzilla@conference/fosdem/x-dkqqatwcaoqqysac)
- # [14:42] * Parts: henrikkok (~henrikkok@mail.copenhagenbombay.com)
- # [15:05] * Quits: Ms2ger (Ms2ger@conference/fosdem/x-yibrfmvvrejerbgg) (Ping timeout: 245 seconds)
- # [15:08] * Joins: bholley (~bholley@ip-41.net-89-2-149.rev.numericable.fr)
- # [15:14] * Quits: [[zz]] (~q@101.108.124.168) (Ping timeout: 245 seconds)
- # [15:14] * Joins: nvartolomei (~nvartolom@178.168.103.7)
- # [15:18] * Quits: miketaylr (~miketaylr@99-185-132-104.lightspeed.austtx.sbcglobal.net) (Quit: Leaving...)
- # [15:19] * Joins: [[zz]] (~q@101.108.124.168)
- # [15:26] * Quits: nvartolomei (~nvartolom@178.168.103.7) (Remote host closed the connection)
- # [15:26] * Quits: bholley (~bholley@ip-41.net-89-2-149.rev.numericable.fr) (Ping timeout: 240 seconds)
- # [15:39] * Joins: nvartolomei (~nvartolom@178.168.103.7)
- # [15:46] * Quits: nvartolomei (~nvartolom@178.168.103.7) (Remote host closed the connection)
- # [15:48] * Quits: alrra (~alrra@unaffiliated/alrra) (Quit: Leaving)
- # [15:50] * Joins: Ms2ger (Ms2ger@conference/fosdem/x-ilzkleqhalhahzxh)
- # [15:50] * Quits: Ms2ger (Ms2ger@conference/fosdem/x-ilzkleqhalhahzxh) (Client Quit)
- # [15:50] * Quits: ehsan (~ehsan@24.212.206.174) (Remote host closed the connection)
- # [15:52] * Joins: Ms2ger (Ms2ger@conference/fosdem/x-ouctimpivytgnxcj)
- # [15:58] * Quits: Ms2ger (Ms2ger@conference/fosdem/x-ouctimpivytgnxcj) (Ping timeout: 245 seconds)
- # [16:03] * Joins: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no)
- # [16:04] * Quits: smaug____ (chatzilla@conference/fosdem/x-dkqqatwcaoqqysac) (Ping timeout: 245 seconds)
- # [16:11] * Joins: Ms2ger (Ms2ger@conference/fosdem/x-ldmoqrgwaaizbgkx)
- # [16:20] * Quits: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no) (Remote host closed the connection)
- # [16:52] * Joins: stevefaulkner (~stevefaul@77.103.111.77)
- # [17:04] * Joins: smaug____ (~chatzilla@217.145.38.50)
- # [17:05] * Quits: Ms2ger (Ms2ger@conference/fosdem/x-ldmoqrgwaaizbgkx) (Quit: bbl)
- # [17:06] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [17:11] * Quits: smaug____ (~chatzilla@217.145.38.50) (Ping timeout: 245 seconds)
- # [17:18] * Quits: stevefaulkner (~stevefaul@77.103.111.77) (Quit: stevefaulkner)
- # [17:20] * Joins: stevefaulkner (~stevefaul@77.103.111.77)
- # [17:20] * Joins: dcherman (~dcherman@ool-4356093e.dyn.optonline.net)
- # [17:21] * Joins: danbri (~danbri@173.228.68.60)
- # [17:25] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [17:27] <zewt> heh, the half-baked rubber band scrolling in google groups makes it look pretty amateurish
- # [17:33] <zewt> wonder why js scrollers are so laggy in chrome compared to firefox; it feels like chrome is always a few frames behind when scripts are positioning things on mousemove
- # [17:34] <zewt> seems like all webkit, at least in windows
- # [17:39] * Quits: stevefaulkner (~stevefaul@77.103.111.77) (Quit: stevefaulkner)
- # [17:51] * Joins: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com)
- # [17:56] * Joins: bholley (~bholley@nat/mozilla/x-dyqqbompwinafjsh)
- # [18:00] * Quits: bholley (~bholley@nat/mozilla/x-dyqqbompwinafjsh) (Client Quit)
- # [18:16] * Joins: danielfilho (~danielfil@201.87.94.89)
- # [18:17] <MikeSmith> the whole google groups UI is a bad joke
- # [18:18] <MikeSmith> like watching a failing stand-up comedian
- # [18:19] <MikeSmith> except i guess whoever is maintaining it isn't trying to be funny
- # [18:19] <MikeSmith> google code too
- # [18:20] * Joins: dbaron (~dbaron@50-0-248-166.dsl.dynamic.sonic.net)
- # [18:21] <MikeSmith> trolling by UI
- # [18:23] <MikeSmith> maybe they're having an internal competition, "how bad can we make this before the few remaining people using it say Fuck it and give up"
- # [18:28] * Joins: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no)
- # [18:28] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
- # [18:28] * Joins: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [18:36] * Quits: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no) (Remote host closed the connection)
- # [18:40] * Joins: divya1 (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [18:41] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Ping timeout: 246 seconds)
- # [18:44] * Joins: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com)
- # [18:54] * Joins: twisted (~twisted@82.99.22.84.in-addr.arpa)
- # [18:54] * Quits: twisted (~twisted@82.99.22.84.in-addr.arpa) (Client Quit)
- # [18:55] * Joins: dcherman2 (~dcherman@ool-4356093e.dyn.optonline.net)
- # [18:58] * Quits: dcherman (~dcherman@ool-4356093e.dyn.optonline.net) (Ping timeout: 245 seconds)
- # [19:00] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [19:03] * divya1 is now known as divya
- # [19:06] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [19:16] * Joins: sedovsek (~robert@89.142.208.236)
- # [19:22] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Read error: Connection reset by peer)
- # [19:22] * Joins: cgcardona (~cgcardona@c-24-4-198-207.hsd1.ca.comcast.net)
- # [19:22] * Quits: cgcardona (~cgcardona@c-24-4-198-207.hsd1.ca.comcast.net) (Changing host)
- # [19:22] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [19:28] * Joins: Ms2ger (~Ms2ger@81.242.200.218)
- # [19:41] * Joins: OnlyMax (~OnlyMax@187-126-210-137.user.veloxzone.com.br)
- # [19:43] * Joins: nvartolomei (~nvartolom@178.168.103.7)
- # [19:46] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [19:52] * Joins: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no)
- # [19:53] * Quits: nvartolomei (~nvartolom@178.168.103.7) (Remote host closed the connection)
- # [19:54] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [19:56] * Joins: nvartolomei (~nvartolom@178.168.103.7)
- # [19:57] * Quits: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no) (Ping timeout: 256 seconds)
- # [19:59] * Quits: sedovsek (~robert@89.142.208.236) (Quit: sedovsek)
- # [19:59] * Joins: weinig (~weinig@24.130.60.35)
- # [20:02] * Joins: Kolombiken (~Adium@c80-216-10-244.bredband.comhem.se)
- # [20:11] * Quits: nvartolomei (~nvartolom@178.168.103.7) (Remote host closed the connection)
- # [20:16] * Joins: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no)
- # [20:16] * Quits: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no) (Remote host closed the connection)
- # [20:23] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [20:31] * Quits: cheron (~cheron@unaffiliated/cheron) (Quit: Leaving.)
- # [20:34] * Joins: nvartolomei (~nvartolom@178.168.103.7)
- # [20:35] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [20:36] * Joins: sedovsek (~robert@89.142.208.236)
- # [20:42] * Quits: nvartolomei (~nvartolom@178.168.103.7) (Remote host closed the connection)
- # [20:44] * Quits: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com) (Remote host closed the connection)
- # [20:45] <zewt> last i saw, it was also one of the only google things that actually requires a login just to view
- # [20:54] * Joins: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [20:57] * Quits: sedovsek (~robert@89.142.208.236) (Quit: sedovsek)
- # [21:09] * Joins: ehsan (~ehsan@24.212.206.174)
- # [21:16] * Quits: kerozene (~kerozene@unaffiliated/kerozene) (Quit: Lost terminal)
- # [21:23] * Quits: ehsan (~ehsan@24.212.206.174) (Remote host closed the connection)
- # [21:24] * Quits: OnlyMax (~OnlyMax@187-126-210-137.user.veloxzone.com.br) (Ping timeout: 264 seconds)
- # [21:24] * Joins: nessy (~silviapf@124-149-71-84.dyn.iinet.net.au)
- # [21:28] * Joins: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no)
- # [21:31] * Quits: hasather_ (~hasather_@cm-84.210.170.238.getinternet.no) (Ping timeout: 264 seconds)
- # [21:33] * Quits: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Quit: stevefaulkner)
- # [21:36] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [21:43] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [21:44] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [21:45] * Quits: danielfilho (~danielfil@201.87.94.89) (Remote host closed the connection)
- # [21:52] * Quits: danbri (~danbri@173.228.68.60) (Read error: Connection reset by peer)
- # [21:53] * Joins: danbri (~danbri@173.228.68.60)
- # [21:53] * Quits: Ms2ger (~Ms2ger@81.242.200.218) (Quit: nn)
- # [21:56] * Joins: stevefaulkner (~stevefaul@77.103.111.77)
- # [22:02] * Quits: stevefaulkner (~stevefaul@77.103.111.77) (Quit: stevefaulkner)
- # [22:07] * Quits: [[zz]] (~q@101.108.124.168) (Ping timeout: 245 seconds)
- # [22:08] * Quits: fr0zenice (~frozenice@unaffiliated/fr0zenice) (Remote host closed the connection)
- # [22:09] * Joins: [[zz]] (~q@101.108.124.168)
- # [22:10] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [22:17] <GPHemsley> I don't know what this Keek thing is, but it needs to die.
- # [22:30] * Quits: dbaron (~dbaron@50-0-248-166.dsl.dynamic.sonic.net) (Read error: Operation timed out)
- # [22:33] * Joins: stevefaulkner (~stevefaul@77.103.111.77)
- # [22:33] * Quits: Masklinn (~textual@77.109.116.6)
- # [22:37] * Joins: nvartolomei (~nvartolom@178.168.103.7)
- # [22:40] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [22:40] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [22:42] * matijsb_ is now known as matijsb
- # [22:55] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: This computer has gone to sleep)
- # [22:57] * Quits: stevefaulkner (~stevefaul@77.103.111.77) (Quit: stevefaulkner)
- # [23:07] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Quit: ZNC - http://znc.in)
- # [23:11] * Quits: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [23:17] * Joins: OnlyMax (~OnlyMax@187-126-251-54.user.veloxzone.com.br)
- # [23:26] * heycam|away is now known as heycam
- # [23:26] * Quits: Kolombiken (~Adium@c80-216-10-244.bredband.comhem.se) (Quit: Leaving.)
- # [23:27] * Joins: weinig (~weinig@24.130.60.35)
- # [23:32] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Quit: Leaving.)
- # [23:49] * Joins: SimonSapin (~simon@207.239.114.206)
- # [23:52] * Quits: SimonSapin (~simon@207.239.114.206) (Read error: Connection reset by peer)
- # [23:56] * Quits: nvartolomei (~nvartolom@178.168.103.7) (Remote host closed the connection)
- # [23:57] * Joins: karlcow (~karl@nerval.la-grange.net)
- # Session Close: Mon Feb 04 00:00:00 2013
The end :)