About
I like video games, coffee, and building stuff.
I like video games, coffee, and building stuff.
Here are some of the things I've been working on.
Click to play!
Pong - Classic two-player paddle game. Play against the CPU!
Breakout - Break all the bricks with your paddle and ball.
Tetris - The classic falling blocks puzzle game.
Asteroids - Fly through space and destroy asteroids.
Space Invaders - Defend Earth from waves of alien invaders.
Minesweeper - Classic logic puzzle game. Find all the mines!
Flappy Bird - Navigate through pipes by flapping your wings.
Conway's Game of Life - Cellular automaton simulator with classic patterns.
CyberChef - The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis.
Godbolt Compiler Explorer - Compiler Explorer is an interactive online compiler which shows the assembly output of compiled C++, Rust, Go (and many more) code.
Overleaf, Online LaTeX Editor - An online LaTeX editor that's easy to use. No installation, real-time collaboration, version control, hundreds of LaTeX templates, and more.
Chris Titus Tech's Windows Utility - Streamline Windows 11 installs, debloat with tweaks, troubleshoot with config, and fix Windows updates.
[show] Git configuration with dag alias
[user]
email = garrett@sickles.dev
name = Garrett Sickles
[alias]
dag = log --graph --format='format:%C(yellow)%h%C(reset) %C(blue)\"%an\" <%ae>%C(reset) %C(magenta)%ar%C(reset)%C(auto)%d%C(reset)%n%s' --date-order
ca = commit --amend
sq = git reset HEAD~1
[show] Bash configuration and aliases
# Aliases
alias ll='ls -la'
HISTFILE=~/.history
HISTSIZE=32767
SAVEHIST=32767
setopt SHARE_HISTORY
autoload -U colors && colors
export PS1="%F{magenta}(%D{%Y-%m-%d %H:%M:%S.%.})%f [%3d] %F{yellow}%n%f@%F{cyan}%m %F{yellow}%f$ "