--- Log opened Thu Dec 15 00:00:39 2016 00:11 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-wizards 00:20 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-wizards 00:21 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 252 seconds] 00:27 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Read error: Connection reset by peer] 00:35 < JackH> and its Python, sweet 00:40 -!- Alina-malina [~Alina-mal@unaffiliated/alina-malina] has quit [Ping timeout: 258 seconds] 00:45 -!- LeMiner [~LeMiner@unaffiliated/leminer] has joined #bitcoin-wizards 01:12 -!- Alina-malina [~Alina-mal@37.157.216.188] has joined #bitcoin-wizards 01:14 -!- laurentmt [~Thunderbi@80.215.210.28] has joined #bitcoin-wizards 01:14 -!- laurentmt [~Thunderbi@80.215.210.28] has quit [Client Quit] 01:15 -!- Alina-malina [~Alina-mal@37.157.216.188] has quit [Changing host] 01:15 -!- Alina-malina [~Alina-mal@unaffiliated/alina-malina] has joined #bitcoin-wizards 01:25 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-cmdnkqjweucnuike] has joined #bitcoin-wizards 01:37 -!- PaulCapestany [~PaulCapes@2604:5500:17:2ea:80ba:b743:538a:b5ae] has quit [Quit: .] 01:38 -!- abpa [~abpa@107-131-125-191.lightspeed.sntcca.sbcglobal.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz...] 01:42 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has quit [Read error: Connection reset by peer] 01:43 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 01:54 -!- PaulCapestany [~PaulCapes@2604:5500:17:2ea:e531:2902:9583:e521] has joined #bitcoin-wizards 02:17 -!- Cory [~Cory@unaffiliated/cory] has joined #bitcoin-wizards 02:19 -!- cannon-c [ccc23f04@gateway/web/freenode/ip.204.194.63.4] has joined #bitcoin-wizards 02:29 -!- rusty2 [~rusty@pdpc/supporter/bronze/rusty] has joined #bitcoin-wizards 02:34 -!- windsok [~windsok@45.63.59.8] has quit [Ping timeout: 250 seconds] 02:37 < petertodd> JackH: it also has some reaslly powerful pruning mechanisms 02:38 < petertodd> JackH: basically, you can prune a k:v tree, access a few keys, then extract from that tree *only* the data needed to prove those keys do (or do not!) exist in the tree 02:39 < petertodd> JackH: behind the scenes this is done with a bunch of python getattr magic, and pruning-supporting serialization 02:39 < petertodd> JackH: I think it's the most natural way to handle proof extraction that I've ever seen 02:41 -!- superkuh [~superkuh@unaffiliated/superkuh] has quit [Ping timeout: 265 seconds] 02:44 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 02:45 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-wizards 02:46 < waxwing> huh, this is interesting, so you can prove non-membership of a key in the tree? how compact is that? 02:48 -!- gellertgrindel [~user@gateway/tor-sasl/gellertgrindel] has joined #bitcoin-wizards 02:48 < petertodd> /away 02:48 -!- CrazyLoaf [uid67551@gateway/web/irccloud.com/x-frnbcpxpqjfkcigx] has joined #bitcoin-wizards 02:49 < petertodd> waxwing: O(log2 n) 02:49 < petertodd> waxwing: basically, you just need to show that when you go down the tree in the particular path defined by the key, that path doesn't end in that key 02:49 < petertodd> that's why it's a k:v tree rather than just a merkle tree 02:49 < waxwing> thanks, reading. 02:51 < JackH> yeah what is interesting here is that its k:v based from my point of view 02:53 -!- laurentmt [~Thunderbi@80.215.178.151] has joined #bitcoin-wizards 02:53 -!- laurentmt [~Thunderbi@80.215.178.151] has quit [Client Quit] 02:53 < JackH> how do you handle multiple attributes that Python offers with getattr 02:53 < JackH> is that supported ? 02:54 -!- fletom [~fletom@159.203.37.109] has quit [Quit: Ping timeout (120 seconds)] 02:55 -!- MoALTz [~no@77-254-9-16.adsl.inetia.pl] has joined #bitcoin-wizards 02:57 < petertodd> JackH: what do you mean by multiple ttributes? 02:58 < JackH> so for example 02:58 < JackH> we create this: 02:58 < JackH> a = ["bob", "alice"] 02:59 < JackH> and then getattr(a, "append")("joe") 02:59 < JackH> basically multiple values for a key 02:59 < petertodd> how is that multiple values for a key? you're getting "append" - a function - and calling it with "joe" 03:00 < petertodd> to be exact, I mean the magic is done with the special function __getattr__ 03:00 < JackH> ah no, so in this example I add joe 03:00 < petertodd> *special classfunction 03:00 < JackH> hmm I need to read up on this in Python 03:00 < petertodd> yeah, I think you're misunderstanding something 03:00 < petertodd> also read the source code for python-proofmarshal and how pruning works 03:01 < petertodd> the unittests are good for understanding all this 03:01 < JackH> ahh, this is why I misunderstood: http://stackoverflow.com/questions/1944625/what-is-the-relationship-between-getattr-and-getattr 03:02 < petertodd> yup 03:03 < petertodd> basically, what's going on under the hood with __getattr__ is a pruned object is just an object with all attributes removed, and as they are accessed, setattr is used to put them back one by one, marking them as needed (unpruned) 03:04 -!- BashCo_ [~BashCo@unaffiliated/bashco] has joined #bitcoin-wizards 03:04 < petertodd> note that when I say attributes there, I'm referring to a pre-defined per-class list that defines the attribute name and type - aka how its serialized 03:06 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 246 seconds] 03:14 -!- superkuh [~superkuh@unaffiliated/superkuh] has joined #bitcoin-wizards 03:20 -!- rusty2 [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 268 seconds] 03:22 -!- laurentmt [~Thunderbi@80.215.178.151] has joined #bitcoin-wizards 03:22 -!- laurentmt [~Thunderbi@80.215.178.151] has quit [Client Quit] 03:28 -!- rusty2 [~rusty@pdpc/supporter/bronze/rusty] has joined #bitcoin-wizards 03:30 -!- windsok [~windsok@45.63.59.8] has joined #bitcoin-wizards 03:36 -!- rusty2 [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 256 seconds] 03:42 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 258 seconds] 03:43 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-wizards 03:59 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has quit [Quit: No Ping reply in 180 seconds.] 04:01 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 04:07 -!- Muis [sid26074@gateway/web/irccloud.com/x-yroltwheqefaxbuz] has quit [Ping timeout: 258 seconds] 04:07 -!- runeks [sid21167@gateway/web/irccloud.com/x-oyhzhtblsdyjnbol] has quit [Ping timeout: 258 seconds] 04:07 -!- jtremback____ [sid67723@gateway/web/irccloud.com/x-updldiyzhkccsuuk] has joined #bitcoin-wizards 04:07 -!- jtremback___ [sid67723@gateway/web/irccloud.com/x-nobwhwiwpilgxgfj] has quit [Ping timeout: 258 seconds] 04:08 -!- _flow__ [flow@star.geekplace.eu] has quit [Ping timeout: 258 seconds] 04:08 -!- sn0wmonster [~yeti@taskhive/developer/sn0wmonster] has quit [Ping timeout: 258 seconds] 04:23 -!- _flow__ [flow@star.geekplace.eu] has joined #bitcoin-wizards 04:25 -!- hashtag [~hashtagg_@cpe-174-97-254-80.ma.res.rr.com] has joined #bitcoin-wizards 04:40 -!- sn0wmonster [~yeti@taskhive/developer/sn0wmonster] has joined #bitcoin-wizards 05:09 -!- alpalp [~allen@cpe-24-27-58-209.austin.res.rr.com] has joined #bitcoin-wizards 05:09 -!- alpalp [~allen@cpe-24-27-58-209.austin.res.rr.com] has quit [Changing host] 05:09 -!- alpalp [~allen@unaffiliated/alpalp] has joined #bitcoin-wizards 05:17 -!- BashCo_ [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 258 seconds] 05:19 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-wizards 05:25 -!- BashCo_ [~BashCo@unaffiliated/bashco] has joined #bitcoin-wizards 05:29 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Quit: WeeChat 0.4.2] 05:29 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 258 seconds] 05:31 -!- Sosumi [~Leon@bl10-113-190.dsl.telepac.pt] has joined #bitcoin-wizards 05:32 -!- laurentmt [~Thunderbi@80.215.138.21] has joined #bitcoin-wizards 05:32 -!- Giszmo [~leo@pc-40-227-45-190.cm.vtr.net] has joined #bitcoin-wizards 05:34 -!- laurentmt [~Thunderbi@80.215.138.21] has quit [Client Quit] 05:36 -!- cannon-c [ccc23f04@gateway/web/freenode/ip.204.194.63.4] has quit [Quit: Page closed] 05:38 -!- rhett [~rhett@c-73-223-86-218.hsd1.ca.comcast.net] has quit [Quit: Leaving] 05:41 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-wizards 05:45 -!- windsok [~windsok@45.63.59.8] has quit [Ping timeout: 268 seconds] 05:46 -!- devylon [~devylon@HSI-KBW-095-208-024-121.hsi5.kabel-badenwuerttemberg.de] has quit [Quit: Lingo: www.lingoirc.com] 05:47 -!- venzen_ [~venzen@5.255.87.141] has quit [Quit: Reconnecting] 05:47 -!- venzen [~venzen@5.255.87.141] has joined #bitcoin-wizards 05:49 -!- ThomasV [~ThomasV@x4e33d3b6.dyn.telefonica.de] has joined #bitcoin-wizards 05:49 -!- ThomasV [~ThomasV@x4e33d3b6.dyn.telefonica.de] has quit [Changing host] 05:49 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-wizards 05:53 -!- pro [~pro@unaffiliated/pro] has joined #bitcoin-wizards 06:00 -!- shesek [~shesek@bzq-84-110-55-170.cablep.bezeqint.net] has joined #bitcoin-wizards 06:04 -!- runeks [sid21167@gateway/web/irccloud.com/x-apqqtivoogpxwzgs] has joined #bitcoin-wizards 06:04 -!- Muis [sid26074@gateway/web/irccloud.com/x-uuuvvmliawvwfaqh] has joined #bitcoin-wizards 06:09 -!- MoALTz_ [~no@77-254-9-16.adsl.inetia.pl] has joined #bitcoin-wizards 06:10 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 268 seconds] 06:12 -!- MoALTz [~no@77-254-9-16.adsl.inetia.pl] has quit [Ping timeout: 248 seconds] 06:18 -!- MoALTz_ is now known as MoALTz 06:25 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-wizards 06:28 -!- CrazyLoaf [uid67551@gateway/web/irccloud.com/x-frnbcpxpqjfkcigx] has quit [Quit: Connection closed for inactivity] 06:56 -!- windsok [~windsok@45.63.59.8] has joined #bitcoin-wizards 07:01 -!- NewLiberty_ [~NewLibert@2602:306:b8e0:8160:6167:948c:e1b4:50d8] has joined #bitcoin-wizards 07:03 -!- NewLiberty [~NewLibert@2602:306:b8e0:8160:c458:5704:b203:9721] has quit [Ping timeout: 258 seconds] 07:03 -!- NewLiberty_ is now known as NewLiberty 07:27 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 250 seconds] 07:27 -!- CrazyLoaf [uid67551@gateway/web/irccloud.com/x-zigpdelyqyjbzxer] has joined #bitcoin-wizards 07:29 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-wizards 07:58 -!- abpa [~abpa@2602:306:b837:dbf0:bcaf:9c30:6db3:71d5] has joined #bitcoin-wizards 07:59 -!- abpa [~abpa@2602:306:b837:dbf0:bcaf:9c30:6db3:71d5] has quit [Client Quit] 08:00 -!- laurentmt [~Thunderbi@80.215.138.21] has joined #bitcoin-wizards 08:04 -!- laurentmt [~Thunderbi@80.215.138.21] has quit [Client Quit] 08:20 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 248 seconds] 08:29 -!- laurentmt [~Thunderbi@80.215.138.21] has joined #bitcoin-wizards 08:31 -!- laurentmt [~Thunderbi@80.215.138.21] has quit [Client Quit] 08:32 -!- ipwn__ [~ipwn@bl18-232-89.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 08:37 -!- LeMiner [~LeMiner@unaffiliated/leminer] has quit [Read error: Connection reset by peer] 08:49 -!- abpa [~abpa@96-82-80-25-static.hfc.comcastbusiness.net] has joined #bitcoin-wizards 08:54 -!- laurentmt [~Thunderbi@80.215.138.21] has joined #bitcoin-wizards 08:55 -!- jtimon [~quassel@231.110.132.37.dynamic.jazztel.es] has joined #bitcoin-wizards 08:59 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-wizards 09:01 -!- laurentmt [~Thunderbi@80.215.138.21] has quit [Quit: laurentmt] 09:03 -!- windsok [~windsok@45.63.59.8] has quit [Ping timeout: 250 seconds] 09:05 -!- wasi [~wasi@gateway/tor-sasl/wasi] has quit [Ping timeout: 245 seconds] 09:05 -!- aem [AEM@gateway/shell/elitebnc/x-dnpghrdgkpytcflz] has quit [Remote host closed the connection] 09:08 -!- wasi [~wasi@gateway/tor-sasl/wasi] has joined #bitcoin-wizards 09:11 -!- laurentmt [~Thunderbi@80.215.138.21] has joined #bitcoin-wizards 09:12 -!- se3000 [~textual@38.125.163.25] has joined #bitcoin-wizards 09:17 -!- AEM [AEM@gateway/shell/elitebnc/x-ajqtjzpnqcpyxgwf] has joined #bitcoin-wizards 09:18 -!- laurentmt [~Thunderbi@80.215.138.21] has quit [Remote host closed the connection] 09:19 -!- laurentmt [~Thunderbi@80.215.138.21] has joined #bitcoin-wizards 09:21 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 265 seconds] 09:24 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has quit [Quit: No Ping reply in 180 seconds.] 09:25 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 09:28 -!- instagibbs [~instagibb@pool-100-15-114-3.washdc.fios.verizon.net] has quit [Ping timeout: 256 seconds] 09:30 -!- Topogetcyrpto_ [~Topogetcy@41.141.245.244] has joined #bitcoin-wizards 09:33 -!- Topogetcyrpto [~Topogetcy@105.157.80.84] has quit [Ping timeout: 268 seconds] 09:33 -!- Topogetcyrpto_ is now known as Topogetcyrpto 09:38 -!- instagibbs [~instagibb@pool-100-15-114-3.washdc.fios.verizon.net] has joined #bitcoin-wizards 09:40 -!- airbreather_ [~airbreath@d149-67-99-43.nap.wideopenwest.com] has joined #bitcoin-wizards 09:43 -!- airbreather [~airbreath@d149-67-99-43.nap.wideopenwest.com] has quit [Ping timeout: 250 seconds] 09:46 -!- windsok [~windsok@45.63.59.8] has joined #bitcoin-wizards 09:46 -!- laurentmt [~Thunderbi@80.215.138.21] has quit [Quit: laurentmt] 09:48 -!- CrazyLoaf [uid67551@gateway/web/irccloud.com/x-zigpdelyqyjbzxer] has quit [Quit: Connection closed for inactivity] 09:48 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-wizards 09:50 -!- windsok [~windsok@45.63.59.8] has quit [Ping timeout: 250 seconds] 09:52 -!- windsok [~windsok@45.63.59.8] has joined #bitcoin-wizards 09:52 -!- ipwn [~ipwn@bl18-232-89.dsl.telepac.pt] has joined #bitcoin-wizards 10:02 -!- aalex [~aalex@64.187.177.58] has quit [Read error: Connection reset by peer] 10:02 -!- aalex [~aalex@64.187.177.58] has joined #bitcoin-wizards 10:03 -!- gellertgrindel [~user@gateway/tor-sasl/gellertgrindel] has quit [Quit: WeeChat 1.0.1] 10:03 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has quit [Ping timeout: 260 seconds] 10:05 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 10:09 -!- BashCo_ [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 10:22 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has quit [Ping timeout: 260 seconds] 10:22 -!- maaku_ [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 10:29 -!- se3000 [~textual@38.125.163.25] has quit [Quit: My iMac has gone to sleep. ZZZzzz...] 10:34 -!- igno_peverell [~igno_pev@gateway/tor-sasl/ignopeverell/x-86067662] has joined #bitcoin-wizards 10:34 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 250 seconds] 10:38 -!- abpa [~abpa@96-82-80-25-static.hfc.comcastbusiness.net] has quit [Read error: Connection reset by peer] 10:38 -!- abpa [~abpa@96-82-80-25-static.hfc.comcastbusiness.net] has joined #bitcoin-wizards 10:46 -!- priidu [~priidu@unaffiliated/priidu] has joined #bitcoin-wizards 10:50 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-wizards 10:55 -!- menix01 [dsax@79.113.94.140] has joined #bitcoin-wizards 10:56 < menix01> Bitsler,Primedice bot soft pm me! 11:03 -!- mode/#bitcoin-wizards [+o phantomcircuit] by ChanServ 11:03 -!- mode/#bitcoin-wizards [+b *!*@79.113.94.140] by phantomcircuit 11:03 -!- menix01 was kicked from #bitcoin-wizards by phantomcircuit [menix01] 11:04 -!- mode/#bitcoin-wizards [-o phantomcircuit] by ChanServ 11:04 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has joined #bitcoin-wizards 11:13 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has joined #bitcoin-wizards 11:17 -!- gribble [~gribble@unaffiliated/nanotube/bot/gribble] has quit [Ping timeout: 264 seconds] 11:24 < fluffypony> no. 11:30 -!- pro [~pro@unaffiliated/pro] has quit [Quit: Leaving] 11:32 -!- droark [~droark@c-24-22-123-27.hsd1.or.comcast.net] has joined #bitcoin-wizards 11:38 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 258 seconds] 11:46 -!- pro [~pro@unaffiliated/pro] has joined #bitcoin-wizards 11:53 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has quit [Quit: Newyorkadam] 11:53 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has joined #bitcoin-wizards 11:53 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has quit [Client Quit] 11:54 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has joined #bitcoin-wizards 11:54 -!- maaku_ [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has quit [Quit: No Ping reply in 180 seconds.] 11:54 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has quit [Client Quit] 11:55 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has joined #bitcoin-wizards 11:55 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has quit [Client Quit] 11:55 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has joined #bitcoin-wizards 11:56 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 11:56 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has quit [Client Quit] 11:56 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has joined #bitcoin-wizards 11:57 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has quit [Client Quit] 11:57 -!- gribble [~gribble@unaffiliated/nanotube/bot/gribble] has joined #bitcoin-wizards 12:21 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-wizards 12:31 -!- abpa [~abpa@96-82-80-25-static.hfc.comcastbusiness.net] has quit [Ping timeout: 258 seconds] 12:31 -!- droark [~droark@c-24-22-123-27.hsd1.or.comcast.net] has quit [Ping timeout: 248 seconds] 12:41 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has quit [Quit: zzz] 12:42 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has joined #bitcoin-wizards 12:43 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-wizards 13:05 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has quit [Quit: irc] 13:06 -!- abpa [~abpa@96-82-80-25-static.hfc.comcastbusiness.net] has joined #bitcoin-wizards 13:08 -!- ipwn [~ipwn@bl18-232-89.dsl.telepac.pt] has quit [Ping timeout: 248 seconds] 13:09 -!- ipwn [~ipwn@bl18-232-89.dsl.telepac.pt] has joined #bitcoin-wizards 13:26 -!- crescendo [~mozart@unaffiliated/crescendo] has joined #bitcoin-wizards 13:28 -!- Sosumi [~Leon@bl10-113-190.dsl.telepac.pt] has quit [Quit: Bye] 13:33 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-wizards 13:38 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Client Quit] 13:44 -!- psztorc [~Thunderbi@ool-4575fa8d.dyn.optonline.net] has joined #bitcoin-wizards 13:53 -!- Noldorin [~noldorin@unaffiliated/noldorin] has joined #bitcoin-wizards 14:08 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 240 seconds] 14:08 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 14:11 -!- igno_peverell_ [~igno_pev@gateway/tor-sasl/ignopeverell/x-86067662] has joined #bitcoin-wizards 14:13 -!- igno_peverell [~igno_pev@gateway/tor-sasl/ignopeverell/x-86067662] has quit [Ping timeout: 245 seconds] 14:14 -!- Taek [~quassel@2001:41d0:1:472e::] has quit [Ping timeout: 258 seconds] 14:19 -!- Taek [~quassel@2001:41d0:1:472e::] has joined #bitcoin-wizards 14:22 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has joined #bitcoin-wizards 14:31 -!- abpa [~abpa@96-82-80-25-static.hfc.comcastbusiness.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz...] 14:39 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has quit [Quit: irc] 14:51 -!- n8wachT [~n8wachT@233-29-144-85.ftth.glasoperator.nl] has joined #bitcoin-wizards 14:52 -!- n8wachT [~n8wachT@233-29-144-85.ftth.glasoperator.nl] has quit [Read error: Connection reset by peer] 14:52 -!- n8wachT [~n8wachT@233-29-144-85.ftth.glasoperator.nl] has joined #bitcoin-wizards 15:03 -!- gsdgdfs [~Trans@188.172.214.208] has joined #bitcoin-wizards 15:04 -!- Transisto2 [~Trans@modemcable017.144-178-173.mc.videotron.ca] has quit [Ping timeout: 268 seconds] 15:12 -!- psztorc [~Thunderbi@ool-4575fa8d.dyn.optonline.net] has quit [Quit: psztorc] 15:13 -!- psztorc [~Thunderbi@ool-4575fa8d.dyn.optonline.net] has joined #bitcoin-wizards 15:28 -!- wasi [~wasi@gateway/tor-sasl/wasi] has quit [Remote host closed the connection] 15:34 -!- MoALTz [~no@77-254-9-16.adsl.inetia.pl] has quit [Quit: Leaving] 15:34 -!- JackH [~laptop@79-73-185-145.dynamic.dsl.as9105.com] has quit [Quit: Leaving] 15:36 -!- rusty2 [~rusty@pdpc/supporter/bronze/rusty] has joined #bitcoin-wizards 16:04 -!- wasi [~wasi@gateway/tor-sasl/wasi] has joined #bitcoin-wizards 16:12 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has joined #bitcoin-wizards 16:18 -!- PRab_ [~chatzilla@c-68-62-95-247.hsd1.mi.comcast.net] has quit [Quit: ChatZilla 0.9.93 [Firefox 50.0.2/20161129173726]] 16:18 -!- PRab [~chatzilla@c-68-62-95-247.hsd1.mi.comcast.net] has quit [Quit: ChatZilla 0.9.93 [Firefox 50.0.2/20161129173726]] 16:19 -!- PRab [~chatzilla@c-68-62-95-247.hsd1.mi.comcast.net] has joined #bitcoin-wizards 16:34 -!- rusty2 [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 260 seconds] 16:39 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has quit [Quit: zzz] 16:42 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has joined #bitcoin-wizards 16:44 -!- Yogh [~Yogh@f36186.upc-f.chello.nl] has joined #bitcoin-wizards 16:47 -!- psztorc [~Thunderbi@ool-4575fa8d.dyn.optonline.net] has quit [Remote host closed the connection] 16:47 -!- psztorc [~Thunderbi@ool-4575fa8d.dyn.optonline.net] has joined #bitcoin-wizards 17:07 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has quit [Quit: No Ping reply in 180 seconds.] 17:09 -!- maaku [~quassel@173-228-107-141.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 17:13 -!- nikivi [~nikivi@dhcp-077-250-172-150.chello.nl] has quit [Quit: irc] 17:21 -!- NewLiberty_ [~NewLibert@2602:306:b8e0:8160:659c:ab22:a1bc:7048] has joined #bitcoin-wizards 17:23 -!- NewLiberty [~NewLibert@2602:306:b8e0:8160:6167:948c:e1b4:50d8] has quit [Ping timeout: 258 seconds] 17:29 -!- bitstein [~bitstein@unaffiliated/bitstein] has joined #bitcoin-wizards 17:30 -!- bitstein [~bitstein@unaffiliated/bitstein] has quit [Client Quit] 17:53 -!- priidu [~priidu@unaffiliated/priidu] has quit [Ping timeout: 245 seconds] 18:17 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-cmdnkqjweucnuike] has quit [Quit: Connection closed for inactivity] 18:21 -!- jtimon [~quassel@231.110.132.37.dynamic.jazztel.es] has quit [Ping timeout: 256 seconds] 18:26 -!- gellertgrindel [~user@gateway/tor-sasl/gellertgrindel] has joined #bitcoin-wizards 18:26 -!- Noldorin [~noldorin@unaffiliated/noldorin] has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz...] 18:27 -!- hashtag_ [~hashtagg_@cpe-174-97-254-80.ma.res.rr.com] has joined #bitcoin-wizards 18:29 -!- hashtag [~hashtagg_@cpe-174-97-254-80.ma.res.rr.com] has quit [Ping timeout: 256 seconds] 18:31 -!- alpalp [~allen@unaffiliated/alpalp] has quit [Ping timeout: 250 seconds] 18:39 -!- alpalp [~allen@unaffiliated/alpalp] has joined #bitcoin-wizards 18:46 -!- alpalp [~allen@unaffiliated/alpalp] has quit [Ping timeout: 260 seconds] 18:47 -!- alpalp [~allen@unaffiliated/alpalp] has joined #bitcoin-wizards 18:58 -!- abpa [~abpa@2602:306:b837:dbf0:2057:a981:63b3:9dcd] has joined #bitcoin-wizards 19:16 -!- Alopex [~bitcoin@176.9.70.183] has quit [Remote host closed the connection] 19:18 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-wizards 19:21 -!- uiuc-slack [~uiuc-slac@li175-104.members.linode.com] has quit [Remote host closed the connection] 19:21 -!- uiuc-slack [~uiuc-slac@li175-104.members.linode.com] has joined #bitcoin-wizards 19:23 -!- Kexkey [~kexkey@184.75.212.158] has joined #bitcoin-wizards 19:23 -!- CrazyLoaf [uid67551@gateway/web/irccloud.com/x-zdyyejuifydzmpfy] has joined #bitcoin-wizards 19:27 -!- uiuc-slack1 [~uiuc-slac@li175-104.members.linode.com] has joined #bitcoin-wizards 19:27 -!- uiuc-slack [~uiuc-slac@li175-104.members.linode.com] has quit [Read error: Connection reset by peer] 19:27 -!- amiller [~socrates1@unaffiliated/socrates1024] has quit [Read error: Connection reset by peer] 19:35 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 19:35 -!- rusty2 [~rusty@pdpc/supporter/bronze/rusty] has joined #bitcoin-wizards 19:37 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-wizards 19:48 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 19:50 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-wizards 19:56 -!- Kexkey [~kexkey@184.75.212.158] has quit [Remote host closed the connection] 20:00 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 20:02 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-wizards 20:06 -!- alpalp [~allen@unaffiliated/alpalp] has quit [Ping timeout: 264 seconds] 20:50 -!- Burrito [~Burrito@unaffiliated/burrito] has quit [Quit: Leaving] 20:51 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has joined #bitcoin-wizards 20:52 -!- abpa [~abpa@2602:306:b837:dbf0:2057:a981:63b3:9dcd] has quit [Ping timeout: 245 seconds] 21:00 -!- legogris [~legogris@128.199.205.238] has quit [Remote host closed the connection] 21:00 -!- legogris [~legogris@128.199.205.238] has joined #bitcoin-wizards 21:02 -!- Giszmo [~leo@pc-40-227-45-190.cm.vtr.net] has quit [Quit: Leaving.] 21:08 -!- rusty2 [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 252 seconds] 21:10 -!- pro [~pro@unaffiliated/pro] has quit [Quit: Leaving] 21:12 -!- TheSeven [~quassel@rockbox/developer/TheSeven] has quit [Ping timeout: 240 seconds] 21:13 -!- TheSeven [~quassel@rockbox/developer/TheSeven] has joined #bitcoin-wizards 21:31 -!- igno_ [~igno_pev@gateway/tor-sasl/ignopeverell/x-86067662] has joined #bitcoin-wizards 21:35 -!- igno_peverell_ [~igno_pev@gateway/tor-sasl/ignopeverell/x-86067662] has quit [Ping timeout: 245 seconds] 21:37 -!- igno_ [~igno_pev@gateway/tor-sasl/ignopeverell/x-86067662] has quit [Ping timeout: 245 seconds] 21:38 -!- CrazyLoaf [uid67551@gateway/web/irccloud.com/x-zdyyejuifydzmpfy] has quit [Quit: Connection closed for inactivity] 21:41 -!- psztorc [~Thunderbi@ool-4575fa8d.dyn.optonline.net] has quit [Quit: psztorc] 21:57 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-wizards 22:09 -!- Transisto2 [~Trans@modemcable017.144-178-173.mc.videotron.ca] has joined #bitcoin-wizards 22:11 -!- gsdgdfs [~Trans@188.172.214.208] has quit [Ping timeout: 258 seconds] 22:15 -!- Joseph__ [~NewLibert@2602:306:b8e0:8160:659c:ab22:a1bc:7048] has joined #bitcoin-wizards 22:16 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 260 seconds] 22:18 -!- NewLiberty_ [~NewLibert@2602:306:b8e0:8160:659c:ab22:a1bc:7048] has quit [Ping timeout: 258 seconds] 22:22 -!- snthsnth [~snthsnth@c-98-207-208-241.hsd1.ca.comcast.net] has joined #bitcoin-wizards 22:25 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 268 seconds] 22:47 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has quit [Read error: Connection reset by peer] 22:48 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has joined #bitcoin-wizards 22:51 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-wizards 22:51 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-ymwrmbtvguzhzstz] has joined #bitcoin-wizards 22:57 -!- Newyorkadam [~Newyorkad@wikipedia/Newyorkadam] has quit [Quit: Newyorkadam] 23:05 -!- snthsnth [~snthsnth@c-98-207-208-241.hsd1.ca.comcast.net] has quit [Ping timeout: 260 seconds] 23:30 -!- jtimon [~quassel@231.110.132.37.dynamic.jazztel.es] has joined #bitcoin-wizards 23:39 -!- snthsnth [~snthsnth@c-98-207-208-241.hsd1.ca.comcast.net] has joined #bitcoin-wizards 23:48 -!- btcdrak [uid165369@gateway/web/irccloud.com/x-nuxczbthzvhmygpe] has quit [Quit: Connection closed for inactivity] 23:55 -!- ThomasV [~ThomasV@x55b37650.dyn.telefonica.de] has joined #bitcoin-wizards 23:55 -!- ThomasV [~ThomasV@x55b37650.dyn.telefonica.de] has quit [Changing host] 23:55 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-wizards 23:57 -!- gellertg1 [~user@gateway/tor-sasl/gellertgrindel] has joined #bitcoin-wizards 23:59 -!- gellertgrindel [~user@gateway/tor-sasl/gellertgrindel] has quit [Ping timeout: 245 seconds] --- Log closed Fri Dec 16 00:00:40 2016