Bitcoin Forum
May 06, 2024, 01:56:09 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: ...  (Read 1425 times)
ingrownpocket (OP)
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


View Profile
...
January 25, 2013, 03:27:39 PM
Last edit: August 18, 2014, 10:11:37 AM by Carlos L.
 #1

...
1715003769
Hero Member
*
Offline Offline

Posts: 1715003769

View Profile Personal Message (Offline)

Ignore
1715003769
Reply with quote  #2

1715003769
Report to moderator
1715003769
Hero Member
*
Offline Offline

Posts: 1715003769

View Profile Personal Message (Offline)

Ignore
1715003769
Reply with quote  #2

1715003769
Report to moderator
1715003769
Hero Member
*
Offline Offline

Posts: 1715003769

View Profile Personal Message (Offline)

Ignore
1715003769
Reply with quote  #2

1715003769
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715003769
Hero Member
*
Offline Offline

Posts: 1715003769

View Profile Personal Message (Offline)

Ignore
1715003769
Reply with quote  #2

1715003769
Report to moderator
1715003769
Hero Member
*
Offline Offline

Posts: 1715003769

View Profile Personal Message (Offline)

Ignore
1715003769
Reply with quote  #2

1715003769
Report to moderator
Akka
Legendary
*
Offline Offline

Activity: 1232
Merit: 1001



View Profile
January 25, 2013, 03:34:34 PM
 #2


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
Full Member
***
Offline Offline

Activity: 130
Merit: 100



View Profile
January 25, 2013, 03:37:35 PM
 #3

https://blockchain.info/tags?filter=2

constitution
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
January 25, 2013, 03:37:43 PM
 #4


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
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250



View Profile
January 25, 2013, 03:38:40 PM
 #5

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 Offline

Activity: 28
Merit: 0



View Profile
January 25, 2013, 03:38:59 PM
 #6


Phisher site? Do not sign in through that link.
tom1
Full Member
***
Offline Offline

Activity: 130
Merit: 100



View Profile
January 25, 2013, 03:43:23 PM
 #7

What?

herzmeister
Legendary
*
Offline Offline

Activity: 1764
Merit: 1007



View Profile WWW
January 25, 2013, 04:36:07 PM
 #8

I knew about that, but, is there any way to export the list?

Quote

 Huh

https://localbitcoins.com/?ch=80k | BTC: 1LJvmd1iLi199eY7EVKtNQRW3LqZi8ZmmB
Akka
Legendary
*
Offline Offline

Activity: 1232
Merit: 1001



View Profile
January 25, 2013, 04:53:01 PM
 #9

I knew about that, but, is there any way to export the list?

Quote

 Huh

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 Offline

Activity: 1232
Merit: 1001



View Profile
January 25, 2013, 05:12:42 PM
 #10

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  Grin

All previous versions of currency will no longer be supported as of this update
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
January 25, 2013, 05:26:12 PM
 #11

. . . 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 Offline

Activity: 3388
Merit: 4616



View Profile
January 25, 2013, 06:34:40 PM
 #12

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:

Code:
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 Offline

Activity: 1400
Merit: 1005



View Profile
January 25, 2013, 08:44:09 PM
 #13

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:

Code:
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 Offline

Activity: 3388
Merit: 4616



View Profile
January 25, 2013, 09:05:51 PM
 #14

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:
Code:
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 Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
January 25, 2013, 09:11:38 PM
Last edit: January 25, 2013, 09:30:04 PM by K1773R
 #15

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 Wink

[GPG Public Key]
BTC/DVC/TRC/FRC: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
January 25, 2013, 09:14:19 PM
 #16

interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?
dree12
Legendary
*
Offline Offline

Activity: 1246
Merit: 1077



View Profile
January 25, 2013, 09:16:27 PM
 #17

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 Offline

Activity: 3388
Merit: 4616



View Profile
January 25, 2013, 09:17:29 PM
 #18

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 Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
January 25, 2013, 09:19:30 PM
 #19

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 Cheesy

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: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
Akka
Legendary
*
Offline Offline

Activity: 1232
Merit: 1001



View Profile
January 25, 2013, 09:21:25 PM
 #20

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
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!