Projects
ADS-B Flight Tracker (Python)

This was a Raspberry Pi based project to get ADS-B information via the FlyAware Pro Stick®, look up the flight information from a online database, then render the position of the aircraft with some additional flight information (flight number, aircraft type, altitude, ground speed, and distance from the ADS-B reciever).
Change your reciever lat/lon in the PlaneData.py file, make sure the DATA_SOURCE in the Panels file is pointing to your dump1090 aircraft file, install the font in the assets folder and it should "just work". ESC or Q exits, although it doesn't work all of the time
Run Gui.py to start the application, it runs in fullscreen by default but this can be configured with the flag:
RUN_FULLSCREEN = True
at the top of Gui.py.
Requires:
- Python 3
- wxPython (I had trouble installing this with pip3, I used the precompiled wheel here: https://github.com/sctv/wxPython_arm71)
- dump1090
UCI Chess Engine (C#)
This is an attempt to create a functional, if slow/mediocre, chess engine. It currently is using mailbox board represenation and a very inefficent attack map which contains piece and location data. The search is based on the Principal Variation search on the chess programming wiki (https://www.chessprogramming.org/Principal_Variation_Search).
Additional Features
- Transposition Table
- Opening Book
- Iterative Deepening
- Piece-Square Tables
- Quiescence Search
- Move Ordering
An attempt at Static Excange Evaluation was made. To make it easier to play I've partially implemented a UCI interface. It's at least enought to load into Chessbase and play around.
C8 Emulator (C#)
This was a project to develop an emulator for the Chip-8, a basic 8-bit processor from the 1970s. It's able to load various C8 games and run them, althought the speed is much to fast to play correctly. I may revist this to improve (err, degrade) the performance of the emulation to make it more representative of the original hardware.
This emulator was made with a lot of assistance and documentation from: https://chip-8.github.io/links/