Skip to content

Instantly share code, notes, and snippets.

View grimreaper's full-sized avatar
💭
introducing bugs

Eitan Adler grimreaper

💭
introducing bugs
View GitHub Profile
@grimreaper
grimreaper / InformationSecurityForNomads.md
Last active December 25, 2022 20:28 — forked from sarbogast/InformationSecurityForNomads.md
How do you protect your gear and data (aka your livelihood) when you're travelling the world?
@grimreaper
grimreaper / trolling_haskell
Created March 29, 2018 01:41 — forked from quchen/trolling_haskell
Trolling #haskell
13:15 <xQuasar> | HASKELL IS FOR FUCKIN FAGGOTS. YOU'RE ALL A BUNCH OF
| FUCKIN PUSSIES
13:15 <xQuasar> | JAVASCRIPT FOR LIFE FAGS
13:16 <luite> | hello
13:16 <ChongLi> | somebody has a mental illness!
13:16 <merijn> | Wow...I suddenly see the error of my ways and feel
| compelled to write Node.js!
13:16 <genisage> | hi
13:16 <luite> | you might be pleased to learn that you can compile
| haskell to javascript now
@grimreaper
grimreaper / git-working-history
Created April 21, 2016 16:21 — forked from gabro/git-working-history
Github-like working directory history
#!/bin/bash
FILES=`git ls-tree --name-only HEAD .`
MAXLEN=0
IFS=$(echo -en "\n\b")
for f in $FILES; do
if [ ${#f} -gt $MAXLEN ]; then
MAXLEN=${#f}
fi
done