Skip to content

Instantly share code, notes, and snippets.

View rbolkey's full-sized avatar

Richard Bolkey rbolkey

  • Austin, TX
View GitHub Profile

Keybase proof

I hereby claim:

  • I am rbolkey on github.
  • I am rbolkey (https://keybase.io/rbolkey) on keybase.
  • I have a public key ASD-v9DgRdqfRdFoSHksxXPs3Rtewqn4HJXn46uQ51-Yswo

To claim this, I am signing this object:

@rbolkey
rbolkey / docker
Created October 26, 2017 02:53 — forked from petruisfan/docker
Docker init.d daemon script
#!/usr/bin/env bash
###############
# SysV Init Information
# description: docker daemon.
### BEGIN INIT INFO
# Provides: me
# Required-Start:
# Required-Stop:
# Default-Start: 2 3 5
@rbolkey
rbolkey / ladder.md
Created June 21, 2016 01:11 — forked from jamtur01/ladder.md
Kickstarter Engineering Ladder
@rbolkey
rbolkey / latency.txt
Last active August 29, 2015 14:15 — forked from jboner/latency.txt
Latency Comparison Numbers
--------------------------
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns
Send 1K bytes over 1 Gbps network 10,000 ns 0.01 ms
Read 4K randomly from SSD* 150,000 ns 0.15 ms
#!/usr/bin/perl
#
# Pre-commit hook for running checkstyle on changed Java sources
#
# To use this you need:
# 1. checkstyle's jar file somewhere
# 2. a checkstyle XML check file somewhere
# 3. To configure git:
# * git config --add checkstyle.jar <location of jar>
# * git config --add checkstyle.checkfile <location of checkfile>