Skip to content

Instantly share code, notes, and snippets.

@keleshev
keleshev / Makefile
Last active November 16, 2024 20:43
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 April 9, 2025 14:33
Receive GOES-16 and GOES-17 Images with a Raspberry Pi and RTL-SDR dongle
@bradtraversy
bradtraversy / ssh.md
Last active May 21, 2025 04:01
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 [email protected]

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

$ mkdir test

$ cd test

@tdd
tdd / gitconfig.ini
Last active April 16, 2025 03:24
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 = [email protected]
[color]
# Enable colors in color-supporting terminals
ui = auto
[alias]
# List available aliases