Options:
Previous day, Next day
- # Session Start: Thu May 07 00:00:00 2015
- # Session Ident: #css
- # [00:14] <Florian> plinss: Bikeshed on the server might need a little kick. A whole bunch of specs are stuck regenerating, and have been for quite a while
- # [00:15] * Joins: jcraig (~jcraig@public.cloak)
- # [00:17] <TabAtkins> Since just after noon
- # [00:19] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [00:22] * Joins: tantek (~tantek@public.cloak)
- # [00:24] <plinss> Florian, TabAtkins: working on it
- # [00:26] <TabAtkins> cool
- # [00:31] * heycam|away is now known as heycam
- # [00:46] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [01:21] * Joins: Florian (~Florian@public.cloak)
- # [01:28] * Quits: Florian (~Florian@public.cloak) (Ping timeout: 180 seconds)
- # [01:48] * Quits: antonp (~Thunderbird@public.cloak) (antonp)
- # [01:50] * Quits: lajava (~javi@public.cloak) (Ping timeout: 180 seconds)
- # [02:30] <cbiesinger> TabAtkins: fantasai: hey, just wanted to make sure that you saw https://lists.w3.org/Archives/Public/www-style/2015Mar/0466.html
- # [02:30] <cbiesinger> should be a simple fidx
- # [02:40] <TabAtkins> cbiesinger: We fixed that by mooting it.
- # [02:41] <cbiesinger> TabAtkins: oh?
- # [02:41] <cbiesinger> is http://dev.w3.org/csswg/css-flexbox/ updated yet?
- # [02:41] <TabAtkins> The relevant conditions were removed, because they were dumb and I'm dumb for writing them.
- # [02:41] <TabAtkins> Should be, yeah.
- # [02:42] <cbiesinger> heh, had the old version cached
- # [02:42] <cbiesinger> TabAtkins: so it's not taking flex basis into account anymore at all?
- # [02:42] <TabAtkins> Correct.
- # [02:42] <cbiesinger> ok
- # [02:43] <TabAtkins> (Yeah, I think plinss fixed the caching headers so they weren't sticking around for a long time now.)
- # [02:44] <cbiesinger> gotta update our implementation now
- # [02:44] <TabAtkins> Sorry! But at least it's correct and acts more sanely now.
- # [03:03] * Disconnected
- # [04:02] * Attempting to rejoin channel #css
- # [04:02] * Rejoined channel #css
- # [04:02] * Topic is 'Agenda confcall 2015-05-06 https://lists.w3.org/Archives/Public/www-style/2015May/0051.html'
- # [04:02] * Set by plinss on Wed May 06 17:56:07
- # [04:12] <liam> In one formatter I designed I called them "lumps"
- # [04:26] * heycam is now known as heycam|away
- # [04:28] <TabAtkins> liam: I mean, its not the *worst* name...
- # [04:59] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [05:00] * Joins: myakura (~myakura@public.cloak)
- # [05:00] * Joins: Florian (~Florian@public.cloak)
- # [05:06] * Quits: dauwhe (~dauwhe@public.cloak) (Client closed connection)
- # [05:07] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [05:07] * Quits: Florian (~Florian@public.cloak) (Ping timeout: 180 seconds)
- # [05:22] * Joins: myakura (~myakura@public.cloak)
- # [05:47] <liam> :)
- # [05:48] <liam> TabAtkins, sorry, just got back from libregraphicsmeeting.org, lots of weird terminology.
- # [05:51] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [05:52] * Joins: myakura (~myakura@public.cloak)
- # [05:55] * heycam|away is now known as heycam
- # [05:59] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [06:17] <TabAtkins> 20:00 <TabAtkins> Hm, I actually like "flow" for the inline stuff.
- # [06:17] <TabAtkins> 20:01 <TabAtkins> So "display:inline" is "inline-level flow" and "display:block" is "block-level flow".
- # [06:17] <TabAtkins> 20:01 <TabAtkins> (Shamelessly stolen from the Box Module.)
- # [06:17] <TabAtkins> Still can't use "block" for the layout-method name, though. :/
- # [06:17] <TabAtkins> Maybe "flow-root"?
- # [06:18] <TabAtkins> display:inline-block being "inline-level flow-root"?
- # [06:25] <TabAtkins> Useful bit: saying "display: flow-root;" gets you a BFC, no 'overflow' hacks needed.
- # [06:26] <TabAtkins> Have to decide whether "display: flow" means inline or block, though.
- # [06:27] <TabAtkins> I guess it's more consistent to have it mean block, like all the other layout methods that have inline and block variants?
- # [06:41] * Joins: jdaggett (~jdaggett@public.cloak)
- # [06:46] * Joins: myakura (~myakura@public.cloak)
- # [06:58] * heycam is now known as heycam|away
- # [07:07] <liam> if it's not clear what display: flow means, why have it?
- # [07:14] <TabAtkins> display:flow would be the same as display:block. "block" would be a legacy value for "block-level flow".
- # [07:15] <TabAtkins> The deal is that display:inline and display:block are both "flow" values, just inline-level vs block-level. Neither are flow-roots - they both flow together.
- # [07:15] <TabAtkins> While display:inline-block is a flow-root, so equivalent to "display: inline-level flow-root;".
- # [07:15] <TabAtkins> And "display: block-level flow-root;" would give you a BFC (finally, without hacks!)
- # [07:15] <TabAtkins> This means there are multiple ways to achieve the same value, unfortunately.
- # [07:16] <TabAtkins> But it's basically identical to display:inline-table being an alternate way to say "display: inline-level table;"
- # [07:16] <TabAtkins> which we've already accepted
- # [07:17] <TabAtkins> (block-level and inline-level flows of course "flow together" in slightly different ways. inline-levels are obvious - they sit together in line boxes - but block-level flows can affect each other via floats.)
- # [07:18] <TabAtkins> We can imagine that the eventual Flow Layout spec defines that you start from a flow-root, the basis of the layout (just like a flex container is the basis of flex layout).
- # [07:19] <TabAtkins> A flow root is subdivided into one or more block flows, which can interact with each other. Each block flow is filled with line boxes, which are filled with inline flows.
- # [07:22] <TabAtkins> This finally kinda rationalizes how block/inline layout works, and squares {block-level, inline-level}x{block, inline} production, where previously we only had three defined.
- # [07:23] <liam> if "display:flow would be the same as display:block" doesn't that answer your question about whether it shoudl be block or inline?
- # [07:23] <TabAtkins> (We definitely had inline-level inline, and inline-level block. We *thought* we had a block-level block, but really it was a block-level inline, and block-level blocks are BFCs.)
- # [07:23] <TabAtkins> liam: That's begging the question.
- # [07:23] <liam> fair enough
- # [07:23] <liam> i wasn't sure how to read that first statement
- # [07:23] <liam> (assertion or conditional on deciding)
- # [07:23] <TabAtkins> I answered it that way *because* I've already loosely decided to default all the basic layout modes to block-level if unspecified. ^_^
- # [07:23] <TabAtkins> Yeah, conditional.
- # [07:24] <liam> it sounds arbitrary in that users can get either behaviour if you need to
- # [07:24] <TabAtkins> Yeah, just like users can get either flex or inline-flex if they need to.
- # [07:25] <liam> and not really clear that one or the other is more or less surprising
- # [07:25] <liam> because depends on usage
- # [07:25] <TabAtkins> yeah
- # [07:26] <liam> so block seems fine if it has to be given a meaning of one or the other
- # [07:26] * TabAtkins needs to head to bed now ^_^
- # [07:27] <liam> night
- # [07:28] * liam too, but notes that we added more support for explicit flows/flowmap in xsl-fo 2 in response to user needs
- # [07:28] <liam> so i'm biased :) but think it a good direciton.
- # [07:50] * Joins: Florian (~Florian@public.cloak)
- # [07:58] * Quits: Florian (~Florian@public.cloak) (Ping timeout: 180 seconds)
- # [08:01] * heycam|away is now known as heycam
- # [08:11] * Joins: myles1 (~Adium@public.cloak)
- # [08:16] * Quits: myles (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [08:28] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [08:29] * Joins: glazou (~glazou@public.cloak)
- # [08:33] * Joins: Florian (~Florian@public.cloak)
- # [08:38] * Joins: dbaron (~dbaron@public.cloak)
- # [08:41] * Joins: plh (plehegar@public.cloak)
- # [08:48] * Joins: Ms2ger (~Ms2ger@public.cloak)
- # [09:07] * Quits: plh (plehegar@public.cloak) (Client closed connection)
- # [09:10] * Joins: tantek (~tantek@public.cloak)
- # [09:31] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [09:32] * Joins: myakura (~myakura@public.cloak)
- # [09:36] * Joins: plh (plehegar@public.cloak)
- # [09:39] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [09:39] * Quits: plh (plehegar@public.cloak) ("Leaving")
- # [09:42] * Joins: plh (plehegar@public.cloak)
- # [09:45] * Joins: lajava (~javi@public.cloak)
- # [09:56] * Quits: jdaggett (~jdaggett@public.cloak) (jdaggett)
- # [10:08] * heycam is now known as heycam|away
- # [10:10] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [10:21] * Joins: Florian (~Florian@public.cloak)
- # [10:22] * Quits: plh (plehegar@public.cloak) (Ping timeout: 180 seconds)
- # [10:25] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [10:28] * Joins: antonp (~Thunderbird@public.cloak)
- # [10:40] * Quits: myles1 (~Adium@public.cloak) ("Leaving.")
- # [10:52] * Joins: jdaggett (~jdaggett@public.cloak)
- # [10:56] * Joins: svillar (~sergio@public.cloak)
- # [11:00] * Joins: tantek (~tantek@public.cloak)
- # [11:01] * Quits: dbaron (~dbaron@public.cloak) ("8403864 bytes have been tenured, next gc will be global.")
- # [11:01] * Joins: dbaron (~dbaron@public.cloak)
- # [11:02] * Joins: glazou_ (~glazou@public.cloak)
- # [11:04] * Quits: glazou (~glazou@public.cloak) (Ping timeout: 180 seconds)
- # [11:04] * glazou_ is now known as glazou
- # [11:08] <glazou> Florian: you have a URL to the airbnb?
- # [11:08] <glazou> (hoping the wifi stays up long enough for me to view it...)
- # [11:09] <Florian> https://www.airbnb.com/rooms/6293951?checkin=05%2F16%2F2015&checkout=05%2F21%2F2015&guests=6&s=ZJPu
- # [11:09] <Florian> glazou: ^
- # [11:11] <glazou> I think it will be 2017 before my download of that page ends
- # [11:11] * Joins: plh (plehegar@public.cloak)
- # [11:11] <glazou> how can we have a W3C meeting with such an unreliable network
- # [11:17] <glazou> perfect : https://www.google.fr/maps/dir/721+Lexington+Ave,+New+York,+NY+10022,+%C3%89tats-Unis/E+69th+St,+New+York,+NY,+%C3%89tats-Unis/@40.7650328,-73.9699588,16z/data=!3m1!4b1!4m13!4m12!1m5!1m1!1s0x89c258e50fab7adb:0x63acb1af76a3ee67!2m2!1d-73.9686554!2d40.7615663!1m5!1m1!1s0x89c258ea30ed93cf:0x61276eb716321405!2m2!1d-73.962014!2d40.767812
- # [11:17] <Florian> Booked
- # [11:17] <Florian> Didn't want to wait, there's not much availability, and this is a good deal
- # [11:19] <glazou> YAY !!!
- # [11:19] <glazou> thank you Florian !!!
- # [11:19] <Florian> Well, this is airbnb, so we still need the host to confirm
- # [11:20] * Joins: myakura (~myakura@public.cloak)
- # [11:24] <glazou> sure
- # [11:27] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [11:35] * Quits: jdaggett (~jdaggett@public.cloak) (jdaggett)
- # [11:37] * Quits: dbaron (~dbaron@public.cloak) (Ping timeout: 180 seconds)
- # [11:50] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [11:51] * Joins: Florian (~Florian@public.cloak)
- # [12:03] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [12:04] * Joins: dbaron (~dbaron@public.cloak)
- # [12:04] * Quits: lajava (~javi@public.cloak) (Ping timeout: 180 seconds)
- # [12:06] * Quits: dbaron (~dbaron@public.cloak) (Client closed connection)
- # [12:08] * Quits: glazou (~glazou@public.cloak) (glazou)
- # [12:18] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [12:35] * Joins: Florian (~Florian@public.cloak)
- # [12:45] * Joins: jdaggett (~jdaggett@public.cloak)
- # [12:55] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [12:58] * Joins: Florian (~Florian@public.cloak)
- # [13:09] * Joins: myakura (~myakura@public.cloak)
- # [13:17] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [13:21] * Joins: glazou (~glazou@public.cloak)
- # [13:35] * Joins: dbaron (~dbaron@public.cloak)
- # [13:35] * Joins: tantek (~tantek@public.cloak)
- # [13:36] * Quits: dbaron (~dbaron@public.cloak) ("8403864 bytes have been tenured, next gc will be global.")
- # [13:36] * Joins: dbaron (~dbaron@public.cloak)
- # [13:39] * Quits: dbaron (~dbaron@public.cloak) ("8403864 bytes have been tenured, next gc will be global.")
- # [13:58] * Joins: nikos_ (~uid28403@public.cloak)
- # [14:09] * Joins: dbaron (~dbaron@public.cloak)
- # [14:46] * Joins: lajava (~javi@public.cloak)
- # [14:47] * Joins: shepazu_ (schepers@public.cloak)
- # [14:50] * Joins: dauwhe (~dauwhe@public.cloak)
- # [14:51] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [14:51] <Florian> Too bad, the airbnb was a scam. Too good to be true.
- # [14:51] * Quits: shepazu (schepers@public.cloak) (Ping timeout: 180 seconds)
- # [14:54] * Quits: glazou (~glazou@public.cloak) (glazou)
- # [14:58] * Joins: myakura (~myakura@public.cloak)
- # [15:05] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [15:05] * Joins: glazou (~glazou@public.cloak)
- # [15:08] * Joins: jcraig (~jcraig@public.cloak)
- # [15:12] * Quits: svillar (~sergio@public.cloak) (Ping timeout: 180 seconds)
- # [15:13] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [15:18] * Joins: jcraig (~jcraig@public.cloak)
- # [15:22] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
- # [15:30] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [15:31] * Joins: tantek (~tantek@public.cloak)
- # [15:33] * Joins: jcraig (~jcraig@public.cloak)
- # [15:38] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [15:59] * Joins: svillar (~sergio@public.cloak)
- # [16:01] * Joins: glenn (~gadams@public.cloak)
- # [16:07] * Quits: nikos_ (~uid28403@public.cloak) ("Connection closed for inactivity")
- # [16:07] * Joins: routed (~user@public.cloak)
- # [16:15] * Quits: dbaron (~dbaron@public.cloak) ("8403864 bytes have been tenured, next gc will be global.")
- # [16:16] * Joins: tempnick (~tempnick@public.cloak)
- # [16:22] * Joins: dbaron (~dbaron@public.cloak)
- # [16:33] * shepazu_ is now known as shepazu
- # [16:37] * Joins: yolo (~yolo@public.cloak)
- # [16:47] * Joins: myakura (~myakura@public.cloak)
- # [16:52] * Quits: plh (plehegar@public.cloak) ("Leaving")
- # [16:53] * Quits: glazou (~glazou@public.cloak) (glazou)
- # [16:54] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [17:01] * Parts: yolo (~yolo@public.cloak)
- # [17:01] * Quits: dbaron (~dbaron@public.cloak) (Ping timeout: 180 seconds)
- # [17:07] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [17:08] * Joins: Florian (~Florian@public.cloak)
- # [17:11] * Parts: tempnick (~tempnick@public.cloak)
- # [17:14] * Quits: jdaggett (~jdaggett@public.cloak) (jdaggett)
- # [17:16] * Joins: Ms2ger (~Ms2ger@public.cloak)
- # [17:33] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [17:38] * Joins: adenilson (~anonymous@public.cloak)
- # [17:38] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [18:12] * Joins: glenn (~gadams@public.cloak)
- # [18:24] * Joins: myakura (~myakura@public.cloak)
- # [18:39] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [18:54] * Quits: dauwhe (~dauwhe@public.cloak) (Client closed connection)
- # [18:55] * Joins: dauwhe (~dauwhe@public.cloak)
- # [19:08] * Joins: dauwhe_ (~dauwhe@public.cloak)
- # [19:14] * Quits: dauwhe (~dauwhe@public.cloak) (Ping timeout: 180 seconds)
- # [19:27] * Quits: dauwhe_ (~dauwhe@public.cloak) (Client closed connection)
- # [19:29] * Quits: svillar (~sergio@public.cloak) (Ping timeout: 180 seconds)
- # [19:29] * Joins: dauwhe (~dauwhe@public.cloak)
- # [19:41] * Joins: Florian (~Florian@public.cloak)
- # [19:41] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [19:41] * Joins: Florian (~Florian@public.cloak)
- # [20:04] * Quits: dauwhe (~dauwhe@public.cloak) (Client closed connection)
- # [20:05] * Joins: dauwhe (~dauwhe@public.cloak)
- # [20:10] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [20:12] * Joins: dauwhe_ (~dauwhe@public.cloak)
- # [20:13] * Quits: dauwhe (~dauwhe@public.cloak) (Ping timeout: 180 seconds)
- # [20:19] * Quits: dauwhe_ (~dauwhe@public.cloak) (Client closed connection)
- # [20:19] * Joins: dauwhe (~dauwhe@public.cloak)
- # [20:22] * Joins: myles (~Adium@public.cloak)
- # [20:24] * Joins: dauwhe_ (~dauwhe@public.cloak)
- # [20:25] * Quits: dauwhe_ (~dauwhe@public.cloak) (Client closed connection)
- # [20:31] * Quits: dauwhe (~dauwhe@public.cloak) (Ping timeout: 180 seconds)
- # [20:33] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [20:34] * Joins: myakura (~myakura@public.cloak)
- # [20:37] * Joins: Florian (~Florian@public.cloak)
- # [20:40] * Joins: dauwhe (~dauwhe@public.cloak)
- # [20:41] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [20:45] * Quits: dauwhe (~dauwhe@public.cloak) (Client closed connection)
- # [20:47] * Joins: dauwhe (~dauwhe@public.cloak)
- # [20:49] * Quits: dauwhe (~dauwhe@public.cloak) (Client closed connection)
- # [20:55] <fantasai> TabAtkins: http://www.w3.org/TR/CSS21/visuren.html#display-prop
- # [20:55] * Joins: dauwhe (~dauwhe@public.cloak)
- # [20:57] <fantasai> http://www.w3.org/TR/CSS21/generate.html#lists
- # [21:01] * Joins: svillar (~sergio@public.cloak)
- # [21:09] * Quits: svillar (~sergio@public.cloak) (Ping timeout: 180 seconds)
- # [21:27] * Quits: dauwhe (~dauwhe@public.cloak) (Ping timeout: 180 seconds)
- # [21:34] * Quits: lajava (~javi@public.cloak) (Ping timeout: 180 seconds)
- # [21:42] * Quits: Florian (~Florian@public.cloak) (Client closed connection)
- # [21:42] * Joins: Florian (~Florian@public.cloak)
- # [21:44] * Joins: dauwhe (~dauwhe@public.cloak)
- # [21:47] * Quits: routed (~user@public.cloak) ("")
- # [21:47] * Joins: myakura (~myakura@public.cloak)
- # [21:50] * Quits: Florian (~Florian@public.cloak) (Ping timeout: 180 seconds)
- # [21:54] * Quits: dauwhe (~dauwhe@public.cloak) (Client closed connection)
- # [21:55] <fantasai> Rossen: If you've got some time, Tab and I have a few questions about percentage sizing in your implementation
- # [21:58] * Quits: antonp (~Thunderbird@public.cloak) (Client closed connection)
- # [21:59] * Joins: antonp (~Thunderbird@public.cloak)
- # [22:08] * Joins: dauwhe (~dauwhe@public.cloak)
- # [22:12] * Quits: dauwhe (~dauwhe@public.cloak) (Client closed connection)
- # [22:13] * Joins: renoirb (renoirb@public.cloak)
- # [22:14] <renoirb> leaverou, yt?
- # [22:14] * heycam|away is now known as heycam
- # [22:14] * Joins: nikos_ (~uid28403@public.cloak)
- # [22:14] * Quits: antonp (~Thunderbird@public.cloak) (Ping timeout: 180 seconds)
- # [22:16] * Joins: antonp (~Thunderbird@public.cloak)
- # [22:24] * Quits: renoirb (renoirb@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [22:33] * Joins: jdaggett (~jdaggett@public.cloak)
- # [22:34] * Joins: renoirb (renoirb@public.cloak)
- # [22:39] * Joins: dauwhe (~dauwhe@public.cloak)
- # [22:47] * Joins: renoirb_ (renoirb@public.cloak)
- # [22:51] * Quits: dauwhe (~dauwhe@public.cloak) (Client closed connection)
- # [22:51] * Joins: dauwhe (~dauwhe@public.cloak)
- # [22:53] * Quits: renoirb (renoirb@public.cloak) (Ping timeout: 180 seconds)
- # [23:03] * Quits: adenilson (~anonymous@public.cloak) (adenilson)
- # [23:05] * Joins: adenilson (~anonymous@public.cloak)
- # [23:06] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [23:06] * Joins: myakura (~myakura@public.cloak)
- # [23:11] * Joins: dauwhe_ (~dauwhe@public.cloak)
- # [23:13] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [23:14] * Quits: dauwhe_ (~dauwhe@public.cloak) (Client closed connection)
- # [23:17] * Quits: dauwhe (~dauwhe@public.cloak) (Ping timeout: 180 seconds)
- # [23:18] * Quits: renoirb_ (renoirb@public.cloak) (Client closed connection)
- # [23:18] * Joins: renoirb (renoirb@public.cloak)
- # [23:30] * Quits: renoirb (renoirb@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [23:36] * Joins: dbaron (~dbaron@public.cloak)
- # [23:36] * Joins: dbaron_ (~dbaron@public.cloak)
- # [23:39] * heycam is now known as heycam|away
- # [23:39] * Joins: renoirb (renoirb@public.cloak)
- # [23:43] * Quits: dbaron (~dbaron@public.cloak) (Ping timeout: 180 seconds)
- # [23:45] * Quits: jdaggett (~jdaggett@public.cloak) (jdaggett)
- # Session Close: Fri May 08 00:00:01 2015
Previous day, Next day
Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn