This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
# Title: FenDiff | |
# Author: Klepvink | |
# Version: 1.0 | |
# Checks two different FEN-strings, and determines the move that was made using only standard python modules and functions (and returns in UCI-format) | |
# The original purpose of this code is to help determine the move made based on only FEN-data. The chessboard sends a continuous stream | |
# of current positions in the form of FEN, and this code determines what move was made using that FEN-data by comparing it to the last |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"foreground": "#ff5555", | |
"properties": { | |
"time_format": "15:04:05" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Print banner | |
echo "" | |
echo "[!] You are now in shaha, a shell which helps with keeping track of used commands using aha." | |
echo "[!] Klepvink, 2025" | |
echo "" | |
# Spawn interactive shell, pipes all output to aha | |
python3 -c 'import pty; pty.spawn("/bin/bash")' | tee >(aha > $(date +%F_%H-%M-%S).html) |
OlderNewer