Skip to content

Instantly share code, notes, and snippets.

View Quaker762's full-sized avatar
😛
Enjoying your stay?

Jesse Quaker762

😛
Enjoying your stay?
  • Palm Studios
  • My Computer
View GitHub Profile
@SnowyMouse
SnowyMouse / halo-map-structure.tex
Last active May 31, 2024 12:21
Halo Map Structure
\documentclass[12pt,oneside]{article}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[a4paper,margin=1in]{geometry}
\usepackage{hyperref}
\usepackage[utf8]{inputenc}
\usepackage[none]{hyphenat}
\usepackage{tabularx}
\usepackage{emoji}
\usepackage[document]{ragged2e}
\usepackage{xspace}
@cb372
cb372 / riscv.md
Last active July 12, 2024 16:49
Writing an OS in Rust to run on RISC-V

(This is a translation of the original article in Japanese by moratorium08.)

(UPDATE (22/3/2019): Added some corrections provided by the original author.)

Writing your own OS to run on a handmade CPU is a pretty ambitious project, but I've managed to get it working pretty well so I'm going to write some notes about how I did it.

@albertzsigovits
albertzsigovits / ida.txt
Created January 31, 2019 10:30
IDA Pro Tips and Tricks
# IDA Pro Keyboard shortcuts and tips:
######################################
Ctrl+E - Return to entry point
Alt+M - Set bookmark
Ctrl+M - List bookmarks
Space - Toggle full screen/workflow view
Esc - Backup to parent function
Ctrl+X - Find All X-References
Ctrl+R - Change reference information e.g deltas etc.
@CSymes
CSymes / Canvas-Mark-All-As-Read.user.js
Last active April 20, 2018 11:46
I got sick of having to slowly scroll down discussions on Canvas, so made a userscript to mark all unread posts as read for me. Adds a button to the header on each discussion page.
// ==UserScript==
// @name Canvas 'Mark All as Read'
// @namespace com.plasticsquid.canvas.read
// @version 1.0
// @description Adds a button to allow marking of all posts as read in a Canvas discussion
// @author Cary Symes
// @match https://*.instructure.com/courses/*/discussion_topics/*
// @grant none
// ==/UserScript==
@velipso
velipso / sdl2_game_loop.c
Last active September 25, 2023 21:17
SDL2 game loop forcing a certain frame rate
//////////////////////////////////////////////////
//
// EDIT: Warning, this doesn't seem to work well.
//
//////////////////////////////////////////////////
@JayKickliter
JayKickliter / build_arm_gdb.sh
Last active March 14, 2024 20:36
Building `arm-none-eabi-gdb` with python support
#!/usr/bin/env sh
export TARGET=arm-none-eabi
export PREFIX=$HOME/.local
export PATH=$PATH:$PREFIX/bin
export VERSION=7.8.1
export GDB=gdb-$VERSION
rm -rf $GDB