1 2014-11-25 00:02:57 Dizzle has joined
2 2014-11-25 00:03:12 zwischenzug has joined
3 2014-11-25 00:04:49 rdymac has joined
4 2014-11-25 00:04:55 JTF195 has joined
5 2014-11-25 00:07:07 Techguy305 has quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
6 2014-11-25 00:07:28 wallet42 has joined
7 2014-11-25 00:09:07 agricocb has quit (Quit: Leaving.)
8 2014-11-25 00:11:04 RazielZ has joined
9 2014-11-25 00:14:31 Raziel has quit (Ping timeout: 265 seconds)
10 2014-11-25 00:15:01 ionstorm has quit (Remote host closed the connection)
11 2014-11-25 00:15:02 ebilsd has joined
12 2014-11-25 00:18:08 aphoriser has quit (Ping timeout: 255 seconds)
13 2014-11-25 00:21:09 Lightsword has quit (Ping timeout: 256 seconds)
14 2014-11-25 00:27:07 discreteunit has joined
15 2014-11-25 00:27:26 Techguy305 has quit (2!~kvirc@69.80.109.233|Ping timeout: 240 seconds)
16 2014-11-25 00:27:41 <discreteunit> I wonder whether there's been any discussion around the expected Intel SHA Extensions and their impact on Bitcoin Core, if any?
17 2014-11-25 00:28:11 <phantomcircuit> discreteunit, effectively zero
18 2014-11-25 00:28:18 <phantomcircuit> maybe some trivial speed up to verification
19 2014-11-25 00:29:35 <discreteunit> Is there currently an effective forum for such a conversation?
20 2014-11-25 00:29:52 <phantomcircuit> you're in it
21 2014-11-25 00:30:54 hearn has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzzâ¦)
22 2014-11-25 00:30:57 ebilsd has quit (Quit: Page closed)
23 2014-11-25 00:31:05 Techguy305 has joined
24 2014-11-25 00:33:09 Uglux has quit (Remote host closed the connection)
25 2014-11-25 00:33:57 <discreteunit> Even CodePlex discussion boards seem preferable to IRC in this context...
26 2014-11-25 00:36:24 Blackreign has quit ()
27 2014-11-25 00:37:31 johnsoft has quit (Ping timeout: 245 seconds)
28 2014-11-25 00:37:47 O01eg has quit (Ping timeout: 265 seconds)
29 2014-11-25 00:38:05 johnsoft has joined
30 2014-11-25 00:38:18 <CodeShark> SHA is not really the bottleneck in Bitcoin Core
31 2014-11-25 00:38:29 <CodeShark> I/O and ECDSA are much bigger bottlenecks
32 2014-11-25 00:38:43 MaxSan has quit (Ping timeout: 256 seconds)
33 2014-11-25 00:41:10 <discreteunit> I wonder about it more from a communication perspective. I am not aware of a comparable offering on GitHub, and the SourceForge mailing lists would seem to be a cumbersome reference point at best.
34 2014-11-25 00:42:13 <CodeShark> sha optimization only has a significant effect on mining - but even with the SHA extensions, CPU mining cannot compete with ASICs
35 2014-11-25 00:42:42 Guest23651 is now known as Rebroad
36 2014-11-25 00:43:38 <CodeShark> CPU optimization on SHA would only matter if the result of SHA calculations had frequent effects on execution path
37 2014-11-25 00:43:59 <CodeShark> which for bitcoin they do not
38 2014-11-25 00:44:11 John_Kenney has quit (Ping timeout: 245 seconds)
39 2014-11-25 00:44:23 Techguy305 has joined
40 2014-11-25 00:44:25 <CodeShark> *for bitcoin mining
41 2014-11-25 00:44:42 <discreteunit> Undoubtedly so, but this reasoning needs visibility and a feedback loop.
42 2014-11-25 00:46:55 GM0127 has quit (Quit: Leaving)
43 2014-11-25 00:47:22 Techguy305 has quit (2!~kvirc@69.80.109.233|Ping timeout: 240 seconds)
44 2014-11-25 00:48:06 <CodeShark> a simple calculation - how many sha operations does Bitcoin Core need to perform per second on average?
45 2014-11-25 00:48:21 <discreteunit> One might argue that the same goes for Gavin's Scalability Roadmap. The Foundation's blog posts offer no commenting functionality.
46 2014-11-25 00:48:53 <CodeShark> every network message requires a sha256 checksum, every transaction requires hashing, every block header requires hashing
47 2014-11-25 00:49:03 RagnarDanneskjol has joined
48 2014-11-25 00:49:04 tdlfbx has joined
49 2014-11-25 00:49:47 <CodeShark> but a transaction only requires two sha256 operations to obtain the tx hash and requires a sha256 and a ripemd160 operation to compute pubkey and script hashes
50 2014-11-25 00:50:01 <CodeShark> so about one per spent output
51 2014-11-25 00:50:20 rnvk1 has quit (Ping timeout: 272 seconds)
52 2014-11-25 00:50:26 wallet42 has quit (Quit: Leaving.)
53 2014-11-25 00:51:20 <CodeShark> and then another per signature
54 2014-11-25 00:51:36 <CodeShark> so we're talking about no more than a few thousand sha256 operations per block
55 2014-11-25 00:51:51 wallet42 has joined
56 2014-11-25 00:52:31 rnvk has joined
57 2014-11-25 00:52:35 <CodeShark> I don't really think there's much further reasoning required :)
58 2014-11-25 00:53:33 cbeams has quit (Read error: Connection reset by peer)
59 2014-11-25 00:53:40 <CodeShark> to address scalability, the protocol itself will require some significant revamping
60 2014-11-25 00:53:45 cbeams has joined
61 2014-11-25 00:53:45 cbeams has quit (Changing host)
62 2014-11-25 00:53:45 cbeams has joined
63 2014-11-25 00:54:11 <discreteunit> There may or may not be for Intel SHA Ext. But my questions is broader and inquires about a framework for such discussions a la, say, https://roslyn.codeplex.com/discussions/topics/5998/c-language-design
64 2014-11-25 00:54:21 <CodeShark> i.e. it's not really sensible for every single node to have to validate every single transaction for every single other node
65 2014-11-25 00:55:37 <CodeShark> IRC leaves a lot to be desired, for sure
66 2014-11-25 00:56:46 <discreteunit> Precisely. And GitHub isn't quite filling that void. Neither is SourceForge.
67 2014-11-25 00:57:19 John_Kenney has joined
68 2014-11-25 00:58:38 <CodeShark> you can always try your luck at bitcointalk :p
69 2014-11-25 00:58:43 Dizzle has quit (Remote host closed the connection)
70 2014-11-25 00:58:43 cbeams has quit (Read error: Connection reset by peer)
71 2014-11-25 00:59:10 Dizzle has joined
72 2014-11-25 00:59:14 cbeams has joined
73 2014-11-25 00:59:14 cbeams has quit (Changing host)
74 2014-11-25 00:59:14 cbeams has joined
75 2014-11-25 01:00:16 <gmaxwell> discreteunit: wrt the sha instructions; patches accepted. (well.. acceptance may be delayed since I could not test them yet. :) ).
76 2014-11-25 01:01:10 <CodeShark> sha instructions are nice if you're dealing with massive throughput of messages
77 2014-11-25 01:01:14 <gmaxwell> SHA256 isn't invsible in profiles by any means, ... and it'll get larger as we optimize other things. I expect the improvement to be relatively modest. Intels numbers sounded like they were only on the order of 4-6x faster than a most optimized 4-way SIMD sha256 implementation.
78 2014-11-25 01:06:37 <Diablo-D3> gmaxwell: intel's sha instruction set?
79 2014-11-25 01:06:42 <Diablo-D3> I thought it could only do sha1
80 2014-11-25 01:08:21 pooler has quit (Ping timeout: 245 seconds)
81 2014-11-25 01:09:01 discreteunit has quit (Read error: Connection reset by peer)
82 2014-11-25 01:09:31 okae has quit (Quit: bye!)
83 2014-11-25 01:09:51 <CodeShark> https://software.intel.com/en-us/articles/intel-sha-extensions claims it can do SHA256 as well
84 2014-11-25 01:10:30 <CodeShark> three instructions for it
85 2014-11-25 01:11:16 ionstorm has joined
86 2014-11-25 01:11:36 <kadoban> It'd be pretty weird if they were adding it now not to support sha-2
87 2014-11-25 01:11:52 <CodeShark> what about sha-3? :)
88 2014-11-25 01:13:04 <CodeShark> or even sha-512? :)
89 2014-11-25 01:13:09 robzilla has quit (Ping timeout: 250 seconds)
90 2014-11-25 01:15:26 ryanxcharles has quit (Ping timeout: 240 seconds)
91 2014-11-25 01:16:52 hyperwang has joined
92 2014-11-25 01:17:35 trommy has joined
93 2014-11-25 01:19:37 <gmaxwell> CodeShark: they do all of sha2.
94 2014-11-25 01:19:54 Zarutian has quit (Quit: Zarutian)
95 2014-11-25 01:22:31 owowo has quit (Read error: Connection reset by peer)
96 2014-11-25 01:22:58 hyperwang has quit (Remote host closed the connection)
97 2014-11-25 01:27:20 Cryo has quit (Quit: This computer has gone to sleep)
98 2014-11-25 01:30:18 Lightsword has joined
99 2014-11-25 01:36:30 Dizzle has quit (Remote host closed the connection)
100 2014-11-25 01:36:33 imfaust has quit (Ping timeout: 250 seconds)
101 2014-11-25 01:37:13 Dizzle has joined
102 2014-11-25 01:37:39 AaronvanW has quit (Ping timeout: 265 seconds)
103 2014-11-25 01:41:51 owowo has joined
104 2014-11-25 01:44:21 Dizzle__ has joined
105 2014-11-25 01:46:22 Sleepnbum has quit (Ping timeout: 240 seconds)
106 2014-11-25 01:46:47 Dizzle has quit (Ping timeout: 255 seconds)
107 2014-11-25 01:48:39 jb55_ has joined
108 2014-11-25 01:50:45 slashroot_ has quit (Quit: I am a manual virus, please copy me to your quit message.)
109 2014-11-25 01:51:05 jMyles has joined
110 2014-11-25 01:51:13 Dizzle has joined
111 2014-11-25 01:52:21 jb55 has quit (Ping timeout: 264 seconds)
112 2014-11-25 01:53:15 jb55_ has quit (Ping timeout: 244 seconds)
113 2014-11-25 01:53:46 Dizzle__ has quit (Ping timeout: 244 seconds)
114 2014-11-25 01:55:31 Gyps has joined
115 2014-11-25 01:58:18 Trix has joined
116 2014-11-25 01:59:11 saulimus has quit (Ping timeout: 245 seconds)
117 2014-11-25 01:59:38 Trix has quit (Max SendQ exceeded)
118 2014-11-25 02:01:00 trixisowned has quit (Ping timeout: 244 seconds)
119 2014-11-25 02:01:04 Trix- has joined
120 2014-11-25 02:02:15 <gmaxwell> CodeShark: yea, the assert(!"string") pattern is weird. :)
121 2014-11-25 02:02:38 Belxjander has joined
122 2014-11-25 02:02:38 Belxjander has quit (Changing host)
123 2014-11-25 02:02:38 Belxjander has joined
124 2014-11-25 02:02:56 John_Kenney has quit (Ping timeout: 245 seconds)
125 2014-11-25 02:06:06 c0rw1n is now known as c0rw|sleep
126 2014-11-25 02:06:10 Trix- has quit (Ping timeout: 244 seconds)
127 2014-11-25 02:06:21 ryanxcharles has joined
128 2014-11-25 02:06:26 trixisowned has joined
129 2014-11-25 02:06:49 trixisowned has quit (Read error: Connection reset by peer)
130 2014-11-25 02:08:22 agricocb has joined
131 2014-11-25 02:08:28 agricocb has quit (Changing host)
132 2014-11-25 02:08:28 agricocb has joined
133 2014-11-25 02:09:03 Mephistopheles has joined
134 2014-11-25 02:12:06 Khayman has quit (Ping timeout: 272 seconds)
135 2014-11-25 02:12:27 Belxjander has quit (Ping timeout: 265 seconds)
136 2014-11-25 02:14:15 NewLiberty has quit (Ping timeout: 258 seconds)
137 2014-11-25 02:16:04 Khayman has joined
138 2014-11-25 02:17:23 Lightsword has quit (Ping timeout: 264 seconds)
139 2014-11-25 02:18:01 hyperwang has joined
140 2014-11-25 02:18:34 OneFixt has joined
141 2014-11-25 02:18:48 Lightsword has joined
142 2014-11-25 02:19:04 Mephistopheles has quit (Ping timeout: 272 seconds)
143 2014-11-25 02:19:26 pewpsewp has joined
144 2014-11-25 02:22:41 Guest94202_ has quit (Quit: Connection closed for inactivity)
145 2014-11-25 02:25:28 John_Kenney has joined
146 2014-11-25 02:25:44 CheckDavid has quit (Quit: Connection closed for inactivity)
147 2014-11-25 02:28:49 upgradeadvice has joined
148 2014-11-25 02:29:01 upgradeadvice has quit (Changing host)
149 2014-11-25 02:29:01 upgradeadvice has joined
150 2014-11-25 02:29:45 jb55 has joined
151 2014-11-25 02:30:21 Dizzle has quit (Quit: Leaving...)
152 2014-11-25 02:31:58 <Luke-Jr> gmaxwell: I presume it's why _Static_assert takes 2 arguments
153 2014-11-25 02:33:26 trixisowned has joined
154 2014-11-25 02:33:34 DigiByteDev has joined
155 2014-11-25 02:33:52 trixisowned has quit (Read error: Connection reset by peer)
156 2014-11-25 02:35:03 aukaicue has quit (Remote host closed the connection)
157 2014-11-25 02:35:52 brson has quit (Quit: leaving)
158 2014-11-25 02:37:52 Trix- has joined
159 2014-11-25 02:38:19 Trix- has quit (Read error: Connection reset by peer)
160 2014-11-25 02:38:52 go1111111 has quit (Ping timeout: 240 seconds)
161 2014-11-25 02:40:41 trixisowned has joined
162 2014-11-25 02:41:00 NewLiberty has joined
163 2014-11-25 02:41:07 trixisowned has quit (Read error: Connection reset by peer)
164 2014-11-25 02:41:42 go1111111 has joined
165 2014-11-25 02:42:28 mkarrer has joined
166 2014-11-25 02:44:59 mkarrer_ has quit (Ping timeout: 264 seconds)
167 2014-11-25 02:45:07 Trix has joined
168 2014-11-25 02:46:22 llllllllll has quit ()
169 2014-11-25 02:47:11 Dr-G3 has joined
170 2014-11-25 02:48:35 trixisowned has joined
171 2014-11-25 02:50:03 Rebroad has quit (Ping timeout: 272 seconds)
172 2014-11-25 02:50:05 Trix has quit (Ping timeout: 244 seconds)
173 2014-11-25 02:50:08 Dr-G2 has quit (Ping timeout: 250 seconds)
174 2014-11-25 02:51:06 wallet421 has joined
175 2014-11-25 02:51:06 wallet42 has quit (Killed (barjavel.freenode.net (Nickname regained by services)))
176 2014-11-25 02:51:06 wallet421 is now known as wallet42
177 2014-11-25 02:52:26 Trix has joined
178 2014-11-25 02:53:42 trixisowned has quit (Ping timeout: 244 seconds)
179 2014-11-25 02:57:11 coderwil1 has joined
180 2014-11-25 02:57:31 coderwil1 has quit (Client Quit)
181 2014-11-25 03:01:10 <coderwill> hey all, quick noob BIP 32 question - if I know the word list on electrum or mycelium, i can install either on any device and I'll automatically gain access to my master seed and subsequent assigned to it?
182 2014-11-25 03:01:39 <coderwill> subsequent BTC*
183 2014-11-25 03:07:04 <netg> yeah, thats the plan
184 2014-11-25 03:08:10 Aquent has quit (Remote host closed the connection)
185 2014-11-25 03:09:53 <phantomcircuit> coderwill, in theory yes, in practice probably, will it work 100% of the time? probably not
186 2014-11-25 03:10:03 <phantomcircuit> will it work 99.999% of the time? probably
187 2014-11-25 03:10:59 <CodeShark> word lists are not part of the BIP32 spec
188 2014-11-25 03:11:33 harding has quit (Remote host closed the connection)
189 2014-11-25 03:13:12 lewellyn is now known as ihateyou
190 2014-11-25 03:13:36 ihateyou is now known as lewellyn
191 2014-11-25 03:13:36 Pierre_Rochard has quit (Quit: Pierre_Rochard)
192 2014-11-25 03:14:40 <CodeShark> the master seed format is part of BIP32, but the way a wallet organizes the HD tree is not
193 2014-11-25 03:15:35 Pierre_Rochard has joined
194 2014-11-25 03:16:45 harding has joined
195 2014-11-25 03:19:52 Pierre_Rochard has quit (Ping timeout: 240 seconds)
196 2014-11-25 03:21:05 pullphinger has joined
197 2014-11-25 03:22:42 <CodeShark> does electrum even use BIP32?
198 2014-11-25 03:23:02 <CodeShark> oh, yes - it does have support for BIP32 accounts
199 2014-11-25 03:23:41 <belcher> version 2.0 does
200 2014-11-25 03:25:47 flirtcoin has joined
201 2014-11-25 03:26:21 <flirtcoin> My goodness look at all the devs lol
202 2014-11-25 03:32:26 <coderwill> thanks all for the feedback on my question
203 2014-11-25 03:32:35 jb55 has quit (Remote host closed the connection)
204 2014-11-25 03:33:28 jb55 has joined
205 2014-11-25 03:35:29 fanquake has quit (Quit: fanquake)
206 2014-11-25 03:38:44 fanquake has joined
207 2014-11-25 03:40:05 bitbumper has quit (Ping timeout: 272 seconds)
208 2014-11-25 03:42:03 won9 has joined
209 2014-11-25 03:45:58 Flyer9933 has joined
210 2014-11-25 03:45:59 agricocb has quit (Quit: Leaving.)
211 2014-11-25 03:46:18 agricocb has joined
212 2014-11-25 03:47:59 Flyer33 has quit (Ping timeout: 256 seconds)
213 2014-11-25 03:49:51 Lightsword has quit (Quit: Lightsword)
214 2014-11-25 03:51:13 Trix is now known as trixisowned
215 2014-11-25 03:51:36 Subo1977 has joined
216 2014-11-25 03:51:51 Flyer33 has joined
217 2014-11-25 03:53:05 Flyer9933 has quit (Ping timeout: 256 seconds)
218 2014-11-25 03:53:25 prodatalab has joined
219 2014-11-25 03:54:11 coiner has quit (Ping timeout: 245 seconds)
220 2014-11-25 03:55:34 Subo1977_ has quit (Ping timeout: 250 seconds)
221 2014-11-25 03:56:19 belcher has quit (Quit: Leaving)
222 2014-11-25 03:59:21 c0rw has joined
223 2014-11-25 04:01:30 pooler has joined
224 2014-11-25 04:01:35 c0rw has quit (sleep!~c0rw1n@102.79-67-87.adsl-dyn.isp.belgacom.be|Ping timeout: 258 seconds)
225 2014-11-25 04:07:52 Lightsword has joined
226 2014-11-25 04:11:52 MoALTz_ has joined
227 2014-11-25 04:13:24 Application has quit (Ping timeout: 255 seconds)
228 2014-11-25 04:14:42 rfreeman_w has quit (Remote host closed the connection)
229 2014-11-25 04:14:45 MoALTz has quit (Ping timeout: 255 seconds)
230 2014-11-25 04:16:49 DoctorBTC has quit (Ping timeout: 272 seconds)
231 2014-11-25 04:17:28 papa3 has joined
232 2014-11-25 04:17:54 papa2 has quit (Remote host closed the connection)
233 2014-11-25 04:20:21 DoctorBTC has joined
234 2014-11-25 04:20:36 O01eg has joined
235 2014-11-25 04:26:03 coiner has joined
236 2014-11-25 04:26:05 Dizzle has joined
237 2014-11-25 04:27:20 chylee_ has joined
238 2014-11-25 04:28:18 jb55 has quit (Remote host closed the connection)
239 2014-11-25 04:28:55 jb55 has joined
240 2014-11-25 04:29:23 won9 has quit (Quit: won9)
241 2014-11-25 04:30:07 DoctorBTC has quit (Ping timeout: 272 seconds)
242 2014-11-25 04:31:22 bitbumper has joined
243 2014-11-25 04:32:43 chmod755 has quit (Quit: Leaving)
244 2014-11-25 04:32:51 DoctorBTC has joined
245 2014-11-25 04:33:06 Techguy305 has joined
246 2014-11-25 04:33:10 Techguy305 has quit (Read error: Connection reset by peer)
247 2014-11-25 04:33:21 jb55 has quit (Ping timeout: 250 seconds)
248 2014-11-25 04:33:24 NewLiberty has quit (Ping timeout: 258 seconds)
249 2014-11-25 04:37:51 bitbumper has quit (Ping timeout: 256 seconds)
250 2014-11-25 04:37:53 Application has joined
251 2014-11-25 04:39:06 hashtag has quit (Ping timeout: 240 seconds)
252 2014-11-25 04:39:47 Dizzle has quit (Quit: landing)
253 2014-11-25 04:41:19 chylee_ has quit (Remote host closed the connection)
254 2014-11-25 04:41:38 Namworld has quit ()
255 2014-11-25 04:42:12 Application has quit (Ping timeout: 255 seconds)
256 2014-11-25 04:42:51 fanquake has quit (Quit: fanquake)
257 2014-11-25 04:43:05 antizionist__ has quit (Quit: Connection closed for inactivity)
258 2014-11-25 04:44:53 maaku has quit (Remote host closed the connection)
259 2014-11-25 04:46:55 maaku has joined
260 2014-11-25 04:47:05 Application has joined
261 2014-11-25 04:47:18 maaku is now known as Guest100
262 2014-11-25 04:51:01 TheSeven has quit (Ping timeout: 272 seconds)
263 2014-11-25 04:51:35 TheSeven has joined
264 2014-11-25 04:52:29 flirtcoin has quit (Remote host closed the connection)
265 2014-11-25 05:03:34 bitbumper has joined
266 2014-11-25 05:04:27 fanquake has joined
267 2014-11-25 05:08:46 kromtar has quit (Quit: bye bye.)
268 2014-11-25 05:12:17 upgradeadvice has quit (Quit: No Ping reply in 180 seconds.)
269 2014-11-25 05:19:22 trommy has quit (Ping timeout: 240 seconds)
270 2014-11-25 05:19:31 kermit has quit (Quit: Leaving.)
271 2014-11-25 05:19:59 kermit has joined
272 2014-11-25 05:21:00 upgradeadvice has joined
273 2014-11-25 05:21:00 upgradeadvice has quit (Changing host)
274 2014-11-25 05:21:00 upgradeadvice has joined
275 2014-11-25 05:28:45 ionstorm has quit (Remote host closed the connection)
276 2014-11-25 05:34:01 upgradeadvice_ has joined
277 2014-11-25 05:34:24 upgradeadvice has quit (Ping timeout: 255 seconds)
278 2014-11-25 05:42:14 abishek has joined
279 2014-11-25 05:42:28 <abishek> anybody here have experience with bitpay integration?
280 2014-11-25 05:42:55 <phantomcircuit> #bitcoin
281 2014-11-25 05:45:28 devrandom has joined
282 2014-11-25 05:46:30 Informerop has quit (Ping timeout: 250 seconds)
283 2014-11-25 05:47:08 ericmuyser has quit (Remote host closed the connection)
284 2014-11-25 05:47:40 ericmuyser has joined
285 2014-11-25 05:50:18 DigiByteDev has quit (Quit: DigiByteDev)
286 2014-11-25 05:50:34 karc has quit (Remote host closed the connection)
287 2014-11-25 05:50:34 mortale has quit (Remote host closed the connection)
288 2014-11-25 05:51:57 ericmuyser has quit (Ping timeout: 255 seconds)
289 2014-11-25 05:52:59 mortale has joined
290 2014-11-25 05:53:55 mpmcsweeney has joined
291 2014-11-25 05:54:02 karc has joined
292 2014-11-25 05:57:22 jb55 has joined
293 2014-11-25 06:06:52 pewpsewp has quit (Quit: My MacBook has gone to sleep. ZZZzzzâ¦)
294 2014-11-25 06:09:30 bitspill_ has quit ()
295 2014-11-25 06:09:58 bitspill has joined
296 2014-11-25 06:11:16 mpmcsweeney has quit ()
297 2014-11-25 06:11:23 upgradeadvice_ has quit (Quit: No Ping reply in 180 seconds.)
298 2014-11-25 06:12:48 upgradeadvice has joined
299 2014-11-25 06:15:11 spinza has quit (Excess Flood)
300 2014-11-25 06:15:43 spinza has joined
301 2014-11-25 06:19:20 hmmma has quit (Quit: Leaving.)
302 2014-11-25 06:20:18 upgradeadvice has quit (Ping timeout: 255 seconds)
303 2014-11-25 06:21:37 upgradeadvice has joined
304 2014-11-25 06:26:14 hyperwang has quit (Ping timeout: 255 seconds)
305 2014-11-25 06:26:51 upgradeadvice has quit (Quit: No Ping reply in 180 seconds.)
306 2014-11-25 06:26:59 cris has quit (Ping timeout: 264 seconds)
307 2014-11-25 06:27:11 paveljanik has joined
308 2014-11-25 06:27:22 samson_ has quit (Remote host closed the connection)
309 2014-11-25 06:27:43 samson_ has joined
310 2014-11-25 06:28:47 Rebroad has joined
311 2014-11-25 06:29:10 Rebroad is now known as Guest38007
312 2014-11-25 06:32:40 upgradeadvice has joined
313 2014-11-25 06:32:40 upgradeadvice has quit (Changing host)
314 2014-11-25 06:32:40 upgradeadvice has joined
315 2014-11-25 06:35:00 cris has joined
316 2014-11-25 06:36:17 Guest38007 has quit (Ping timeout: 256 seconds)
317 2014-11-25 06:37:11 upgradeadvice has quit (Client Quit)
318 2014-11-25 06:38:27 upgradeadvice has joined
319 2014-11-25 06:38:27 upgradeadvice has quit (Changing host)
320 2014-11-25 06:38:28 upgradeadvice has joined
321 2014-11-25 06:40:00 enaqx has quit (Ping timeout: 244 seconds)
322 2014-11-25 06:42:46 Techguy305 has quit (2!~kvirc@rrcs-71-43-208-2.se.biz.rr.com|Ping timeout: 264 seconds)
323 2014-11-25 06:44:28 benrcole has joined
324 2014-11-25 06:49:22 WeCluster has joined
325 2014-11-25 06:49:46 ThomasV has joined
326 2014-11-25 06:51:12 prettymuchbryce has joined
327 2014-11-25 06:51:22 RazielZ has quit (Ping timeout: 244 seconds)
328 2014-11-25 06:51:45 lclc_bnc is now known as lclc
329 2014-11-25 06:52:22 upgradeadvice has quit (Quit: No Ping reply in 180 seconds.)
330 2014-11-25 06:52:40 HACKING-FACEBOOK has joined
331 2014-11-25 06:53:59 WeCluster has quit (Ping timeout: 264 seconds)
332 2014-11-25 06:55:09 benrcole has quit (Quit: Leaving.)
333 2014-11-25 06:58:07 upgradeadvice has joined
334 2014-11-25 06:58:07 upgradeadvice has quit (Changing host)
335 2014-11-25 06:58:07 upgradeadvice has joined
336 2014-11-25 07:01:46 HACKING-FACEBOOK has quit (Quit: facebook.com/realjohnchalekson)
337 2014-11-25 07:01:47 simondlr has joined
338 2014-11-25 07:02:08 HACKING-FACEBOOK has joined
339 2014-11-25 07:02:09 HACKING-FACEBOOK has quit (Max SendQ exceeded)
340 2014-11-25 07:02:29 HACKING-FACEBOOK has joined
341 2014-11-25 07:02:30 HACKING-FACEBOOK has quit (Max SendQ exceeded)
342 2014-11-25 07:02:51 HACKING-FACEBOOK has joined
343 2014-11-25 07:02:52 HACKING-FACEBOOK has quit (Max SendQ exceeded)
344 2014-11-25 07:03:16 HACKING-FACEBOOK has joined
345 2014-11-25 07:03:17 HACKING-FACEBOOK has quit (Max SendQ exceeded)
346 2014-11-25 07:03:36 HACKING-FACEBOOK has joined
347 2014-11-25 07:03:37 HACKING-FACEBOOK has quit (Max SendQ exceeded)
348 2014-11-25 07:04:06 HACKING-FACEBOOK has joined
349 2014-11-25 07:04:08 HACKING-FACEBOOK has quit (Max SendQ exceeded)
350 2014-11-25 07:04:43 HACKING-FACEBOOK has joined
351 2014-11-25 07:04:44 HACKING-FACEBOOK has quit (Max SendQ exceeded)
352 2014-11-25 07:05:32 HACKING-FACEBOOK has joined
353 2014-11-25 07:05:33 HACKING-FACEBOOK has quit (Max SendQ exceeded)
354 2014-11-25 07:06:11 HACKING-FACEBOOK has joined
355 2014-11-25 07:06:12 HACKING-FACEBOOK has quit (Max SendQ exceeded)
356 2014-11-25 07:06:44 HACKING-FACEBOOK has joined
357 2014-11-25 07:06:45 HACKING-FACEBOOK has quit (Max SendQ exceeded)
358 2014-11-25 07:07:05 HACKING-FACEBOOK has joined
359 2014-11-25 07:07:06 HACKING-FACEBOOK has quit (Max SendQ exceeded)
360 2014-11-25 07:07:26 HACKING-FACEBOOK has joined
361 2014-11-25 07:07:27 HACKING-FACEBOOK has quit (Max SendQ exceeded)
362 2014-11-25 07:07:42 HACKING-FACEBOOK has joined
363 2014-11-25 07:07:43 HACKING-FACEBOOK has quit (Max SendQ exceeded)
364 2014-11-25 07:08:01 HACKING-FACEBOOK has joined
365 2014-11-25 07:08:02 HACKING-FACEBOOK has quit (Max SendQ exceeded)
366 2014-11-25 07:08:26 HACKING-FACEBOOK has joined
367 2014-11-25 07:08:27 HACKING-FACEBOOK has quit (Max SendQ exceeded)
368 2014-11-25 07:08:48 benrcole has joined
369 2014-11-25 07:08:51 HACKING-FACEBOOK has joined
370 2014-11-25 07:08:52 HACKING-FACEBOOK has quit (Max SendQ exceeded)
371 2014-11-25 07:09:10 HACKING-FACEBOOK has joined
372 2014-11-25 07:09:11 HACKING-FACEBOOK has quit (Max SendQ exceeded)
373 2014-11-25 07:09:11 Aido_ has joined
374 2014-11-25 07:09:34 HACKING-FACEBOOK has joined
375 2014-11-25 07:09:35 HACKING-FACEBOOK has quit (Max SendQ exceeded)
376 2014-11-25 07:09:53 HACKING-FACEBOOK has joined
377 2014-11-25 07:09:53 HACKING-FACEBOOK has quit (Max SendQ exceeded)
378 2014-11-25 07:10:17 HACKING-FACEBOOK has joined
379 2014-11-25 07:10:43 upgradeadvice has quit (Ping timeout: 255 seconds)
380 2014-11-25 07:12:37 Aido has quit (Ping timeout: 265 seconds)
381 2014-11-25 07:13:39 upgradeadvice has joined
382 2014-11-25 07:13:39 upgradeadvice has quit (Changing host)
383 2014-11-25 07:13:39 upgradeadvice has joined
384 2014-11-25 07:15:31 Lightsword has quit (Ping timeout: 265 seconds)
385 2014-11-25 07:18:07 ericmuyser has joined
386 2014-11-25 07:18:13 parazyd has joined
387 2014-11-25 07:18:27 O01eg has quit (Quit: O01eg)
388 2014-11-25 07:18:27 upgradeadvice_ has joined
389 2014-11-25 07:18:27 upgradeadvice_ has quit (Changing host)
390 2014-11-25 07:18:27 upgradeadvice_ has joined
391 2014-11-25 07:18:44 neozaru has joined
392 2014-11-25 07:19:15 upgradeadvice has quit (Ping timeout: 255 seconds)
393 2014-11-25 07:19:43 benrcole has quit (Quit: Leaving.)
394 2014-11-25 07:20:01 ericmuyser has quit (Remote host closed the connection)
395 2014-11-25 07:20:17 ericmuyser has joined
396 2014-11-25 07:20:17 ericmuyser has quit (Remote host closed the connection)
397 2014-11-25 07:22:48 Lightsword has joined
398 2014-11-25 07:23:13 WeCluster has joined
399 2014-11-25 07:24:54 one0one has quit ()
400 2014-11-25 07:26:55 OneMiner has quit (Ping timeout: 255 seconds)
401 2014-11-25 07:29:10 HACKING-FACEBOOK has quit (Ping timeout: 255 seconds)
402 2014-11-25 07:30:43 upgradeadvice_ has quit (Quit: No Ping reply in 180 seconds.)
403 2014-11-25 07:32:22 upgradeadvice has joined
404 2014-11-25 07:32:22 upgradeadvice has quit (Changing host)
405 2014-11-25 07:32:22 upgradeadvice has joined
406 2014-11-25 07:34:58 ruukasu has quit (Quit: WeeChat 1.0.1)
407 2014-11-25 07:36:47 NewLiberty has joined
408 2014-11-25 07:37:18 upgradeadvice has quit (Quit: No Ping reply in 180 seconds.)
409 2014-11-25 07:38:40 RazielZ has joined
410 2014-11-25 07:38:42 upgradeadvice has joined
411 2014-11-25 07:38:49 nemo` has quit (Ping timeout: 250 seconds)
412 2014-11-25 07:39:26 ruukasu has joined
413 2014-11-25 07:39:51 abossard has joined
414 2014-11-25 07:42:56 upgradeadvice_ has joined
415 2014-11-25 07:42:56 upgradeadvice_ has quit (Changing host)
416 2014-11-25 07:42:56 upgradeadvice_ has joined
417 2014-11-25 07:44:27 upgradeadvice has quit (Ping timeout: 255 seconds)
418 2014-11-25 07:46:03 Mephistopheles has joined
419 2014-11-25 07:46:58 parazyd has left ()
420 2014-11-25 07:48:59 WormDr1nk has joined
421 2014-11-25 07:49:03 Khayman has quit (Ping timeout: 272 seconds)
422 2014-11-25 07:49:19 user7779078 has joined
423 2014-11-25 07:51:16 b_lumenkraft has joined
424 2014-11-25 07:51:49 kadoban has quit (Ping timeout: 244 seconds)
425 2014-11-25 07:52:06 upgradeadvice_ has quit (Quit: No Ping reply in 180 seconds.)
426 2014-11-25 07:52:22 CustosL1men has quit (Ping timeout: 240 seconds)
427 2014-11-25 07:54:23 upgradeadvice has joined
428 2014-11-25 07:55:31 DougieBot5000 has quit (Quit: Leaving)
429 2014-11-25 07:55:39 upgradeadvice has quit (Remote host closed the connection)
430 2014-11-25 07:55:58 swappermall has joined
431 2014-11-25 07:56:23 swappermall is now known as Guest32260
432 2014-11-25 07:57:08 Guest32260 has quit (Client Quit)
433 2014-11-25 07:57:24 Guest32260 has joined
434 2014-11-25 07:57:52 Guest32260 has quit (Client Quit)
435 2014-11-25 07:58:53 RazielZ has quit (Ping timeout: 258 seconds)
436 2014-11-25 08:00:56 user7779078 has quit (Remote host closed the connection)
437 2014-11-25 08:04:03 prodatalab has quit (Quit: Konversation terminated!)
438 2014-11-25 08:06:29 prodatalab has joined
439 2014-11-25 08:07:52 bitbumper has quit (Ping timeout: 255 seconds)
440 2014-11-25 08:09:35 Lightsword has quit (Quit: Lightsword)
441 2014-11-25 08:09:39 Grishnakh has quit (Ping timeout: 265 seconds)
442 2014-11-25 08:10:32 <Luke-Jr> is this "ABISprotocol" person anyone to pay attention to?
443 2014-11-25 08:14:37 <gmaxwell> I dread asking why
444 2014-11-25 08:16:04 kippwatson has joined
445 2014-11-25 08:21:30 ThomasV has quit (Ping timeout: 258 seconds)
446 2014-11-25 08:21:31 <Luke-Jr> gmaxwell: their comments on https://github.com/bitcoin/bitcoin/pull/5231#issuecomment-64320763
447 2014-11-25 08:22:19 Informerop has joined
448 2014-11-25 08:23:03 hmsimha_ has joined
449 2014-11-25 08:23:53 hmsimha_ has quit (Remote host closed the connection)
450 2014-11-25 08:26:21 <Luke-Jr> (I'm inclined to ignore them)
451 2014-11-25 08:26:26 <gmaxwell> Luke-Jr: may make more sense to just bring it up again later, jeff expressed a concern about some potential existing users.
452 2014-11-25 08:26:42 <gmaxwell> Yes, I'd ignore but in any case, seems perhaps premature.
453 2014-11-25 08:26:48 <gmaxwell> I wish we had an intermediate option.
454 2014-11-25 08:28:22 shesek has quit (Ping timeout: 264 seconds)
455 2014-11-25 08:29:33 Lightsword has joined
456 2014-11-25 08:29:46 benrcole has joined
457 2014-11-25 08:30:53 go1111111 has quit (Quit: Leaving)
458 2014-11-25 08:30:56 <Luke-Jr> I suppose we could try the "refuse to mine unless a decision is made" path again.. dunno if anyone will go for that
459 2014-11-25 08:31:17 go1111111 has joined
460 2014-11-25 08:32:14 <gmaxwell> bleh, nah. not worth it. just make the case for this again before the next release, perhaps backed up with some data.
461 2014-11-25 08:33:00 RagnarDanneskjol has quit (Ping timeout: 258 seconds)
462 2014-11-25 08:33:26 jb55 has quit (Remote host closed the connection)
463 2014-11-25 08:34:06 cbeams_ has joined
464 2014-11-25 08:34:07 cbeams has quit (Read error: Connection reset by peer)
465 2014-11-25 08:36:57 cbeams_ is now known as cbeams
466 2014-11-25 08:36:57 cbeams has quit (Changing host)
467 2014-11-25 08:36:57 cbeams has joined
468 2014-11-25 08:39:12 Mikej0h has joined
469 2014-11-25 08:39:43 <Diablo-D3> https://www.kickstarter.com/projects/1942805829/artison-rcc-nano
470 2014-11-25 08:39:44 <Diablo-D3> man
471 2014-11-25 08:39:56 <Diablo-D3> kickstarter is kind of a scam
472 2014-11-25 08:40:04 <Diablo-D3> people fund projects no one gives a fuck about
473 2014-11-25 08:40:11 <Diablo-D3> but shit like this? nope, no funding
474 2014-11-25 08:43:25 <Luke-Jr> it's just a speaker, you can get those for like $50
475 2014-11-25 08:43:42 joss-c has left ()
476 2014-11-25 08:43:52 <gwillen> Diablo-D3: I can't speak for everyone else, but I live in an apartment. "More bass" is anti-valuable to me.
477 2014-11-25 08:44:18 * Luke-Jr wonders if the Novena will be delivered Nov as planned :p
478 2014-11-25 08:44:19 <Diablo-D3> gwillen: I live in an apartment
479 2014-11-25 08:44:23 <Diablo-D3> Im still getting a sub
480 2014-11-25 08:44:37 <gwillen> I like keeping the peace with my neighbors too much to get a subwoofer.
481 2014-11-25 08:44:48 <Diablo-D3> I love my adam audio a3xes and all, but they mangle the audio on bass powerful tracks
482 2014-11-25 08:44:56 <Diablo-D3> because, well, they can reproduce it.
483 2014-11-25 08:45:04 <Diablo-D3> they're 4.5" woofers that go the whole way down to 60hz
484 2014-11-25 08:45:08 neozaru has quit (Remote host closed the connection)
485 2014-11-25 08:45:14 <gmaxwell> <- channel
486 2014-11-25 08:45:30 <Diablo-D3> ^--- gmaxwell
487 2014-11-25 08:45:46 go1111111 has quit (Ping timeout: 240 seconds)
488 2014-11-25 08:45:53 <Diablo-D3> this was meant for #bitcoin anyways
489 2014-11-25 08:49:54 <Diablo-D3> gwillen: the reason to get a sub is to take the load off your main speakers, btw
490 2014-11-25 08:50:12 <Diablo-D3> if your sub is just a thud machine, your entire theatre setup is just broken
491 2014-11-25 08:50:16 StephJsBitDev has joined
492 2014-11-25 08:51:09 <Diablo-D3> and yes, a lot of el cheapo home theatre in a box setups have a thud machine for a sub
493 2014-11-25 08:51:15 Eagle[TM] has joined
494 2014-11-25 08:51:45 <Diablo-D3> sats with 3" mids, entire 5.1 set is like 300w
495 2014-11-25 08:51:49 <Diablo-D3> whole thing is shit
496 2014-11-25 08:51:57 Grouver has joined
497 2014-11-25 08:52:41 cbeams has quit (Read error: Connection reset by peer)
498 2014-11-25 08:52:52 benrcole has quit (Ping timeout: 255 seconds)
499 2014-11-25 08:53:06 cbeams has joined
500 2014-11-25 08:53:06 cbeams has quit (Changing host)
501 2014-11-25 08:53:06 cbeams has joined
502 2014-11-25 08:53:23 AaronvanW has joined
503 2014-11-25 08:53:47 WormDr1nk has quit (Ping timeout: 250 seconds)
504 2014-11-25 08:54:23 benrcole has joined
505 2014-11-25 08:58:08 cbeams_ has joined
506 2014-11-25 08:58:09 cbeams has quit (Read error: Connection reset by peer)
507 2014-11-25 08:59:28 damethos has joined
508 2014-11-25 09:01:56 benrcole has quit (Ping timeout: 256 seconds)
509 2014-11-25 09:04:05 benrcole has joined
510 2014-11-25 09:08:34 tarantillo_ has quit (Remote host closed the connection)
511 2014-11-25 09:08:53 tarantillo_ has joined
512 2014-11-25 09:09:08 ericmuyser has joined
513 2014-11-25 09:09:14 elichai2 has joined
514 2014-11-25 09:09:48 CheckDavid has joined
515 2014-11-25 09:11:23 _yoy_ has quit (Ping timeout: 255 seconds)
516 2014-11-25 09:12:05 hmmma has joined
517 2014-11-25 09:12:17 hmsimha has quit (Ping timeout: 255 seconds)
518 2014-11-25 09:13:31 cbeams_ has quit (Read error: Connection reset by peer)
519 2014-11-25 09:13:41 cbeams has joined
520 2014-11-25 09:13:41 cbeams has quit (Changing host)
521 2014-11-25 09:13:41 cbeams has joined
522 2014-11-25 09:14:23 ericmuyser has quit (Ping timeout: 264 seconds)
523 2014-11-25 09:15:22 oujh has quit (Quit: Leaving)
524 2014-11-25 09:15:50 JackH has joined
525 2014-11-25 09:18:17 damethos has quit (Ping timeout: 265 seconds)
526 2014-11-25 09:19:08 prettymuchbryce has quit (Quit: Connection closed for inactivity)
527 2014-11-25 09:21:21 WormDr1nk has joined
528 2014-11-25 09:22:46 b_lumenkraft has quit (Read error: Connection reset by peer)
529 2014-11-25 09:24:59 DigiByteDev has joined
530 2014-11-25 09:26:42 b_lumenkraft has joined
531 2014-11-25 09:27:31 papa3 has quit (Ping timeout: 250 seconds)
532 2014-11-25 09:30:28 abishek has left ("Leaving")
533 2014-11-25 09:31:17 b_lumenkraft has quit (Client Quit)
534 2014-11-25 09:32:38 b_lumenkraft has joined
535 2014-11-25 09:32:56 oujh has joined
536 2014-11-25 09:33:04 hmmma has quit (Quit: Leaving.)
537 2014-11-25 09:35:24 bifforoni has joined
538 2014-11-25 09:35:51 papa2 has joined
539 2014-11-25 09:35:53 papa3 has joined
540 2014-11-25 09:36:20 papa3 has quit (Remote host closed the connection)
541 2014-11-25 09:38:12 timothy has joined
542 2014-11-25 09:42:51 ruukasu has quit (Quit: WeeChat 1.0.1)
543 2014-11-25 09:43:05 ruukasu has joined
544 2014-11-25 09:44:50 b_lumenkraft has quit (Quit: b_lumenkraft)
545 2014-11-25 09:45:48 b_lumenkraft has joined
546 2014-11-25 09:46:36 rubensayshi has joined
547 2014-11-25 09:46:53 go1111111 has joined
548 2014-11-25 09:49:43 damethos has joined
549 2014-11-25 09:56:21 kromtar has joined
550 2014-11-25 09:59:38 RoboTeddy has quit (Ping timeout: 258 seconds)
551 2014-11-25 09:59:43 Belxjander has joined
552 2014-11-25 10:08:18 abossard has left ()
553 2014-11-25 10:09:12 abossard_ has joined
554 2014-11-25 10:09:18 hearn has joined
555 2014-11-25 10:10:06 ruukasu has quit (Quit: WeeChat 1.0.1)
556 2014-11-25 10:12:36 won9 has joined
557 2014-11-25 10:17:02 elichai2 has quit (Changing host)
558 2014-11-25 10:17:02 elichai2 has joined
559 2014-11-25 10:18:23 lclc is now known as lclc_bnc
560 2014-11-25 10:19:47 moa has quit (Quit: Leaving.)
561 2014-11-25 10:20:43 NewLiberty has quit (Ping timeout: 258 seconds)
562 2014-11-25 10:20:44 ericmuyser has joined
563 2014-11-25 10:23:35 Aquent has joined
564 2014-11-25 10:25:47 ericmuyser has quit (Ping timeout: 264 seconds)
565 2014-11-25 10:30:39 n0n0 has joined
566 2014-11-25 10:31:11 hyperwang has joined
567 2014-11-25 10:35:13 _yoy_ has joined
568 2014-11-25 10:36:59 Lightsword has quit (Quit: Lightsword)
569 2014-11-25 10:39:18 tjopper has joined
570 2014-11-25 10:40:39 theorbtwo has quit (Read error: No route to host)
571 2014-11-25 10:42:46 lclc_bnc is now known as lclc
572 2014-11-25 10:43:51 theorbtwo has joined
573 2014-11-25 10:44:26 ThomasV has joined
574 2014-11-25 10:46:38 owlhooter has quit (Remote host closed the connection)
575 2014-11-25 10:47:06 JTF195 has quit (Ping timeout: 240 seconds)
576 2014-11-25 10:48:19 owlhooter has joined
577 2014-11-25 10:53:59 ruukasu has joined
578 2014-11-25 10:54:13 fanquake has quit (Quit: Sleeping)
579 2014-11-25 10:55:05 <Diablo-D3> http://hitgub.com
580 2014-11-25 10:58:28 won9 has quit (Quit: won9)
581 2014-11-25 11:01:24 erasmospunk has joined
582 2014-11-25 11:02:01 <b_lumenkraft> hehe, thatâs cute. :)
583 2014-11-25 11:03:35 okae has joined
584 2014-11-25 11:04:53 sipa has joined
585 2014-11-25 11:10:10 DigiByteDev has quit (Quit: DigiByteDev)
586 2014-11-25 11:15:45 CheckDavid has quit (Quit: Connection closed for inactivity)
587 2014-11-25 11:16:03 won9 has joined
588 2014-11-25 11:18:59 elichai2 has quit (Ping timeout: 258 seconds)
589 2014-11-25 11:20:17 c0rw is now known as sle_!~c0rw1n@129.66-67-87.adsl-dyn.isp.belgacom.be|c0rw1n
590 2014-11-25 11:21:38 DigiByteDev has joined
591 2014-11-25 11:21:46 benrcole has quit (Ping timeout: 264 seconds)
592 2014-11-25 11:25:31 atul has joined
593 2014-11-25 11:30:29 ruukasu has quit (Quit: WeeChat 1.0.1)
594 2014-11-25 11:33:50 won9 has quit (Quit: won9)
595 2014-11-25 11:37:36 Zarutian has joined
596 2014-11-25 11:43:57 ThomasV has quit (Ping timeout: 272 seconds)
597 2014-11-25 11:47:02 imfaust has joined
598 2014-11-25 11:48:46 cbeams has quit (Ping timeout: 264 seconds)
599 2014-11-25 11:49:22 c0rw1n is now known as c0rw|work
600 2014-11-25 11:51:10 aquarat has quit (Ping timeout: 264 seconds)
601 2014-11-25 11:52:55 damethos has quit (Remote host closed the connection)
602 2014-11-25 11:54:01 damethos has joined
603 2014-11-25 11:56:17 benrcole has joined
604 2014-11-25 11:56:59 benrcole1 has joined
605 2014-11-25 12:00:07 c0rw is now known as work!~c0rw1n@129.66-67-87.adsl-dyn.isp.belgacom.be|c0rw1n
606 2014-11-25 12:00:21 ThomasV has joined
607 2014-11-25 12:00:34 benrcole has quit (Ping timeout: 250 seconds)
608 2014-11-25 12:09:38 JTF195 has joined
609 2014-11-25 12:09:54 ericmuyser has joined
610 2014-11-25 12:11:10 shesek has joined
611 2014-11-25 12:12:13 benrcole1 has quit (Quit: Leaving.)
612 2014-11-25 12:12:44 aegis has quit (Ping timeout: 255 seconds)
613 2014-11-25 12:14:27 ericmuyser has quit (Ping timeout: 240 seconds)
614 2014-11-25 12:17:19 b_lumenkraft has quit (Quit: b_lumenkraft)
615 2014-11-25 12:18:04 ThomasV has quit (Ping timeout: 255 seconds)
616 2014-11-25 12:18:20 hyperwang has quit (Ping timeout: 250 seconds)
617 2014-11-25 12:21:18 aschildbach has joined
618 2014-11-25 12:24:05 benrcole has joined
619 2014-11-25 12:24:51 benrcole1 has joined
620 2014-11-25 12:28:06 hyperwang has joined
621 2014-11-25 12:28:22 benrcole has quit (Ping timeout: 245 seconds)
622 2014-11-25 12:30:28 pullphinger has quit ()
623 2014-11-25 12:34:41 fanquake has joined
624 2014-11-25 12:41:35 hyperwang has quit ()
625 2014-11-25 12:41:37 JackH has quit (Quit: JackH)
626 2014-11-25 12:50:43 erasmosp_ has joined
627 2014-11-25 12:50:45 Aquent has quit (Ping timeout: 250 seconds)
628 2014-11-25 12:51:21 Namworld has joined
629 2014-11-25 12:52:21 erasmospunk has quit (Ping timeout: 272 seconds)
630 2014-11-25 12:59:49 fanquake has quit (Quit: Sleeping)
631 2014-11-25 13:01:16 oujh has quit (Ping timeout: 255 seconds)
632 2014-11-25 13:05:25 atul has quit (Ping timeout: 246 seconds)
633 2014-11-25 13:05:34 fanquake has joined
634 2014-11-25 13:09:28 saizai has quit (Quit: saizai)
635 2014-11-25 13:15:28 oujh has joined
636 2014-11-25 13:17:33 b_lumenkraft has joined
637 2014-11-25 13:17:56 <runeks> Will there be any need for bootstrap.dat once bitcoind is able to do initial sync from multiple peers?
638 2014-11-25 13:18:43 <Luke-Jr> runeks: unlikely
639 2014-11-25 13:19:23 <runeks> Luke-Jr: Cool. I guess that's a good thing.
640 2014-11-25 13:20:29 <sipa> runeks: git master is capable of that right now :)
641 2014-11-25 13:20:30 MasterThrall has quit (Ping timeout: 258 seconds)
642 2014-11-25 13:21:14 <Luke-Jr> sipa: I suspect there may be corner cases *cough*rebroad*cough* that may work less well than the torrent right now? :P
643 2014-11-25 13:21:30 <sipa> oh, i'm sure
644 2014-11-25 13:21:34 Gyps has quit (Quit: Gyps)
645 2014-11-25 13:22:01 <runeks> sipa: Cool. I guess I should start using that, so I can serve multiple peers at once.
646 2014-11-25 13:22:16 <runeks> What's rebroad?
647 2014-11-25 13:22:22 <sipa> runeks: every version ever could *serve* multiple peers at once
648 2014-11-25 13:22:42 <sipa> it's just the fetching mechanism that couldn't synchronize from multiple peers at once
649 2014-11-25 13:22:49 <runeks> Ah, I see.
650 2014-11-25 13:22:51 Grishnakh has joined
651 2014-11-25 13:22:51 <Luke-Jr> runeks: rebroad is an occasional contributor to Bitcoin Core who has particularly broken internet connection
652 2014-11-25 13:22:59 MasterThrall has joined
653 2014-11-25 13:23:10 <runeks> So master can sync from multiple peers that are running earlier versions of bitcoind?
654 2014-11-25 13:23:12 <Luke-Jr> so he's often trying to suggest some bad ideas that might make his node work better
655 2014-11-25 13:23:18 <wumpus> Luke-Jr: and computer
656 2014-11-25 13:23:21 <runeks> Luke-Jr: Ah
657 2014-11-25 13:23:27 <Luke-Jr> wumpus: ?
658 2014-11-25 13:23:55 <sipa> runeks: yes, from versions down to 0.3.18 :)
659 2014-11-25 13:24:14 <wumpus> Luke-Jr: well he also had some very strange behavior before which suggest his computer/install is broken too, but sure it may all be caused by the internet connection :-)
660 2014-11-25 13:24:18 <runeks> sipa: Cool. That's good news. I guess I don't have to update then.
661 2014-11-25 13:24:34 <Luke-Jr> wumpus: heh, why am I not surprised? :>
662 2014-11-25 13:24:36 <Luke-Jr> :P*
663 2014-11-25 13:25:40 ericmuyser has joined
664 2014-11-25 13:25:42 <wumpus> on one hand, that works better to find problems than any fuzzer, on the other hand, the solutions he comes up with are usually meh
665 2014-11-25 13:28:11 nezZario has quit (Ping timeout: 264 seconds)
666 2014-11-25 13:28:25 bit2017 has joined
667 2014-11-25 13:30:47 Elglobo has quit (Ping timeout: 240 seconds)
668 2014-11-25 13:30:59 ericmuyser has quit (Ping timeout: 272 seconds)
669 2014-11-25 13:32:00 coiner has quit (Ping timeout: 258 seconds)
670 2014-11-25 13:32:45 cbeams has joined
671 2014-11-25 13:34:59 Elglobo has joined
672 2014-11-25 13:41:34 cbeams_ has joined
673 2014-11-25 13:41:34 cbeams has quit (Read error: Connection reset by peer)
674 2014-11-25 13:46:12 saulimus has joined
675 2014-11-25 13:46:18 AaronvanW has quit (Remote host closed the connection)
676 2014-11-25 13:49:05 rnvk has quit (Remote host closed the connection)
677 2014-11-25 13:49:43 rnvk has joined
678 2014-11-25 13:50:37 llllllllll has joined
679 2014-11-25 13:51:25 hashtag has joined
680 2014-11-25 13:51:45 kadoban has joined
681 2014-11-25 13:53:09 Magma has quit (Ping timeout: 272 seconds)
682 2014-11-25 13:54:48 Magma has joined
683 2014-11-25 13:55:37 ruukasu has joined
684 2014-11-25 13:55:49 BGL has quit (Read error: Connection reset by peer)
685 2014-11-25 13:56:28 ShawnLeary_ has joined
686 2014-11-25 13:57:45 ShawnLeary_ has quit (Client Quit)
687 2014-11-25 13:58:34 ShawnLeary has joined
688 2014-11-25 13:59:04 Magma has quit (Remote host closed the connection)
689 2014-11-25 13:59:29 Magma has joined
690 2014-11-25 14:02:40 ryanxcharles has quit (Ping timeout: 258 seconds)
691 2014-11-25 14:05:23 Magma has quit (Ping timeout: 264 seconds)
692 2014-11-25 14:07:32 Eagle[TM] has quit (Ping timeout: 250 seconds)
693 2014-11-25 14:08:59 ryanxcharles has joined
694 2014-11-25 14:10:10 trommy has joined
695 2014-11-25 14:11:32 weilu has joined
696 2014-11-25 14:11:55 b_lumenkraft has quit (Quit: b_lumenkraft)
697 2014-11-25 14:12:28 Eagle[TM] has joined
698 2014-11-25 14:12:58 elichai2 has joined
699 2014-11-25 14:12:58 elichai2 has quit (Changing host)
700 2014-11-25 14:12:58 elichai2 has joined
701 2014-11-25 14:15:12 agricocb has quit (Quit: Leaving.)
702 2014-11-25 14:17:12 Magicking` has joined
703 2014-11-25 14:18:27 Magma has joined
704 2014-11-25 14:21:56 Zarutian has quit (Quit: Zarutian)
705 2014-11-25 14:22:32 melvin has quit (Remote host closed the connection)
706 2014-11-25 14:22:32 melvster has quit (Remote host closed the connection)
707 2014-11-25 14:23:36 melvin has joined
708 2014-11-25 14:25:59 oujh has quit (Read error: Connection reset by peer)
709 2014-11-25 14:29:31 saizai has joined
710 2014-11-25 14:29:59 tjopper has quit (Read error: Connection reset by peer)
711 2014-11-25 14:31:47 BGL has joined
712 2014-11-25 14:32:33 agricocb has joined
713 2014-11-25 14:33:18 GM0127 has joined
714 2014-11-25 14:34:26 Jkerzz has joined
715 2014-11-25 14:36:09 Dagger2 is now known as Dagger
716 2014-11-25 14:38:23 aegis has joined
717 2014-11-25 14:39:51 Eagle[TM] has quit (Ping timeout: 258 seconds)
718 2014-11-25 14:43:15 oujh has joined
719 2014-11-25 14:45:26 Jkerzz has quit ()
720 2014-11-25 14:45:29 Eagle[TM] has joined
721 2014-11-25 14:46:09 fanquake has left ()
722 2014-11-25 14:47:35 Guest38007 has joined
723 2014-11-25 14:48:48 OneMiner has joined
724 2014-11-25 15:02:00 NewLiberty has joined
725 2014-11-25 15:09:04 Guest38007 has quit (Ping timeout: 250 seconds)
726 2014-11-25 15:09:57 AaronvanW has joined
727 2014-11-25 15:11:29 Guest11754 has joined
728 2014-11-25 15:12:14 aquarat has joined
729 2014-11-25 15:14:28 ericmuyser has joined
730 2014-11-25 15:14:44 bit2017 has quit (Ping timeout: 258 seconds)
731 2014-11-25 15:15:13 aquarat has quit (Remote host closed the connection)
732 2014-11-25 15:15:37 aquarat has joined
733 2014-11-25 15:15:42 b_lumenkraft has joined
734 2014-11-25 15:15:59 Gyps has joined
735 2014-11-25 15:19:20 ericmuyser has quit (Ping timeout: 256 seconds)
736 2014-11-25 15:20:40 rothschild has joined
737 2014-11-25 15:22:34 GM0127 has quit (Quit: Leaving)
738 2014-11-25 15:23:10 ThomasV has joined
739 2014-11-25 15:25:37 Guest11754 has quit (Ping timeout: 272 seconds)
740 2014-11-25 15:25:37 imfaust has quit (Ping timeout: 272 seconds)
741 2014-11-25 15:26:29 ruukasu has quit (Quit: WeeChat 1.0.1)
742 2014-11-25 15:27:19 ruukasu has joined
743 2014-11-25 15:29:05 oujh has quit (Ping timeout: 244 seconds)
744 2014-11-25 15:30:52 oujh has joined
745 2014-11-25 15:33:04 doppo has joined
746 2014-11-25 15:35:51 Aquent has joined
747 2014-11-25 15:37:17 wallet42 has quit (Quit: Leaving.)
748 2014-11-25 15:37:43 O01eg has joined
749 2014-11-25 15:37:49 DougieBot5000 has joined
750 2014-11-25 15:45:03 Quanttek has joined
751 2014-11-25 15:45:46 Quanttek has quit (Read error: Connection reset by peer)
752 2014-11-25 15:49:27 Cory has quit (Read error: Connection reset by peer)
753 2014-11-25 15:50:24 Cory has joined
754 2014-11-25 15:54:45 coiner has joined
755 2014-11-25 15:54:50 CheckDavid has joined
756 2014-11-25 15:55:59 cyphase has quit (Ping timeout: 264 seconds)
757 2014-11-25 15:56:30 aschildbach has quit (Remote host closed the connection)
758 2014-11-25 15:57:46 Subo1977_ has joined
759 2014-11-25 16:01:25 Subo1977 has quit (Ping timeout: 250 seconds)
760 2014-11-25 16:04:08 damethos has quit (Quit: Bye)
761 2014-11-25 16:04:24 Quanttek has joined
762 2014-11-25 16:07:13 prodatalab has quit (Quit: Konversation terminated!)
763 2014-11-25 16:08:22 ThomasV has quit (Ping timeout: 240 seconds)
764 2014-11-25 16:09:33 prodatalab has joined
765 2014-11-25 16:10:10 Quanttek has quit (Ping timeout: 250 seconds)
766 2014-11-25 16:18:34 Cryo has joined
767 2014-11-25 16:20:53 Blackreign has joined
768 2014-11-25 16:21:34 pewpsewp has joined
769 2014-11-25 16:22:27 ruukasu has quit (Quit: WeeChat 1.0.1)
770 2014-11-25 16:23:14 Robarelli has joined
771 2014-11-25 16:24:36 ruukasu has joined
772 2014-11-25 16:25:08 ThomasV has joined
773 2014-11-25 16:29:16 eriksays has joined
774 2014-11-25 16:35:08 Quanttek has joined
775 2014-11-25 16:35:45 Quanttek has quit (Read error: Connection reset by peer)
776 2014-11-25 16:36:40 Techguy305 has joined
777 2014-11-25 16:37:41 brooss has quit (Quit: ZNC - http://znc.in)
778 2014-11-25 16:39:28 brson has joined
779 2014-11-25 16:39:31 RazielZ has joined
780 2014-11-25 16:40:24 Quanttek has joined
781 2014-11-25 16:41:08 Quanttek has quit (Read error: Connection reset by peer)
782 2014-11-25 16:41:58 erasmosp_ is now known as erasmospunk
783 2014-11-25 16:42:38 Quanttek has joined
784 2014-11-25 16:43:42 Quanttek_ has joined
785 2014-11-25 16:45:42 Lightsword has joined
786 2014-11-25 16:47:30 ryanxcharles has quit (Ping timeout: 258 seconds)
787 2014-11-25 16:47:48 prodatalab has quit (Quit: Konversation terminated!)
788 2014-11-25 16:47:52 Quanttek has quit (Ping timeout: 250 seconds)
789 2014-11-25 16:48:36 JackH has joined
790 2014-11-25 16:49:13 Quanttek_ has quit (Ping timeout: 272 seconds)
791 2014-11-25 16:49:45 prodatalab has joined
792 2014-11-25 16:52:48 eric___ has joined
793 2014-11-25 16:53:38 <eric___> What does blockchain.info, blocktrail.com and chain.com have in common? For a particular address, they are all showing an incorrect recieved amount, with the exact same incorrect recieved amount
794 2014-11-25 16:53:56 JackH has quit (Quit: JackH)
795 2014-11-25 16:54:40 <eric___> In fact, merely adding up blockchain.infoâs own list of transactions, shows the correct total.
796 2014-11-25 16:55:14 <eric___> Iâm having trouble reconsiling the fact that three supposedly independent sites exhibit the same bug
797 2014-11-25 16:55:40 bifforoni has quit (Ping timeout: 256 seconds)
798 2014-11-25 16:56:10 weilu has quit (Remote host closed the connection)
799 2014-11-25 16:56:17 WormDr1nk has quit (Ping timeout: 245 seconds)
800 2014-11-25 16:56:27 aquarat has quit (Remote host closed the connection)
801 2014-11-25 16:56:29 profreid has joined
802 2014-11-25 16:56:53 aquarat has joined
803 2014-11-25 17:00:26 ruukasu has quit (Read error: Connection reset by peer)
804 2014-11-25 17:00:58 prodatalab has quit (Quit: Konversation terminated!)
805 2014-11-25 17:01:12 ruukasu has joined
806 2014-11-25 17:02:13 ryanxcharles has joined
807 2014-11-25 17:02:38 <hearn> eric___: which address?
808 2014-11-25 17:03:10 ericmuyser has joined
809 2014-11-25 17:04:04 <eric___> hearn: Ended up figuring it out. If the output address is in the list of the input address, all the above sites exclude it from being considered âtotal recievedâ
810 2014-11-25 17:04:19 abossard_ has quit (Quit: abossard_)
811 2014-11-25 17:04:27 <eric___> Which is rather counter-intuitive behavior
812 2014-11-25 17:04:49 <eric___> The problematic transaciton was this one: https://blockchain.info/tx/c2c76704c6c5916d0a5e398d28f47d5df4e7d507917b04ad56eb378e98fcae44
813 2014-11-25 17:05:01 <eric___> Where 13ty⦠is in both the inputs and the outputs
814 2014-11-25 17:05:09 <eric___> So it doesnât count toward the âtotal recievedâ
815 2014-11-25 17:05:35 nemo` has joined
816 2014-11-25 17:06:58 Tiraspol has quit (Ping timeout: 272 seconds)
817 2014-11-25 17:07:47 ericmuyser has quit (Ping timeout: 240 seconds)
818 2014-11-25 17:07:47 Tiraspol has joined
819 2014-11-25 17:11:02 brson has quit (Remote host closed the connection)
820 2014-11-25 17:11:09 profreid has quit (Read error: Connection reset by peer)
821 2014-11-25 17:11:35 JackH has joined
822 2014-11-25 17:11:40 brson has joined
823 2014-11-25 17:13:58 nuke1989 has quit (Ping timeout: 244 seconds)
824 2014-11-25 17:14:21 llllllllll has quit ()
825 2014-11-25 17:15:14 Quanttek has joined
826 2014-11-25 17:15:45 Quanttek has quit (Read error: Connection reset by peer)
827 2014-11-25 17:19:29 bitstein has joined
828 2014-11-25 17:19:52 Grouver has quit (Quit: Leaving)
829 2014-11-25 17:20:54 hmsimha has joined
830 2014-11-25 17:22:20 eric___ has quit (Quit: eric___)
831 2014-11-25 17:23:37 rothschild has quit (Quit: Leaving.)
832 2014-11-25 17:26:48 abossard has joined
833 2014-11-25 17:27:05 weilu has joined
834 2014-11-25 17:28:46 user7779078 has joined
835 2014-11-25 17:29:13 brooss has joined
836 2014-11-25 17:30:42 ericmuyser has joined
837 2014-11-25 17:31:00 benrcole1 has quit (Quit: Leaving.)
838 2014-11-25 17:31:27 weilu has quit (Ping timeout: 240 seconds)
839 2014-11-25 17:34:46 ThomasV has quit (Ping timeout: 256 seconds)
840 2014-11-25 17:35:04 JackH has quit (Quit: JackH)
841 2014-11-25 17:37:47 Magma has quit (Ping timeout: 240 seconds)
842 2014-11-25 17:40:37 Pierre_Rochard has joined
843 2014-11-25 17:40:42 saizai has quit (Quit: saizai)
844 2014-11-25 17:43:50 elichai2 has quit (Ping timeout: 256 seconds)
845 2014-11-25 17:44:14 Zarutian has joined
846 2014-11-25 17:45:23 damethos has joined
847 2014-11-25 17:47:19 Quanttek has joined
848 2014-11-25 17:47:22 ionstorm has joined
849 2014-11-25 17:49:37 Eagle[TM] has quit (Ping timeout: 258 seconds)
850 2014-11-25 17:49:47 nbjerg has joined
851 2014-11-25 17:52:28 Dizzle has joined
852 2014-11-25 17:56:21 bitstein has quit (Quit: Textual IRC Client: www.textualapp.com)
853 2014-11-25 18:01:47 lclc is now known as lclc_bnc
854 2014-11-25 18:07:37 nbjerg has quit (Quit: Bye!)
855 2014-11-25 18:11:36 user7779078 has quit (Ping timeout: 256 seconds)
856 2014-11-25 18:13:33 timothy has quit (Read error: Connection reset by peer)
857 2014-11-25 18:15:11 ShawnLeary has quit (Remote host closed the connection)
858 2014-11-25 18:21:06 nuke1989 has joined
859 2014-11-25 18:22:12 Gyps has quit (Quit: Gyps)
860 2014-11-25 18:23:54 thermoman has quit (Quit: Bye)
861 2014-11-25 18:27:45 weilu has joined
862 2014-11-25 18:27:48 thermoman has joined
863 2014-11-25 18:29:31 gdm85 has quit (Remote host closed the connection)
864 2014-11-25 18:29:57 gdm85 has joined
865 2014-11-25 18:29:59 benrcole has joined
866 2014-11-25 18:31:08 antizionist__ has joined
867 2014-11-25 18:32:22 jb55 has joined
868 2014-11-25 18:32:23 weilu has quit (Ping timeout: 240 seconds)
869 2014-11-25 18:32:31 jb55 has quit (Remote host closed the connection)
870 2014-11-25 18:33:03 jb55 has joined
871 2014-11-25 18:35:01 ThomasV has joined
872 2014-11-25 18:35:50 Guest48334 is now known as artifexd
873 2014-11-25 18:35:59 artifexd has quit (Changing host)
874 2014-11-25 18:35:59 artifexd has joined
875 2014-11-25 18:35:59 artifexd has quit (Changing host)
876 2014-11-25 18:35:59 artifexd has joined
877 2014-11-25 18:40:40 rubensayshi has quit (Remote host closed the connection)
878 2014-11-25 18:41:47 ruukasu has quit (Quit: WeeChat 1.0.1)
879 2014-11-25 18:45:43 ruukasu has joined
880 2014-11-25 18:47:02 ionstorm has quit (Ping timeout: 272 seconds)
881 2014-11-25 18:49:49 cbeams_ is now known as cbeams
882 2014-11-25 18:49:50 cbeams has quit (Changing host)
883 2014-11-25 18:49:50 cbeams has joined
884 2014-11-25 18:54:41 cbeams has quit (Remote host closed the connection)
885 2014-11-25 18:54:59 cbeams has joined
886 2014-11-25 18:57:23 maraoz has joined
887 2014-11-25 19:00:20 Application has quit (Remote host closed the connection)
888 2014-11-25 19:01:46 rnvk has quit (Ping timeout: 250 seconds)
889 2014-11-25 19:01:51 <maraoz> Does Bitcoin Core use the SCRIPT_VERIFY_LOW_S flag on by default to verify transactions? This test https://github.com/bitcoin/bitcoin/blob/ca6fb4e885c899e297e0a6fa723604a41f199aa6/src/test/script_tests.cpp#L415 seems to indicate it doesn't, but I'm not sure
890 2014-11-25 19:03:09 hmsimha has quit (Ping timeout: 255 seconds)
891 2014-11-25 19:04:26 <gmaxwell> maraoz: it doesn't, not yet. Why?
892 2014-11-25 19:05:26 jMyles has quit (Ping timeout: 256 seconds)
893 2014-11-25 19:06:10 rdymac has quit (Quit: Connection closed for inactivity)
894 2014-11-25 19:06:42 damethos has quit (Quit: Bye)
895 2014-11-25 19:09:34 Lightsword has quit (Quit: Lightsword)
896 2014-11-25 19:10:44 hanti is now known as HANTI
897 2014-11-25 19:13:01 rnvk has joined
898 2014-11-25 19:14:44 <maraoz> gmaxwell: thanks! just wanted to make sure current bitcore version is not generating invalid txs. I guess implementing BIP62 new rules is a good idea for a future release
899 2014-11-25 19:16:47 DigiByteDev has quit (Quit: DigiByteDev)
900 2014-11-25 19:17:29 <gmaxwell> You should implement low S for all your transactions as soon as you easily can. But indeed, they're fine for the moment.
901 2014-11-25 19:19:55 ruukasu has quit (Quit: WeeChat 1.0.1)
902 2014-11-25 19:20:34 <gmaxwell> since if there is another wave of mutant transactions miners may begin enforcing low-S as an IsStandard rule or some kind of priortiziation scheme for all transactions to stop the bleeding.
903 2014-11-25 19:21:09 zikomoto has quit (Ping timeout: 255 seconds)
904 2014-11-25 19:22:45 hashtag_ has joined
905 2014-11-25 19:23:09 Robarelli has quit (Ping timeout: 258 seconds)
906 2014-11-25 19:24:29 ruukasu has joined
907 2014-11-25 19:26:06 hashtag has quit (Ping timeout: 255 seconds)
908 2014-11-25 19:27:51 <maraoz> gmaxwell: gotcha. We'll probably include the new BIP62 rules for the next major release in December
909 2014-11-25 19:28:31 user7779078 has joined
910 2014-11-25 19:28:43 dkog_ has joined
911 2014-11-25 19:29:18 benrcole has quit (Quit: Leaving.)
912 2014-11-25 19:29:31 weilu has joined
913 2014-11-25 19:29:31 <gmaxwell> Well the only thing I think you need to do right away is just the low-S signing. BIP62 isn't deployed yet, and the full thing involves v3 transactions which aren't relayed yet.
914 2014-11-25 19:29:31 Knuk has joined
915 2014-11-25 19:29:56 ThomasV has quit (Ping timeout: 250 seconds)
916 2014-11-25 19:31:04 Dizzle__ has joined
917 2014-11-25 19:31:07 dkog has quit (Ping timeout: 240 seconds)
918 2014-11-25 19:31:07 dkog_ is now known as dkog
919 2014-11-25 19:31:27 Knuk_ has quit (Ping timeout: 240 seconds)
920 2014-11-25 19:32:37 runeks has quit (Read error: Connection reset by peer)
921 2014-11-25 19:32:42 ThomasV has joined
922 2014-11-25 19:33:07 weilu has quit (Ping timeout: 240 seconds)
923 2014-11-25 19:33:49 Alina-malina has quit (Quit: http://www.twitter.com/aleenamaleena)
924 2014-11-25 19:34:07 zikomoto has joined
925 2014-11-25 19:34:07 zikomoto has quit (Changing host)
926 2014-11-25 19:34:07 zikomoto has joined
927 2014-11-25 19:34:12 Dizzle has quit (Ping timeout: 264 seconds)
928 2014-11-25 19:35:07 Lightsword has joined
929 2014-11-25 19:35:50 RazielXYZ has joined
930 2014-11-25 19:36:06 Starduster_ has joined
931 2014-11-25 19:36:29 b_lumenkraft_ has joined
932 2014-11-25 19:37:14 magichex has quit (Ping timeout: 250 seconds)
933 2014-11-25 19:37:16 RazielZ has quit (Disconnected by services)
934 2014-11-25 19:37:18 RazielXYZ is now known as Raziel
935 2014-11-25 19:38:01 Alina-malina has joined
936 2014-11-25 19:38:27 b_lumenkraft has quit (Ping timeout: 240 seconds)
937 2014-11-25 19:38:27 b_lumenkraft_ is now known as b_lumenkraft
938 2014-11-25 19:39:07 Starduster has quit (Ping timeout: 240 seconds)
939 2014-11-25 19:39:59 maraoz has quit (Ping timeout: 255 seconds)
940 2014-11-25 19:40:42 maraoz has joined
941 2014-11-25 19:42:36 moa has joined
942 2014-11-25 19:45:52 ruukasu has quit (Ping timeout: 245 seconds)
943 2014-11-25 19:45:57 ruukasuu has joined
944 2014-11-25 19:47:10 MoALTz_ has quit (Quit: Leaving)
945 2014-11-25 19:50:32 magichex has joined
946 2014-11-25 19:50:45 brianhoffman has joined
947 2014-11-25 19:50:57 Application has joined
948 2014-11-25 19:51:24 pullphinger has joined
949 2014-11-25 19:53:51 hearn has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzzâ¦)
950 2014-11-25 19:58:57 AaronvanW has quit (Remote host closed the connection)
951 2014-11-25 19:59:32 elichai2 has joined
952 2014-11-25 20:04:05 Zarutian has quit (Quit: Zarutian)
953 2014-11-25 20:09:36 chmod755 has joined
954 2014-11-25 20:10:29 neozaru has joined
955 2014-11-25 20:13:23 erasmospunk has quit (Remote host closed the connection)
956 2014-11-25 20:14:28 erasmospunk has joined
957 2014-11-25 20:21:25 NewLiberty has quit (Ping timeout: 258 seconds)
958 2014-11-25 20:22:40 ruukasuu has quit (Ping timeout: 272 seconds)
959 2014-11-25 20:24:34 one0one has joined
960 2014-11-25 20:25:58 hmsimha has joined
961 2014-11-25 20:28:38 xenog has joined
962 2014-11-25 20:28:45 Elglobo has quit (Ping timeout: 244 seconds)
963 2014-11-25 20:29:25 weilu has joined
964 2014-11-25 20:31:37 bitbumper has joined
965 2014-11-25 20:33:17 ThomasV has quit (Ping timeout: 256 seconds)
966 2014-11-25 20:34:04 weilu has quit (Ping timeout: 258 seconds)
967 2014-11-25 20:38:45 PK has joined
968 2014-11-25 20:38:57 elichai2 has quit (Ping timeout: 256 seconds)
969 2014-11-25 20:40:54 b_lumenkraft has quit (Quit: b_lumenkraft)
970 2014-11-25 20:43:00 mkarrer has quit (Read error: Connection reset by peer)
971 2014-11-25 20:43:04 Aido_ is now known as Aido
972 2014-11-25 20:44:01 mkarrer has joined
973 2014-11-25 20:44:28 Elglobo has joined
974 2014-11-25 20:44:36 Elglobonoob has joined
975 2014-11-25 20:47:07 xmk3 has quit (Quit: foo)
976 2014-11-25 20:48:35 sl01_ has quit (Ping timeout: 256 seconds)
977 2014-11-25 20:50:00 elichai2 has joined
978 2014-11-25 20:50:59 jMyles has joined
979 2014-11-25 20:51:12 atgreen has quit (Remote host closed the connection)
980 2014-11-25 20:55:24 MiningBuddy has quit (Remote host closed the connection)
981 2014-11-25 20:56:22 sl01 has joined
982 2014-11-25 21:03:35 MiningBuddy has joined
983 2014-11-25 21:03:35 MiningBuddy has quit (Changing host)
984 2014-11-25 21:03:35 MiningBuddy has joined
985 2014-11-25 21:09:53 AaronvanW has joined
986 2014-11-25 21:12:59 gavinandresen has left ()
987 2014-11-25 21:13:28 user7779078 has quit (Remote host closed the connection)
988 2014-11-25 21:13:31 bitbumper has quit (Ping timeout: 256 seconds)
989 2014-11-25 21:13:55 user7779078 has joined
990 2014-11-25 21:18:04 paveljanik has quit (Ping timeout: 255 seconds)
991 2014-11-25 21:18:08 MKCoin has quit (Ping timeout: 258 seconds)
992 2014-11-25 21:20:18 elichai2 has quit (Ping timeout: 256 seconds)
993 2014-11-25 21:21:43 simondlr has quit (Remote host closed the connection)
994 2014-11-25 21:28:48 upgradeadvice has joined
995 2014-11-25 21:28:48 upgradeadvice has quit (Changing host)
996 2014-11-25 21:28:48 upgradeadvice has joined
997 2014-11-25 21:29:44 Guest43504 has joined
998 2014-11-25 21:30:02 weilu has joined
999 2014-11-25 21:30:20 devrandom has quit (Quit: leaving)
1000 2014-11-25 21:30:35 imfaust has joined
1001 2014-11-25 21:30:39 MKCoin has joined
1002 2014-11-25 21:31:27 weilu has quit (Read error: Connection reset by peer)
1003 2014-11-25 21:32:06 weilu has joined
1004 2014-11-25 21:32:31 Dizzle has joined
1005 2014-11-25 21:32:39 cbeams has quit (Remote host closed the connection)
1006 2014-11-25 21:35:23 Dizzle__ has quit (Ping timeout: 258 seconds)
1007 2014-11-25 21:35:40 erasmospunk has quit (Remote host closed the connection)
1008 2014-11-25 21:36:33 weilu has quit (Ping timeout: 258 seconds)
1009 2014-11-25 21:36:57 AnoAnon has joined
1010 2014-11-25 21:37:08 AnoAnon has quit (Read error: Connection reset by peer)
1011 2014-11-25 21:38:30 Internet13 has quit (Ping timeout: 244 seconds)
1012 2014-11-25 21:43:55 NewLiberty has joined
1013 2014-11-25 21:46:09 upgradeadvice_ has joined
1014 2014-11-25 21:46:10 xenog has quit (Read error: Connection reset by peer)
1015 2014-11-25 21:46:27 xenog has joined
1016 2014-11-25 21:48:26 upgradeadvice has quit (Ping timeout: 258 seconds)
1017 2014-11-25 21:49:59 maraoz has quit (Ping timeout: 264 seconds)
1018 2014-11-25 21:50:43 maraoz has joined
1019 2014-11-25 21:57:59 Dizzle__ has joined
1020 2014-11-25 22:01:05 Dizzle has quit (Ping timeout: 258 seconds)
1021 2014-11-25 22:02:26 cbeams has joined
1022 2014-11-25 22:02:47 nuke1989 has quit (Ping timeout: 244 seconds)
1023 2014-11-25 22:03:56 Dizzle__ is now known as Dizzle
1024 2014-11-25 22:03:57 xenog has quit (Remote host closed the connection)
1025 2014-11-25 22:04:45 nuke1989 has joined
1026 2014-11-25 22:05:08 JStoker has quit (Remote host closed the connection)
1027 2014-11-25 22:07:39 Elglobo has quit (Ping timeout: 255 seconds)
1028 2014-11-25 22:10:40 hashtag_ has quit (Ping timeout: 265 seconds)
1029 2014-11-25 22:12:12 NewLiberty has quit (Ping timeout: 258 seconds)
1030 2014-11-25 22:12:40 Dizzle__ has joined
1031 2014-11-25 22:13:27 Elglobonoob has quit (Ping timeout: 240 seconds)
1032 2014-11-25 22:15:47 Dizzle has quit (Ping timeout: 264 seconds)
1033 2014-11-25 22:16:05 cyphase has joined
1034 2014-11-25 22:16:40 Dizzle__ is now known as Dizzle
1035 2014-11-25 22:17:21 ruukasu has joined
1036 2014-11-25 22:19:00 Diablo-D3 has quit (Quit: This computer has gone to sleep)
1037 2014-11-25 22:19:14 Diablo-D3 has joined
1038 2014-11-25 22:21:07 upgradeadvice_ has quit (Read error: Connection reset by peer)
1039 2014-11-25 22:21:32 hmmma has joined
1040 2014-11-25 22:21:41 Elglobonoob has joined
1041 2014-11-25 22:21:57 upgradeadvice has joined
1042 2014-11-25 22:21:57 upgradeadvice has quit (Changing host)
1043 2014-11-25 22:21:57 upgradeadvice has joined
1044 2014-11-25 22:22:58 Internet13 has joined
1045 2014-11-25 22:23:56 aschildbach has joined
1046 2014-11-25 22:26:24 Elglobonoob has quit (Ping timeout: 264 seconds)
1047 2014-11-25 22:27:11 Elglobonoob has joined
1048 2014-11-25 22:31:13 derbumi_ has joined
1049 2014-11-25 22:32:37 weilu has joined
1050 2014-11-25 22:32:54 Elglobonoob has quit (Ping timeout: 258 seconds)
1051 2014-11-25 22:34:47 pullphinger has quit ()
1052 2014-11-25 22:34:50 go1111111 has quit (Ping timeout: 265 seconds)
1053 2014-11-25 22:35:55 PK has quit ()
1054 2014-11-25 22:37:08 weilu has quit (Ping timeout: 250 seconds)
1055 2014-11-25 22:42:05 derbumi_ has quit (Quit: derbumi_)
1056 2014-11-25 22:44:11 Elglobo has joined
1057 2014-11-25 22:44:17 KillYourTV has quit (Remote host closed the connection)
1058 2014-11-25 22:45:09 KillYourTV has joined
1059 2014-11-25 22:45:56 Elglobonoob has joined
1060 2014-11-25 22:46:23 JStoker has joined
1061 2014-11-25 22:48:00 pierce has joined
1062 2014-11-25 22:48:23 Elglobo has quit (Ping timeout: 245 seconds)
1063 2014-11-25 22:49:37 aschildbach has quit (Read error: Connection reset by peer)
1064 2014-11-25 22:51:00 OneMiner has quit (Quit: Leaving)
1065 2014-11-25 22:53:06 Dizzle__ has joined
1066 2014-11-25 22:54:01 Dizzle has quit (Disconnected by services)
1067 2014-11-25 22:54:21 Dizzle__ is now known as Dizzle
1068 2014-11-25 22:54:22 Quanttek has quit (Ping timeout: 258 seconds)
1069 2014-11-25 22:54:52 derbumi_ has joined
1070 2014-11-25 22:54:53 Elglobo has joined
1071 2014-11-25 22:55:25 nowan_ has joined
1072 2014-11-25 22:56:09 brianhoffman has quit (Quit: brianhoffman)
1073 2014-11-25 22:56:34 nowan has quit (Ping timeout: 272 seconds)
1074 2014-11-25 22:57:07 derbumi_ has quit (Client Quit)
1075 2014-11-25 22:59:00 kermit has quit (Quit: Leaving.)
1076 2014-11-25 22:59:35 kermit has joined
1077 2014-11-25 22:59:40 upgradeadvice_ has joined
1078 2014-11-25 23:01:35 derbumi_ has joined
1079 2014-11-25 23:01:47 StephJsBitDev has quit (Quit: Textual IRC Client: www.textualapp.com)
1080 2014-11-25 23:02:29 upgradeadvice has quit (Ping timeout: 255 seconds)
1081 2014-11-25 23:02:47 upgradeadvice_ is now known as upgradeadvice
1082 2014-11-25 23:02:59 won9 has joined
1083 2014-11-25 23:03:00 brson has quit (Ping timeout: 255 seconds)
1084 2014-11-25 23:03:07 brson has joined
1085 2014-11-25 23:10:26 neozaru has quit (Remote host closed the connection)
1086 2014-11-25 23:11:23 Guest65152 has joined
1087 2014-11-25 23:11:35 rdn has quit (Ping timeout: 264 seconds)
1088 2014-11-25 23:12:27 cyphase has quit (Ping timeout: 240 seconds)
1089 2014-11-25 23:12:31 phantomcircuit has quit (Ping timeout: 256 seconds)
1090 2014-11-25 23:13:33 agricocb has quit (Quit: Leaving.)
1091 2014-11-25 23:14:09 rdn has joined
1092 2014-11-25 23:14:24 phantomcircuit has joined
1093 2014-11-25 23:15:19 eriksays has quit (Quit: eriksays)
1094 2014-11-25 23:15:31 bifforoni has joined
1095 2014-11-25 23:17:09 OneMiner has joined
1096 2014-11-25 23:19:06 papa2 has quit (Ping timeout: 250 seconds)
1097 2014-11-25 23:21:21 chmod755 has quit (Quit: Leaving)
1098 2014-11-25 23:22:12 user7779078 has quit (Remote host closed the connection)
1099 2014-11-25 23:22:57 user7779078 has joined
1100 2014-11-25 23:24:32 n0n0 has quit (Ping timeout: 255 seconds)
1101 2014-11-25 23:27:23 user7779078 has quit (Ping timeout: 240 seconds)
1102 2014-11-25 23:28:48 DougieBot5000 has quit (Read error: Connection reset by peer)
1103 2014-11-25 23:32:11 papa2 has joined
1104 2014-11-25 23:32:50 GM0127 has joined
1105 2014-11-25 23:32:59 DougieBot5000 has joined
1106 2014-11-25 23:33:23 weilu has joined
1107 2014-11-25 23:35:33 viajero has joined
1108 2014-11-25 23:35:52 go1111111 has joined
1109 2014-11-25 23:36:48 phoenix54 has joined
1110 2014-11-25 23:38:01 weilu has quit (Ping timeout: 256 seconds)
1111 2014-11-25 23:38:35 bitstein has joined
1112 2014-11-25 23:39:27 MKCoin has quit (Quit: Leaving)
1113 2014-11-25 23:39:57 MKCoin has joined
1114 2014-11-25 23:42:47 imfaust has quit (Ping timeout: 240 seconds)
1115 2014-11-25 23:42:48 Pierre_Rochard has quit (Quit: Pierre_Rochard)
1116 2014-11-25 23:44:20 trommy has quit (Ping timeout: 255 seconds)
1117 2014-11-25 23:45:21 agricocb has joined
1118 2014-11-25 23:47:01 tsutsu has left ()
1119 2014-11-25 23:51:25 pewpsewp has quit (Quit: My MacBook has gone to sleep. ZZZzzzâ¦)
1120 2014-11-25 23:51:29 RoboTeddy has joined
1121 2014-11-25 23:52:43 GM0127 has quit (Quit: Leaving)
1122 2014-11-25 23:56:43 bitstein has quit (Quit: My Mac has gone to sleep. ZZZzzzâ¦)