Do not follow this link

~swaits/hikaru

Monte Carlo simulation of Hikaru Nakamura's chess game history
add github mirror
feat: change draw probability function
feat: initial implementation

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~swaits/hikaru
read/write
git@git.sr.ht:~swaits/hikaru

You can also use your local clone with git send-email.

This is a hacked together Monte Carlo simulation of Hikaru's chess.com games.

For details, please see the accompanying blog post.

This repo does not include data. To fetch it, you'll need to grab it from chess.com. I did it like this:

# Fetch the list of game archive URLs for the player 'Hikaru' from Chess.com
archive_urls=$(curl -Ls https://api.chess.com/pub/player/Hikaru/games/archives | jq -rc ".archives[]")

# Iterate over each archive URL
for url in $archive_urls; do
    # Fetch the games from each archive and extract the PGN
    curl -Ls "$url" | jq -rc ".games[].pgn"
done >> games.pgn  # Append all PGNs to the 'games.pgn' file

Then just:

git clone https://git.sr.ht/~swaits/hikaru
cd hikaru
cargo run --release

If you find mistakes, please let me know. I'll be very grateful.

Do not follow this link