Skip to content

Instantly share code, notes, and snippets.

View fasterthanlime's full-sized avatar
🌌
4 oreos from heaven

Amos Wenger fasterthanlime

🌌
4 oreos from heaven
View GitHub Profile
@fasterthanlime
fasterthanlime / install-glibc-debug.sh
Created January 9, 2021 20:10 — forked from nbulischeck/install-glibc-debug.sh
Install glibc debug symbols on Arch Linux for pwndbg heap analysis
#!/bin/bash
# Install Dependencies
sudo pacman -S git svn gd lib32-gcc-libs patch make bison fakeroot
# Checkout glibc source
svn checkout --depth=empty svn://svn.archlinux.org/packages
cd packages
svn update glibc
cd glibc/repos/core-x86_64
@fasterthanlime
fasterthanlime / cities.json
Created July 5, 2020 17:53 — forked from Miserlou/cities.json
1000 Largest US Cities By Population With Geographic Coordinates, in JSON
[
{
"city": "New York",
"growth_from_2000_to_2013": "4.8%",
"latitude": 40.7127837,
"longitude": -74.0059413,
"population": "8405837",
"rank": "1",
"state": "New York"
},
@fasterthanlime
fasterthanlime / OpenHexagon
Created March 24, 2016 09:49 — forked from nddrylliog/OpenHexagon
OpenHexagon launcher by flibitijibibo
#!/bin/bash
# Open Hexagon Shell Script
# Written by Ethan "flibitijibibo" Lee
# Move to script's directory
cd "`dirname "$0"`"
# Get the kernel/architecture information
UNAME=`uname`
ARCH=`uname -m`
@fasterthanlime
fasterthanlime / update-itch.sh
Created January 12, 2016 18:07 — forked from khbecker/update-itch.sh
Update PKGBUILD for itch with new pkgver based on Github releases
#!/bin/sh -xe
# update-itch.sh
#
# Required packages: jq and pkgbuild-introspection
source ./PKGBUILD
OLDVERSION="$pkgver"
echo "Old Version: ${OLDVERSION}"
NEWVERSION=$(curl https://api.github.com/repos/itchio/itch/releases 2> /dev/null | jq -r '.[0].tag_name | match("\\d(\\.\\d+)+").string')
#!/bin/bash
#
# llamize
# Stub a llama-standard ooc library/binding.
#
# Based on a script by wandernauta:
# http://oocgaming.org/forum/index.php?topic=31
# https://gist.github.com/4144797