./opt/vc/bin/vcgencmd measure_temp
Flip
An Android game created with Android Studio basic UI components. It’s a basic “Shut the Box” dice game.
Lisbon Recycling
A free Android app for Lisbon, Connecticut residents. It was mainly created to keep track of which week is your recycling week, but also includes the town’s quarterly newsletter. It implements Google Maps API.
Is It Recycling Day?
A website for Lisbon residents to check which week is their recycling week. It uses Google Maps API.www.isitrecyclingday.com (changed to) www.lisbonrecycling.com
install Google USB drivers
// Android Studio
Tools > SDK Manager > Appearance & Behavior > System Settings > Android SDK > SDK Tools (tab) > Google USB Driver (checkbox)
initial git pull via SSH
// after setting up a public ssh key
// cd to new directory
git init
git remote add origin [email protected]:<<<me>>>/<<<project>>>.git
git pull origin master
ssh key generation
ssh-keygen
// copy contents from C:\Users\<<<me>>>\.ssh\id_rsa.pub
// paste contents to: https://bitbucket.org/account/user/<<<me>>>/ssh-keys/
ssh key generation to a specific directory
ssh-keygen -f C:\somepath\filename
initial push to git via SSH
git init
git add .
git remote add origin [email protected]:<<<myaccountname>>>/<<<project>>>.git
git commit -m "comment"
git push -u origin master
Install latest Java – Debian
sudo apt install default-jre
Open Raspberry pi config UI
sudo raspi-config
Install Python tkinter
sudo apt-get install python3-tk
Raspberry Pi 3 b+ pins
Install GPIO Python library
//Install pip:
sudo apt-get install python3-pip
// Install necessary libraries
//Option1: From text file
python3 -m pip install -r pip-commands.txt
// file contents
setuptools
RPi.GPIO
gpiozero
RPIO
pigpio
//Option2:
python3 -m pip install setuptools
python3 -m pip install RPi.GPIO
python3 -m pip install gpiozero
python3 -m pip install RPIO
python3 -m pip install pigpio
Install imagetk Python package
sudo apt-get install python3-pil.imagetk
Jeep Computer
Different prototypes of a relay controller for Jeep accessories.
Firefighter I Skill Sheets Android App
To study for the Firefighter I Practical Exams, we were given a ~200-page PDF. Using Python, I parsed each of the skill sheets into Java datasets, then used those datasets to display the sheets in a standard GUI.
Poker and Blackjack
A poker and blackjack game created in Unity with C#
Stand Timer
I created this website to remind me to stand up while I’m programming at work. Previously located at standtimer.com
Cards RPG
An RPG card game made in Android Studio Java.
Another Cooking Game
Playing around with the Unreal 4 Engine, I created a basic drag-and-drop cooking game prototype.