1 2015-09-12 03:57:25 <User__> Hi I tried to join the developer mailing list but I Haven'
 2 2015-09-12 03:57:31 <User__> received any emails
 3 2015-09-12 04:45:57 <justanotheruser> Then you're probably on the wrong list
 4 2015-09-12 04:46:11 <justanotheruser> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
 5 2015-09-12 04:46:20 <justanotheruser> oh, they're gone
 6 2015-09-12 08:01:12 <prom3th3us> Is there a deep-dive primer somewhere on the relationships/architecture of the files?
 7 2015-09-12 08:01:44 <prom3th3us> I’m reading through the src and I’d love to know if there is a visualization of how objectis communicate with another in a bitcoin instance.
 8 2015-09-12 08:10:02 <prom3th3us> Hmm, found something promising: https://bitcointalk.org/index.php?topic=41718.0. Are there other canonical references similar to that?
 9 2015-09-12 08:41:41 <dcousens_> prom3th3us: if you find anything,  I'd be curious to see it :)
10 2015-09-12 08:42:10 <prom3th3us> dcousens_: Will do.
11 2015-09-12 09:15:03 <deego> When you bitcoin-cli listtransactions "*" 1001231231233 (largenum) in order to obtain *all* transactions, is there a way to avoid this hack?  wouldn't it be nice to have a keyword "all" instead of using a largenum?
12 2015-09-12 09:33:09 <kryo_> hi is this a valid bitcoin address? H3euwa5Mb28rr8cTrPSa8BmFTEASapG5P
13 2015-09-12 09:33:53 <kryo_> i'm guessing the answer is no
14 2015-09-12 09:34:11 <kryo_> i checked it with 2 of the validators on here http://rosettacode.org/wiki/Bitcoin/address_validation
15 2015-09-12 09:34:23 <kryo_> (PHP, C) and both said it's valid
16 2015-09-12 09:48:46 <kryo_> seems like the issue is that most of the code on that page does not check if the address is 25 bytes
17 2015-09-12 09:51:59 <kryo_> how do i check if an address is 25 bytes?
18 2015-09-12 09:52:19 <kryo_> base58 decode and count bytes?
19 2015-09-12 10:10:43 <jonasschnelli> kryo_: check base58check (https://en.bitcoin.it/wiki/Base58Check_encoding)
20 2015-09-12 10:17:51 <kryo_> i came up with this code after looking at some examples: http://pastebin.com/jyzKrdsq
21 2015-09-12 10:17:55 <kryo_> seems to work ok
22 2015-09-12 10:19:05 <kryo_> any comments would be much appreciated
23 2015-09-12 10:20:52 <jonasschnelli> kryo_: your code looks not good. Maybe use a PHP library? https://github.com/Bit-Wasp/bitcoin-lib-php
24 2015-09-12 10:21:32 <kryo_> i would like to be able to update the code on the rosettacode.org site i linked earlier
25 2015-09-12 10:21:54 <kryo_> i don't really need any of the functions provided by that library
26 2015-09-12 10:24:11 <kanzure> btw there is #bitcoin-workshops and streaming video for scalingbitcoin.org is at https://www.youtube.com/channel/UCmwaDulmQtX-H8FOSQTKqMg
27 2015-09-12 10:28:55 <kryo_> jonasschnelli: what don't you like about my code? :P
28 2015-09-12 10:29:41 <jonasschnelli> kryo_: your code don't reflect base58check
29 2015-09-12 10:30:34 <jonasschnelli> if you wan't to check if an address is valid you need to fully implement bitcoins base58check.
30 2015-09-12 10:32:45 <kryo_> jonasschnelli: i only pasted a small part of my code
31 2015-09-12 10:33:07 <kryo_> right now i'm just focused on checking if the address is 25 bytes
32 2015-09-12 10:40:01 <kryo_> don't worry about it if you're busy, i am now using the code from the library you linked in my application
33 2015-09-12 10:40:21 <kryo_> however i think it would be ideal to fix the functions on http://rosettacode.org/wiki/Bitcoin/address_validation
34 2015-09-12 13:43:27 <warren> FYI: #bitcoin-workshops now in progress.
35 2015-09-12 13:47:35 <petertodd> cfields: your bandwidth slide isn't boring; it's cyberpunk badass :P
36 2015-09-12 13:49:23 <jgarzik> cfields, Good talk.  You should talk to me ;p   I switched Bitcoin Core to use poll(2) locally and handled several of these issues
37 2015-09-12 15:09:37 <warren> FYI: #bitcoin-workshops now in progress.  Please see /topic for live streaming link and question submission form.
38 2015-09-12 18:31:48 <ne1l> http://bit.ly/1L8EgL1
39 2015-09-12 19:07:31 <heretolearn> jamesob : which modern language are you hinting at ?
40 2015-09-12 19:09:52 <jamesob> none in particular. go and rust are green but interesting.
41 2015-09-12 19:10:28 <jamesob> after writing python on a daily basis for some years, c++ just feels very unfriendly to work with :)
42 2015-09-12 19:11:42 <bedeho> are there any dust limits on testnet
43 2015-09-12 21:44:58 <anon___> is anyone aware of any pre-configured VMs with a loaded IDE and bitcoin project with all dependencies installed?
44 2015-09-12 21:45:42 <anon___> a VM i can just laucnh and load up elcipse or whatever and start stepping through some code?
45 2015-09-12 21:57:14 <prom3th3us> anon___: If you find an answer, I’d be curious about it as well.
46 2015-09-12 21:57:32 <jamesob> someone could pretty easily write up a Vagrantfile that does that