/irc-logs / freenode / #whatwg / 2015-08-22 / end

Options:

Previous day, Next day

  1. # Session Start: Sat Aug 22 00:00:00 2015
  2. # Session Ident: #whatwg
  3. # [00:02] * Quits: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net) (Client Quit)
  4. # [00:02] * Quits: sarrri (~sari@unaffiliated/sarri) (Quit: [~sarri])
  5. # [00:08] * Joins: jensnockert (~jensnocke@84.219.248.21)
  6. # [00:09] * Joins: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net)
  7. # [00:10] * Quits: weinig (~weinig@216.9.107.110) (Quit: weinig)
  8. # [00:12] * Joins: sarrri (~sari@2a01:238:4329:1400:d20b:3dde:63aa:b36f)
  9. # [00:12] * Quits: sarrri (~sari@2a01:238:4329:1400:d20b:3dde:63aa:b36f) (Changing host)
  10. # [00:12] * Joins: sarrri (~sari@unaffiliated/sarri)
  11. # [00:13] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 244 seconds)
  12. # [00:13] * Quits: jernoble (~jernoble@17.202.46.221) (Quit: Computer has gone to sleep.)
  13. # [00:24] * Quits: ttepasse (~ttepasse@ip-178-200-61-79.hsi07.unitymediagroup.de) (Quit: Textual IRC Client: www.textualapp.com)
  14. # [00:27] * Quits: roc (~chatzilla@121.98.81.38) (Ping timeout: 260 seconds)
  15. # [00:29] * Quits: jst_ (~quassel@198.199.94.175) (Remote host closed the connection)
  16. # [00:30] * Joins: jst (~quassel@198.199.94.175)
  17. # [00:30] * Quits: jst (~quassel@198.199.94.175) (Remote host closed the connection)
  18. # [00:30] * Joins: jst (~quassel@198.199.94.175)
  19. # [00:32] * Joins: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net)
  20. # [00:34] * Quits: jyasskin (~jyasskin@71-222-53-196.ptld.qwest.net) (Quit: My computer has gone to sleep. ZZZzzz…)
  21. # [00:47] * Quits: ccardona-work (~ccardona-@209.213.209.190) (Quit: ccardona-work)
  22. # [00:51] * Quits: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net) (Quit: eric_carlson)
  23. # [00:54] * Joins: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net)
  24. # [00:55] * Joins: ccardona-work (~ccardona-@209.213.209.190)
  25. # [00:55] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  26. # [01:00] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Excess Flood)
  27. # [01:01] * Quits: ehsan_ (~ehsan@66.207.208.102) (Remote host closed the connection)
  28. # [01:02] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
  29. # [01:05] <MikeSmith> terinjokes: I would guess that whatever version of openssl running on that host is whatever security-patched version is currently in debian stable
  30. # [01:11] * Joins: roc (~chatzilla@121.98.81.38)
  31. # [01:33] * Quits: ccardona-work (~ccardona-@209.213.209.190) (Quit: ccardona-work)
  32. # [01:58] <TabAtkins> annevk: I'm rewriting the serializer to be more opinionated about formatting (and as a result, no longer strew bonus newlines everywhere).
  33. # [01:58] <TabAtkins> Since you care about the output, what do you prefer in the situation where a block element contains only inline content:
  34. # [01:59] <TabAtkins> (a) the block's start tag, content, and end tag are all on the same line, or
  35. # [01:59] * Quits: ambv (~ambv@199.201.64.130) (Quit: sys.exit(0) # computer went to sleep)
  36. # [01:59] <TabAtkins> (b) the block's start tag is on one line, the content is indented on the next line, and the end tag is on a third line
  37. # [02:01] * Quits: tantek (~tantek@corp-nat.p2p.sfo1.mozilla.com) (Quit: tantek)
  38. # [02:06] <gsnedders> nox: BTW, isn't it still the case that SSE2 is *way* quicker with aligned reads? Do you not want to check input is aligned first?
  39. # [02:07] * Quits: smaug____ (~chatzilla@a91-154-43-105.elisa-laajakaista.fi) (Ping timeout: 240 seconds)
  40. # [02:07] <nox> gsnedders: I guess I could.
  41. # [02:07] <nox> jamesr___: Yeah, have to check.
  42. # [02:08] <nox> gsnedders: I'm not sure the simd crate handle that though.
  43. # [02:08] <jamesr___> sse2 instructions generally require 16 byte alignment or they fault
  44. # [02:09] <jamesr___> or some do, it hink
  45. # [02:11] <nox> Alignement matters only for load and store.
  46. # [02:12] <nox> gsnedders: In general when handling multibyte encodings, you can't stay aligned during the whole reading anyway.
  47. # [02:13] <nox> gsnedders: Maybe through very fancy shuffling to handle continuation bytes across chunks, but I'm not sure it's worth it.
  48. # [02:14] * Joins: bin_005 (~ctlM@80.83.239.96)
  49. # [02:15] <Domenic> hmm how did nobody else catch that ASCII to UTF8 is a memcpy...
  50. # [02:16] <jsbell> I was wondering about that; isn't the code actually UTF-8 to ASCII, which requires range validation?
  51. # [02:17] <jsbell> (I glanced at the code only enough to realize I didn't care that much...)
  52. # [02:17] <Domenic> yeah same...
  53. # [02:17] * Quits: howitdo (~howitdo@unaffiliated/howitdo) (Ping timeout: 246 seconds)
  54. # [02:17] <Domenic> "ASCIIEncoder" implies you are right
  55. # [02:19] * Quits: jsbell (jsbell@nat/google/x-wiumzjnyozibajoh) (Quit: There's no place like home...)
  56. # [02:29] * Quits: ap (~ap@17.202.44.214)
  57. # [02:31] * Joins: howitdo (~howitdo@unaffiliated/howitdo)
  58. # [02:34] <jamesr___> "maybe ASCII" -> utf8 is not a memcpy, if you want to map bytes with the high bit set to an error value in some way
  59. # [02:50] * Quits: roc (~chatzilla@121.98.81.38) (Ping timeout: 244 seconds)
  60. # [03:02] * Quits: JoWie (uid93456@gateway/web/irccloud.com/x-kgytllqljunsvbol) (Quit: Connection closed for inactivity)
  61. # [03:35] * Joins: tantek (~tantek@67.221.169.243)
  62. # [03:39] * Quits: gsnedders (~gsnedders@5.2.16.23) (Quit: leaving)
  63. # [03:39] * Joins: encryptd_fractal (~encryptd_@c-24-7-238-5.hsd1.mn.comcast.net)
  64. # [03:41] * Joins: gsnedders (~gsnedders@5.2.16.23)
  65. # [03:47] * Joins: KevinMarks__ (~yaaic@2607:fb90:22ca:21b1:a177:be51:80fc:7666)
  66. # [03:48] * Quits: tantek (~tantek@67.221.169.243) (Ping timeout: 265 seconds)
  67. # [03:48] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 250 seconds)
  68. # [03:57] * Joins: Goplat (~goplat@reactos/developer/Goplat)
  69. # [04:01] * Joins: KevinMarks_ (~yaaic@2607:fb90:545:3a29:285e:32d6:a6e3:83bf)
  70. # [04:04] * Quits: KevinMarks__ (~yaaic@2607:fb90:22ca:21b1:a177:be51:80fc:7666) (Ping timeout: 244 seconds)
  71. # [04:10] * Joins: jensnockert (~jensnocke@84.219.248.21)
  72. # [04:14] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 240 seconds)
  73. # [04:16] * Joins: ccardona-work (~ccardona-@184.250.101.140)
  74. # [04:18] * Quits: ccardona-work (~ccardona-@184.250.101.140) (Read error: Connection reset by peer)
  75. # [04:29] * Quits: bnicholson (~bnicholso@corp.mtv2.mozilla.com) (Quit: This computer has gone to sleep)
  76. # [04:31] * Quits: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net) (Quit: ZZZzzz…)
  77. # [04:37] * Joins: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net)
  78. # [04:48] * Joins: bnicholson (~bnicholso@c-24-130-60-241.hsd1.ca.comcast.net)
  79. # [04:49] * Quits: encryptd_fractal (~encryptd_@c-24-7-238-5.hsd1.mn.comcast.net) (Remote host closed the connection)
  80. # [04:52] * Joins: KevinMarks__ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  81. # [04:54] * Joins: KevinMarks___ (~yaaic@2607:fb90:545:3a29:736b:f391:902:bab1)
  82. # [04:55] * Quits: KevinMarks__ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
  83. # [04:56] * Joins: KevinMarks__ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  84. # [04:56] * Quits: KevinMarks_ (~yaaic@2607:fb90:545:3a29:285e:32d6:a6e3:83bf) (Ping timeout: 246 seconds)
  85. # [04:59] * Quits: KevinMarks___ (~yaaic@2607:fb90:545:3a29:736b:f391:902:bab1) (Ping timeout: 244 seconds)
  86. # [05:02] * Quits: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
  87. # [05:03] * Joins: bholley_ (~bholley@c-67-170-239-185.hsd1.ca.comcast.net)
  88. # [05:04] * Quits: bholley_ (~bholley@c-67-170-239-185.hsd1.ca.comcast.net) (Client Quit)
  89. # [05:40] * Joins: jyasskin (~jyasskin@71-222-53-196.ptld.qwest.net)
  90. # [05:50] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  91. # [05:50] * Quits: KevinMarks__ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
  92. # [05:56] * Quits: jyasskin (~jyasskin@71-222-53-196.ptld.qwest.net) (Quit: My computer has gone to sleep. ZZZzzz…)
  93. # [06:02] * Quits: jwalden (~waldo@2620:101:80fc:224:7e7a:91ff:fe25:a5a3) (Quit: ChatZilla 0.9.91-rdmsoft [XULRunner 32.0.3/20140923175406])
  94. # [06:11] * Joins: jensnockert (~jensnocke@84.219.248.21)
  95. # [06:15] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 260 seconds)
  96. # [06:26] * Joins: roc (~chatzilla@121.98.81.38)
  97. # [06:40] * Joins: KevinMarks__ (~yaaic@2607:fb90:545:3a29:6c73:2f09:ed12:d36e)
  98. # [06:41] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
  99. # [06:44] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  100. # [06:47] * Quits: KevinMarks__ (~yaaic@2607:fb90:545:3a29:6c73:2f09:ed12:d36e) (Ping timeout: 244 seconds)
  101. # [07:09] * Joins: ccardona-work (~ccardona-@c-24-130-132-120.hsd1.ca.comcast.net)
  102. # [07:11] * Quits: ccardona-work (~ccardona-@c-24-130-132-120.hsd1.ca.comcast.net) (Client Quit)
  103. # [07:19] * Joins: ohaibbq (~ohaibbq@cm-bridge.stanford.edu)
  104. # [07:32] * Quits: psy_ (~psy@43.224.156.125) (Read error: Connection reset by peer)
  105. # [08:02] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
  106. # [08:03] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  107. # [08:03] * Joins: psy_ (~psy@43.224.156.125)
  108. # [08:08] <annevk> TabAtkins: same line
  109. # [08:08] <annevk> TabAtkins: also, I prefer <li><p>Text to be on one line if <li> only contains a single <p>
  110. # [08:09] <annevk> jamesr___: yeah, seems to be about checking invalid bytes
  111. # [08:11] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
  112. # [08:12] * Joins: jensnockert (~jensnocke@84.219.248.21)
  113. # [08:15] * Joins: ambv (~ambv@199.201.64.3)
  114. # [08:16] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 260 seconds)
  115. # [08:21] * Quits: ohaibbq (~ohaibbq@cm-bridge.stanford.edu) (Quit: Leaving...)
  116. # [08:24] * Joins: ohaibbq (~ohaibbq@cm-bridge.stanford.edu)
  117. # [08:26] * Quits: bin_005 (~ctlM@80.83.239.96) (Ping timeout: 246 seconds)
  118. # [08:28] * Joins: bin_005 (~ctlM@80.83.239.96)
  119. # [08:28] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Remote host closed the connection)
  120. # [08:32] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-ajenjybboyfsmhud)
  121. # [08:33] * Joins: ^esc_ (~esc-ape@77.119.129.69.wireless.dyn.drei.com)
  122. # [08:33] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  123. # [08:35] * Quits: ^esc (~esc-ape@178.165.129.187.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
  124. # [08:36] * Joins: KevinMarks__ (~yaaic@2607:fb90:546:7746:d943:d28f:5169:ac34)
  125. # [08:38] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
  126. # [08:47] * Joins: Ms2ger (~Ms2ger@ptr-2hj4tblr9i08ib6y06f92ifm1.ip6.access.telenet.be)
  127. # [09:00] * Quits: aretecode (~aretecode@69.4.235.219) (Read error: Connection reset by peer)
  128. # [09:06] * Quits: ambv (~ambv@199.201.64.3) (Quit: sys.exit(0) # computer went to sleep)
  129. # [09:12] * Quits: timoxley (~timoxley@128.199.65.199) (Ping timeout: 250 seconds)
  130. # [09:13] * Joins: timoxley (~timoxley@128.199.65.199)
  131. # [09:26] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  132. # [09:28] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
  133. # [09:29] * Quits: KevinMarks__ (~yaaic@2607:fb90:546:7746:d943:d28f:5169:ac34) (Ping timeout: 246 seconds)
  134. # [09:45] * Joins: KevinMarks__ (~yaaic@2607:fb90:540:f811:9118:ea62:ac2:121)
  135. # [09:45] * Joins: KevinMarks___ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  136. # [09:46] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
  137. # [09:49] * Quits: KevinMarks__ (~yaaic@2607:fb90:540:f811:9118:ea62:ac2:121) (Ping timeout: 244 seconds)
  138. # [09:52] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  139. # [09:54] * Quits: KevinMarks___ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 245 seconds)
  140. # [09:54] <nox> Domenic: UTF-8 is compatible with US-ASCII.
  141. # [09:54] <nox> Domenic: Not all bytes are US-ASCII code points.
  142. # [09:54] <nox> So no, decoding ASCII into UTF-8 isnt memcpy.
  143. # [10:02] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  144. # [10:10] <Ms2ger> What
  145. # [10:10] <Ms2ger> If it's actually ASCII, there's no bytes with the high bit set, so it is a memcpy
  146. # [10:11] <nox> Ms2ger: In the context of rust-encoding, you don't know if input is actually in said encoding.
  147. # [10:11] <nox> Ms2ger: That's why the UTF-8 decoder isn't a noop either.
  148. # [10:13] * Joins: jensnockert (~jensnocke@84.219.248.21)
  149. # [10:15] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  150. # [10:15] * Joins: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net)
  151. # [10:15] * Joins: Maurice` (copyman@unaffiliated/maurice)
  152. # [10:17] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Remote host closed the connection)
  153. # [10:17] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  154. # [10:17] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Read error: Connection reset by peer)
  155. # [10:17] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 252 seconds)
  156. # [10:18] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  157. # [10:19] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Remote host closed the connection)
  158. # [10:19] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  159. # [10:31] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Remote host closed the connection)
  160. # [10:44] * Quits: psy_ (~psy@43.224.156.125) (Ping timeout: 250 seconds)
  161. # [10:45] * Joins: dylanlindgren (~kartstar@220-244-118-167.tpgi.com.au)
  162. # [10:52] * Quits: bin_005 (~ctlM@80.83.239.96) (Remote host closed the connection)
  163. # [10:54] * Joins: psy_ (~psy@43.224.156.125)
  164. # [11:48] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
  165. # [11:50] * Joins: JoWie (uid93456@gateway/web/irccloud.com/x-avrcqmjsyjsxwsrr)
  166. # [11:56] * Quits: ohaibbq (~ohaibbq@cm-bridge.stanford.edu) (Quit: Leaving...)
  167. # [12:14] * Joins: jensnockert (~jensnocke@84.219.248.21)
  168. # [12:18] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 246 seconds)
  169. # [12:32] * Joins: xiinotulp (~plutoniix@node-1ckg.pool-101-108.dynamic.totbb.net)
  170. # [12:32] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  171. # [12:35] * Quits: plutoniix (~plutoniix@node-o0v.pool-101-108.dynamic.totbb.net) (Ping timeout: 260 seconds)
  172. # [12:35] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
  173. # [12:37] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Ping timeout: 255 seconds)
  174. # [12:51] * Joins: satazor (~satazor@a213-22-0-191.cpe.netcabo.pt)
  175. # [12:56] * Quits: satazor (~satazor@a213-22-0-191.cpe.netcabo.pt) (Ping timeout: 244 seconds)
  176. # [12:57] * Joins: satazor (~satazor@114.248.108.93.rev.vodafone.pt)
  177. # [13:12] * xiinotulp is now known as plutoniix
  178. # [13:21] * Joins: bin_005 (~ctlM@80.83.239.62)
  179. # [13:34] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  180. # [13:36] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  181. # [13:38] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Ping timeout: 246 seconds)
  182. # [13:40] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 240 seconds)
  183. # [14:13] * Quits: satazor (~satazor@114.248.108.93.rev.vodafone.pt) (Remote host closed the connection)
  184. # [14:15] * Joins: jensnockert (~jensnocke@84.219.248.21)
  185. # [14:19] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 264 seconds)
  186. # [14:21] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-ajenjybboyfsmhud) (Quit: Connection closed for inactivity)
  187. # [14:27] * Quits: lilmonkey` (~a@pdpc/supporter/professional/riven) (Ping timeout: 244 seconds)
  188. # [14:33] * Joins: howdoi (uid224@gateway/web/irccloud.com/x-jwrrhcsspkqsrbkl)
  189. # [14:38] * Joins: lilmonkey (~a@5ED090B0.cm-7-1c.dynamic.ziggo.nl)
  190. # [14:38] * Quits: lilmonkey (~a@5ED090B0.cm-7-1c.dynamic.ziggo.nl) (Changing host)
  191. # [14:38] * Joins: lilmonkey (~a@pdpc/supporter/professional/riven)
  192. # [14:45] * Joins: smaug____ (~chatzilla@a91-154-43-105.elisa-laajakaista.fi)
  193. # [14:48] * Joins: satazor (~satazor@a213-22-0-191.cpe.netcabo.pt)
  194. # [14:50] * Quits: Ms2ger (~Ms2ger@ptr-2hj4tblr9i08ib6y06f92ifm1.ip6.access.telenet.be) (Ping timeout: 252 seconds)
  195. # [14:52] * Quits: satazor (~satazor@a213-22-0-191.cpe.netcabo.pt) (Ping timeout: 250 seconds)
  196. # [14:54] * Joins: josemanuel (~josemanue@31.173.35.37.dynamic.jazztel.es)
  197. # [14:55] * Quits: josemanuel (~josemanue@31.173.35.37.dynamic.jazztel.es) (Client Quit)
  198. # [15:09] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Excess Flood)
  199. # [15:10] * Joins: wk96 (wk96@broadband-95-84-141-117.nationalcablenetworks.ru)
  200. # [15:11] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
  201. # [15:30] * Quits: bin_005 (~ctlM@80.83.239.62) (Ping timeout: 246 seconds)
  202. # [15:47] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-tzadmwfatakgwftb)
  203. # [16:02] * Joins: ttepasse (~ttepasse@ip-178-200-61-79.hsi07.unitymediagroup.de)
  204. # [16:06] * Joins: Joseph_Silber (~JosephSil@ool-43530e48.dyn.optonline.net)
  205. # [16:06] * Joins: wk96_ (wk96@broadband-95-84-141-117.nationalcablenetworks.ru)
  206. # [16:07] * Joins: ato_ (~sid11@2620:101:8016:74::4:b)
  207. # [16:08] * Joins: abucur_ (sid19072@gateway/web/irccloud.com/x-aiwmsjtupphphuxn)
  208. # [16:08] * Joins: yhirano__ (uid40668@gateway/web/irccloud.com/x-iduqqxwswdqovnnr)
  209. # [16:08] * Joins: remysharp_ (sid4345@gateway/web/irccloud.com/x-csbranzvnekqrelr)
  210. # [16:09] * Joins: igrigorik_ (sid16869@gateway/web/irccloud.com/x-sdxnhphvjndeusdu)
  211. # [16:09] * Joins: JakeA_ (sid3836@gateway/web/irccloud.com/x-tqcdmgimusrsdnik)
  212. # [16:10] * Joins: falken_ (uid20729@gateway/web/irccloud.com/x-kfzqjlffvlmimhfh)
  213. # [16:10] * Joins: schuki (~quassel@vali.lamercake.org)
  214. # [16:10] * Joins: chrisdickinson_ (~chrisdick@192.241.193.154)
  215. # [16:10] * Joins: fredy_ (~fredy@snf-535807.vm.okeanos.grnet.gr)
  216. # [16:11] * schuki is now known as Guest59150
  217. # [16:11] * Joins: wilhelm (~wilhelm@178.255.149.100)
  218. # [16:11] * Quits: jamesr___ (sid10481@gateway/web/irccloud.com/x-dkxkyswtjuqhndhc) (Ping timeout: 240 seconds)
  219. # [16:11] * Quits: Garbee (uid21171@gateway/web/irccloud.com/x-anxwpkfxnunwxiny) (Ping timeout: 240 seconds)
  220. # [16:11] * Quits: wanderview (~sid277@2620:101:8016:74::4:115) (Ping timeout: 240 seconds)
  221. # [16:11] * Quits: JakeA (sid3836@gateway/web/irccloud.com/x-wmwytwhbfedglrqk) (Ping timeout: 240 seconds)
  222. # [16:11] * Quits: daleharvey (sid513@gateway/web/irccloud.com/x-jfsyxsytnrabkrip) (Ping timeout: 240 seconds)
  223. # [16:11] * Quits: falken (uid20729@gateway/web/irccloud.com/x-ncvrvbmbqnewcgvq) (Ping timeout: 240 seconds)
  224. # [16:11] * Quits: igrigorik (sid16869@gateway/web/irccloud.com/x-ugahwjykeqylllrr) (Ping timeout: 240 seconds)
  225. # [16:11] * Quits: remysharp (sid4345@gateway/web/irccloud.com/x-emhyugzmusmbgvtr) (Ping timeout: 240 seconds)
  226. # [16:11] * Quits: chrisdickinson (~chrisdick@192.241.193.154) (Ping timeout: 240 seconds)
  227. # [16:11] * Quits: Gege (~gege2@future.deferred.io) (Ping timeout: 240 seconds)
  228. # [16:11] * Quits: abucur (sid19072@gateway/web/irccloud.com/x-loglqnncxqqvnhfo) (Ping timeout: 240 seconds)
  229. # [16:11] * Quits: yhirano_ (uid40668@gateway/web/irccloud.com/x-ohlnapalsdnkoquz) (Ping timeout: 240 seconds)
  230. # [16:11] * Quits: ato (~sid11@2620:101:8016:74::4:b) (Ping timeout: 240 seconds)
  231. # [16:11] * Quits: globbot (~logbot@lump.glob.com.au) (Ping timeout: 240 seconds)
  232. # [16:11] * Quits: wk96 (wk96@broadband-95-84-141-117.nationalcablenetworks.ru) (Ping timeout: 240 seconds)
  233. # [16:11] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Ping timeout: 240 seconds)
  234. # [16:11] * Quits: Joseph__Silber (~JosephSil@ool-43530e48.dyn.optonline.net) (Ping timeout: 240 seconds)
  235. # [16:11] * Quits: schuki_ (~quassel@vali.lamercake.org) (Ping timeout: 240 seconds)
  236. # [16:11] * Quits: wilhelm_ (~wilhelm@178.255.149.100) (Ping timeout: 240 seconds)
  237. # [16:11] * ato_ is now known as ato
  238. # [16:11] * Joins: globbot (~logbot@lump.glob.com.au)
  239. # [16:11] * falken_ is now known as falken
  240. # [16:11] * igrigorik_ is now known as igrigorik
  241. # [16:11] * Joins: Gege (gege@2001:470:1f1b:ed::2)
  242. # [16:11] * Quits: Gege (gege@2001:470:1f1b:ed::2) (Read error: Connection reset by peer)
  243. # [16:11] * abucur_ is now known as abucur
  244. # [16:12] * JakeA_ is now known as JakeA
  245. # [16:12] * yhirano__ is now known as yhirano_
  246. # [16:12] * remysharp_ is now known as remysharp
  247. # [16:15] * Joins: jensnockert (~jensnocke@84.219.248.21)
  248. # [16:16] * Joins: igoroliveira (uid20755@gateway/web/irccloud.com/x-btmbwvegouqoemfy)
  249. # [16:20] * Joins: jamesr___ (sid10481@gateway/web/irccloud.com/x-przrfzdlpdcpsike)
  250. # [16:20] * Joins: wanderview (~sid277@2620:101:8016:74::4:115)
  251. # [16:20] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 250 seconds)
  252. # [16:22] * Joins: Garbee (uid21171@gateway/web/irccloud.com/x-xoiqbvwnphvsatlb)
  253. # [16:24] * Joins: daleharvey (sid513@gateway/web/irccloud.com/x-ciahiyocurgjxciv)
  254. # [16:50] * fredy_ is now known as fredy
  255. # [16:50] * fredy is now known as Guest78825
  256. # [17:00] * Quits: ^esc_ (~esc-ape@77.119.129.69.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
  257. # [17:00] * Joins: ^esc (~esc-ape@77.119.129.69.wireless.dyn.drei.com)
  258. # [17:15] * Quits: sarri (~sari@unaffiliated/sarri) (Ping timeout: 246 seconds)
  259. # [17:39] * Quits: smaug____ (~chatzilla@a91-154-43-105.elisa-laajakaista.fi) (Ping timeout: 272 seconds)
  260. # [17:43] * Quits: hober (~ted@unaffiliated/hober) (Read error: Connection reset by peer)
  261. # [17:43] * Joins: hober (~ted@unaffiliated/hober)
  262. # [17:45] * Joins: jyasskin (~jyasskin@71-222-53-196.ptld.qwest.net)
  263. # [17:47] * Joins: Goplat (~goplat@reactos/developer/Goplat)
  264. # [18:04] * Quits: dylanlindgren (~kartstar@220-244-118-167.tpgi.com.au) (Quit: Textual IRC Client: www.textualapp.com)
  265. # [18:17] * Joins: jensnockert (~jensnocke@84.219.248.21)
  266. # [18:21] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 256 seconds)
  267. # [18:23] * Joins: dbaron (~dbaron@195-132-9-242.rev.numericable.fr)
  268. # [18:27] * Quits: jyasskin (~jyasskin@71-222-53-196.ptld.qwest.net) (Quit: My computer has gone to sleep. ZZZzzz…)
  269. # [18:45] * Joins: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net)
  270. # [18:52] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
  271. # [18:52] * Quits: igoroliveira (uid20755@gateway/web/irccloud.com/x-btmbwvegouqoemfy) (Quit: Connection closed for inactivity)
  272. # [19:00] * Joins: jyasskin (~jyasskin@71-222-53-196.ptld.qwest.net)
  273. # [19:00] * Joins: sarri (~sari@unaffiliated/sarri)
  274. # [19:14] * Quits: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net) (Quit: eric_carlson)
  275. # [19:18] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  276. # [19:27] * Quits: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net) (Quit: ZZZzzz…)
  277. # [19:32] * Joins: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net)
  278. # [19:33] * Quits: psy_ (~psy@43.224.156.125) (Ping timeout: 260 seconds)
  279. # [19:36] * Quits: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net) (Client Quit)
  280. # [19:43] * Quits: dbaron (~dbaron@195-132-9-242.rev.numericable.fr) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  281. # [19:46] * Joins: jyasskin_ (~jyasskin@174-25-41-149.ptld.qwest.net)
  282. # [19:46] * Quits: jyasskin (~jyasskin@71-222-53-196.ptld.qwest.net) (Ping timeout: 260 seconds)
  283. # [19:56] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Read error: Connection reset by peer)
  284. # [19:56] * Quits: hswolff (~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Quit: ZNC - http://znc.in)
  285. # [19:56] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  286. # [19:57] * Joins: ccardona-work (~ccardona-@c-24-130-132-120.hsd1.ca.comcast.net)
  287. # [20:08] * Joins: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net)
  288. # [20:12] * Joins: wk96 (wk96@broadband-95-84-141-117.nationalcablenetworks.ru)
  289. # [20:12] * Quits: wk96_ (wk96@broadband-95-84-141-117.nationalcablenetworks.ru) (Quit: Leaving)
  290. # [20:13] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
  291. # [20:16] * Joins: hswolff (~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
  292. # [20:17] * Joins: jensnockert (~jensnocke@84.219.248.21)
  293. # [20:20] * Quits: ccardona-work (~ccardona-@c-24-130-132-120.hsd1.ca.comcast.net) (Quit: ccardona-work)
  294. # [20:21] * Joins: bin_005 (~ctlM@80.83.238.93)
  295. # [20:22] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 255 seconds)
  296. # [20:29] * Joins: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net)
  297. # [20:36] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  298. # [20:41] * Joins: encryptd_fractal (~encryptd_@2601:449:8100:cad9:8b2:9b48:2128:d9c7)
  299. # [20:45] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
  300. # [20:51] * Joins: KevinMarks__ (~yaaic@2607:fb90:2290:101f:47b6:a5a8:d4bc:1f7)
  301. # [20:52] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 244 seconds)
  302. # [20:54] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  303. # [20:56] * Quits: KevinMarks__ (~yaaic@2607:fb90:2290:101f:47b6:a5a8:d4bc:1f7) (Ping timeout: 246 seconds)
  304. # [20:59] * Quits: wk96 (wk96@broadband-95-84-141-117.nationalcablenetworks.ru) (Quit: Leaving)
  305. # [21:00] * Joins: wk96 (wk96@broadband-95-84-141-117.nationalcablenetworks.ru)
  306. # [21:01] * Quits: encryptd_fractal (~encryptd_@2601:449:8100:cad9:8b2:9b48:2128:d9c7) (Remote host closed the connection)
  307. # [21:05] * Quits: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net) (Ping timeout: 246 seconds)
  308. # [21:06] * Joins: psy_ (~psy@43.224.156.111)
  309. # [21:08] * Quits: wk96 (wk96@broadband-95-84-141-117.nationalcablenetworks.ru) (Quit: Leaving)
  310. # [21:08] * Joins: wk96 (wk96@broadband-95-84-141-117.nationalcablenetworks.ru)
  311. # [21:09] * Quits: wk96 (wk96@broadband-95-84-141-117.nationalcablenetworks.ru) (Client Quit)
  312. # [21:12] * Joins: isbotnetcool (~isbotnetc@c-67-169-78-182.hsd1.ca.comcast.net)
  313. # [21:14] * Joins: jraisanen (~textual@x5ce0fe7f.dyn.telefonica.de)
  314. # [21:14] * Quits: jyasskin_ (~jyasskin@174-25-41-149.ptld.qwest.net) (Quit: My computer has gone to sleep. ZZZzzz…)
  315. # [21:19] * Joins: seventh (seventh@199.48.241.61)
  316. # [21:21] * Joins: slartsa (~lari@176-93-150-155.bb.dnainternet.fi)
  317. # [21:24] * Quits: isbotnetcool (~isbotnetc@c-67-169-78-182.hsd1.ca.comcast.net) (Quit: isbotnetcool)
  318. # [21:27] * Quits: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Ping timeout: 256 seconds)
  319. # [21:31] * Quits: bholley (~bholley@c-67-170-239-185.hsd1.ca.comcast.net) (Quit: ZZZzzz…)
  320. # [21:32] * Joins: encryptd_fractal (~encryptd_@2601:449:8100:cad9:c154:23d1:e41c:5351)
  321. # [21:33] * Joins: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
  322. # [21:37] * Quits: encryptd_fractal (~encryptd_@2601:449:8100:cad9:c154:23d1:e41c:5351) (Ping timeout: 256 seconds)
  323. # [21:38] * Joins: smaug____ (~chatzilla@a91-154-43-105.elisa-laajakaista.fi)
  324. # [22:18] * Joins: jensnockert (~jensnocke@84.219.248.21)
  325. # [22:23] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 246 seconds)
  326. # [22:34] * Joins: encryptd_fractal (~encryptd_@2601:449:8100:cad9:c154:23d1:e41c:5351)
  327. # [22:38] * Quits: encryptd_fractal (~encryptd_@2601:449:8100:cad9:c154:23d1:e41c:5351) (Ping timeout: 246 seconds)
  328. # [22:42] * Joins: satazor_ (~satazor@av-217-129-134-240.netvisao.pt)
  329. # [22:52] * Joins: satazor (~satazor@bl6-108-46.dsl.telepac.pt)
  330. # [22:53] * Quits: satazor_ (~satazor@av-217-129-134-240.netvisao.pt) (Ping timeout: 250 seconds)
  331. # [23:02] * Joins: satazor_ (~satazor@av-217-129-134-240.netvisao.pt)
  332. # [23:03] * Quits: bin_005 (~ctlM@80.83.238.93) (Ping timeout: 255 seconds)
  333. # [23:04] * Joins: bin_005 (~ctlM@80.83.238.75)
  334. # [23:05] * Quits: satazor (~satazor@bl6-108-46.dsl.telepac.pt) (Ping timeout: 245 seconds)
  335. # [23:10] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  336. # [23:46] * Joins: satazor (~satazor@114.248.108.93.rev.vodafone.pt)
  337. # [23:48] * Quits: satazor_ (~satazor@av-217-129-134-240.netvisao.pt) (Ping timeout: 246 seconds)
  338. # [23:51] * Quits: slartsa (~lari@176-93-150-155.bb.dnainternet.fi) (Ping timeout: 250 seconds)
  339. # [23:52] * Joins: ambv (~ambv@199.201.64.3)
  340. # [23:53] * Joins: ttepasse_ (~ttepasse@ip-178-200-61-79.hsi07.unitymediagroup.de)
  341. # [23:56] * Quits: ttepasse (~ttepasse@ip-178-200-61-79.hsi07.unitymediagroup.de) (Ping timeout: 245 seconds)
  342. # [23:56] * Quits: satazor (~satazor@114.248.108.93.rev.vodafone.pt) (Ping timeout: 260 seconds)
  343. # Session Close: Sun Aug 23 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