Skip to content

Instantly share code, notes, and snippets.

@keleshev
keleshev / Makefile
Last active November 28, 2025 04:44
ast.exe: ast.c
gcc -Werror -Wswitch -Wimplicit-fallthrough ast.c -o ast.exe
clean:
rm -f *.o *.exe *.s a.out
test.s: ast.exe
./ast.exe > test.s
@lxe
lxe / goes16-rtlsdr.md
Last active December 10, 2025 18:59
Receive GOES-16 and GOES-17 Images with a Raspberry Pi and RTL-SDR dongle
@bradtraversy
bradtraversy / ssh.md
Last active September 30, 2025 20:16
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test

@tuxfight3r
tuxfight3r / 01.bash_shortcuts_v2.md
Last active December 11, 2025 07:36
Bash keyboard shortcuts

Bash Shortcuts

visual cheetsheet

Moving

command description
ctrl + a Goto BEGINNING of command line
@tdd
tdd / gitconfig.ini
Last active October 5, 2025 17:35
Nice, useful global Git configuration
# Put this in your ~/.gitconfig or ~/.config/git/config
# Windows users: "~" is your profile's home directory, e.g. C:\Users\<YourName>
[user]
name = Your Full Name
email = your@email.tld
[color]
# Enable colors in color-supporting terminals
ui = auto
[alias]
# List available aliases