Download Satoshi’s post history

Here’s a simple bash script to download the entire history of Satoshi’s posts on bitcointalk.org

#!/bin/sh
# Fetch all posts by satoshi on bitcoin forum bitcointalk.org
PAGES=27
POSTS_PER_PAGE=20
LAST_PAGE=`expr $PAGES - 1`
for INDEX in `seq 0 $LAST_PAGE`; do
    START=$(($INDEX * $POSTS_PER_PAGE))
    PAGE=`expr $INDEX + 1`
    URL="https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=$START"
    # Fetch the page
    wget -O posts_$PAGE.html $URL
    # Be a good citizen of the internet
    sleep 1
done

Now you can use standard operating system tools to search instead of the terrible web-based search which is rate limited and feature limited.

 
2
Kudos
 
2
Kudos

Now read this

Javascript object identities

When two things aren’t equal, but then sometimes are. This is javascript. Easy start # Just to get us in the mood key1 = 3 key2 = 3 key1 == key2 // obviously true Equality of objects is a bit more unusual key1 = [1,2,3] key2 = [1,2,3]... Continue →