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

Raspberry Pi 2 with 128GB microSD

Summary # 128GB microSD cards work with the Raspeberry Pi 2. The Card # The card in use is a 128GB Kingston SDC10G2/128GBFR Check the file system ‘from factory’, which is exfat ian@ian-laptop:~ $ blkid | grep mmcblk0p1 /dev/mmcblk0p1:... Continue →