Skip to content

Instantly share code, notes, and snippets.

View nkrivenko's full-sized avatar

Nikolai Krivenko nkrivenko

View GitHub Profile
@nkrivenko
nkrivenko / request_wax.sh
Last active April 25, 2022 09:54
Automated Testnet WAX requests
#!/usr/bin/env bash
# You can add this file to your crontab to request 500 Testnet WAX every 24 hours like this:
# 0 0 * * * /path/to/script/request_wax.sh waxacctname1
if [[ "$#" < "1" ]]; then
/bin/echo "USAGE: $0 <account name>"
exit 1
fi
public class Test {
private final Chess chess;
public Test(Chess chess) {
this.chess = chess;
}
public void lol() {
chess.printBoard();
}