ingrownpocket (OP)
Legendary
Offline
Activity: 952
Merit: 1000
|
|
January 25, 2013, 03:27:39 PM Last edit: August 18, 2014, 10:11:37 AM by Carlos L. |
|
...
|
|
|
|
Akka
Legendary
Offline
Activity: 1232
Merit: 1001
|
|
January 25, 2013, 03:34:34 PM |
|
Why? Future reference.
Normally I would post a address if I was asked, but now I want more Information first. What do you need it for?
|
All previous versions of currency will no longer be supported as of this update
|
|
|
tom1
|
|
January 25, 2013, 03:37:35 PM |
|
|
|
|
|
constitution
Newbie
Offline
Activity: 28
Merit: 0
|
|
January 25, 2013, 03:37:43 PM |
|
Why? Future reference.
Normally I would post a address if I was asked, but now I want more Information first. What do you need it for? I agree, whats the purpose of this?
|
|
|
|
Desolator
|
|
January 25, 2013, 03:38:40 PM |
|
If everyone just puts it in their sig, you can just look up their profile and find it. That requires no centralized maintenance.
|
|
|
|
constitution
Newbie
Offline
Activity: 28
Merit: 0
|
|
January 25, 2013, 03:38:59 PM |
|
Phisher site? Do not sign in through that link.
|
|
|
|
tom1
|
|
January 25, 2013, 03:43:23 PM |
|
Phisher site? Do not sign in through that link. What?
|
|
|
|
herzmeister
Legendary
Offline
Activity: 1764
Merit: 1007
|
|
January 25, 2013, 04:36:07 PM |
|
I knew about that, but, is there any way to export the list?
|
|
|
|
Akka
Legendary
Offline
Activity: 1232
Merit: 1001
|
|
January 25, 2013, 04:53:01 PM |
|
I knew about that, but, is there any way to export the list?
When I said 'any way to export the list', I meant a nice and round button to click and download a file, or, a JSON response. If not, well, I'll go ahead and code a script for this task. And since I don't need the list for at-least the next 2 weeks, I though about asking that and save some time. Mark all --> Copy --> Paste in Excel --> Save as CSV and that's my non developer solution. Edit: Ohh, what the... I mailed you the csv
|
All previous versions of currency will no longer be supported as of this update
|
|
|
Akka
Legendary
Offline
Activity: 1232
Merit: 1001
|
|
January 25, 2013, 05:12:42 PM |
|
Thanks, I appreciate your help. Does your solution update automatically whenever a new entry is added?
Yes, when ever you reaped my solution, you end up with a updated list
|
All previous versions of currency will no longer be supported as of this update
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3486
Merit: 4832
|
|
January 25, 2013, 05:26:12 PM |
|
. . . all bitcointalk.org users and their respective bitcoin address . . .
I have a few thousand addresses. How many of them do you want? Note, that since I never re-use an address, no addresses that I've used before or am currently using will ever be used again in the future. Do you want me to come back here and update the list every time I send or receive any bitcoins in the future? That seems like quite a hassle. I'm not sure I want to make that sort of effort unless you are going to compensate me for the inconvenience.
|
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3486
Merit: 4832
|
|
January 25, 2013, 06:34:40 PM |
|
Mark all --> Copy --> Paste in Excel --> Save as CSV
and that's my non developer solution.
Edit: Ohh, what the... I mailed you the csv
If you are looking for something a bit less manual and want to keep it updated on a regular basis, the following should work on any system that has curl and sed: curl "https://blockchain.info/tags?filter=2" 2>/dev/null |sed -n -e 's:[ ^I]*<td><[^>]*>\(.*\)<[^>]*></td>[ ^I]*:"\1",:p' -e 's:.*</tr>.*:#:p' |tr '\n' ' ' |tr '#' '\n' |sed -e 's:^ *::' -e 's:, *$::' >myfile.csv
Schedule it with a crontab and you should have a regularly updated csv with the information from blockchain.info
|
|
|
|
SgtSpike
Legendary
Offline
Activity: 1400
Merit: 1005
|
|
January 25, 2013, 08:44:09 PM |
|
Mark all --> Copy --> Paste in Excel --> Save as CSV
and that's my non developer solution.
Edit: Ohh, what the... I mailed you the csv
If you are looking for something a bit less manual and want to keep it updated on a regular basis, the following should work on any system that has curl and sed: curl "https://blockchain.info/tags?filter=2" 2>/dev/null |sed -n -e 's:[ ^I]*<td><[^>]*>\(.*\)<[^>]*></td>[ ^I]*:"\1",:p' -e 's:.*</tr>.*:#:p' |tr '\n' ' ' |tr '#' '\n' |sed -e 's:^ *::' -e 's:, *$::' >myfile.csv
Schedule it with a crontab and you should have a regularly updated csv with the information from blockchain.info I'm going to contact you next time I want to web-crawl. My last solution involved PHP and cURL, but the one before that involved Excel, VBA, and IE. Neither were pretty.
|
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3486
Merit: 4832
|
|
January 25, 2013, 09:05:51 PM |
|
If you are looking for something a bit less manual and want to keep it updated on a regular basis, the following should work on any system that has curl and sed: curl "https://blockchain.info/tags?filter=2" 2>/dev/null |sed -n -e 's:[ ^I]*<td><[^>]*>\(.*\)<[^>]*></td>[ ^I]*:"\1",:p' -e 's:.*</tr>.*:#:p' |tr '\n' ' ' |tr '#' '\n' |sed -e 's:^ *::' -e 's:, *$::' >myfile.csv
Schedule it with a crontab and you should have a regularly updated csv with the information from blockchain.info I'm going to contact you next time I want to web-crawl. My last solution involved PHP and cURL, but the one before that involved Excel, VBA, and IE. Neither were pretty. This wasn't pretty either. It was just thrown together quickly. I add too many commas and spaces have to run through two extra substitutions at the end to strip them back out. It isn't flexible and if blockchain.info changes the output at all (adding or removing newlines, changing the tags to upper case, etc.) then it won't work. But it's a good starting point.
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
January 25, 2013, 09:11:38 PM Last edit: January 25, 2013, 09:30:04 PM by K1773R |
|
interested in a rainbow table with 46953865 addresses? lol EDIT: in case someone ask me for the rainbow table, no i wont sell it since this would make me a thief and im a honest guy
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3486
Merit: 4832
|
|
January 25, 2013, 09:14:19 PM |
|
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?
|
|
|
|
dree12
Legendary
Offline
Activity: 1246
Merit: 1078
|
|
January 25, 2013, 09:16:27 PM |
|
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys? That can easily be stored on modern hard disks.
|
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3486
Merit: 4832
|
|
January 25, 2013, 09:17:29 PM |
|
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys? That can easily be stored on modern hard disks. Certainly, but wouldn't you first need to figure out what they are?
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
January 25, 2013, 09:19:30 PM |
|
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys? i said keypair, so yes. created a simple rainbow table for a friend to show him how insecure brainwallets are with easy passwords... he was like wtf EDIT: i found keypairs owned by others who used silly password in combination with a brainwallet too, altough i didnt touch them. it was just a proof of concept if anyone wonders.
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
Akka
Legendary
Offline
Activity: 1232
Merit: 1001
|
|
January 25, 2013, 09:21:25 PM |
|
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys? That can easily be stored on modern hard disks. Certainly, but wouldn't you first need to figure out what they are? Guys, that are probably all addresses that have been used yet, and they are already stored on your hard drive, the file is called blk000x.dat
|
All previous versions of currency will no longer be supported as of this update
|
|
|
|