Skip to content

Instantly share code, notes, and snippets.

@mezcel
Last active July 26, 2020 08:57
Show Gist options
  • Select an option

  • Save mezcel/f374a42c197ba9d2d41cd1d6b95f9496 to your computer and use it in GitHub Desktop.

Select an option

Save mezcel/f374a42c197ba9d2d41cd1d6b95f9496 to your computer and use it in GitHub Desktop.
temp dir to pass temp files

TMP Files

  • this is just a temporary dir to pass or share temporary files
#!/bin/bash
sudo apt update
sudo apt gnuchess
sudo apt xboard
## How to run XBoard with GNU Chess as chess backend:
## xboard -fcp 'gnuchess --xboard'
## xboard -fd . -fcp './gnuchess --xboard'
#!/bin/bash
## Go board game for Debian
sudo apt update
function installGnuGo {
## GnuGo
sudo apt install gnugo quarry
}
function installAlphaGo {
## Open Source AlphaGo
## Java
sudo apt install default-jre
sudo apt-get install default-jdk
## Go ai and ui
## https://github.com/leela-zero/leela-zero
## https://www.aghs.cc/tutorials/leela/leela.php
sudo apt install leela-zero lizzie
## weight (based on human games)
## rename the .zip "network.gz"
wget https://sjeng.org/zero/best_v1.txt.zip
## electron go ui
git clone https://github.com/SabakiHQ/Sabaki.git
}
installGnuGo
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment