Skip to content

Instantly share code, notes, and snippets.

View hackowitz's full-sized avatar
🤓

Noah Jackowitz hackowitz

🤓
View GitHub Profile
@hackowitz
hackowitz / fib.mips
Last active September 4, 2025 17:35
Assembly Fibonacci Sequence
# Compute the fibonacci sequence up to the largest unsigned 32-bit value, and print the results.
# Registers:
# $s0: The larger of the two most recent fibonaci numbers
# $s1: The smaller of the two most recent fibonaci numbers
# $s2: The maximum unsigned integer value
# $t0: The newly calculated next fibonacci number
# $a0, $v0: Used for system calls
# $t1: Intermediate product in comparisons
.text
main:
@hackowitz
hackowitz / resume.json
Last active April 4, 2025 05:53
resume.json
{
"basics": {
"name": "Noah Jackowitz",
"email": "noah.jackowitz@gmail.com",
"phone": "(530) 503-0398",
"image": "https://avatars.githubusercontent.com/hackowitz",
"location": {
"address": "635 40th St",
"postalCode": "84403",
"city": "South Ogden",