Skip to content

Instantly share code, notes, and snippets.

View hrobeers's full-sized avatar

Hans Robeers hrobeers

View GitHub Profile
@hrobeers
hrobeers / followdiff.sh
Created July 17, 2019 12:20
Social media followers diff script
#! /bin/bash
# Built and tested for instagram
cat followers.txt | grep -E '^\s*\S+\s*$' | uniq | sort > followers.sorted
cat following.txt | grep -E '^\s*\S+\s*$' | uniq | sort > following.sorted
diff followers.sorted following.sorted | grep '>'
#include "wasm4.h"
const uint8_t smiley[] = {
0b11110000, 0b00001111,
0b11000000, 0b00000011,
0b00000100, 0b00010000,
0b00000100, 0b00010000,
0b00000000, 0b00000000,
0b00001100, 0b00110000,
0b11000011, 0b11000011,