Skip to content

Instantly share code, notes, and snippets.

@roadrunner
roadrunner / ansible-summary.md
Created April 19, 2018 16:55 — forked from andreicristianpetcu/ansible-summary.md
This is an ANSIBLE Cheat Sheet from Jon Warbrick

An Ansible summary

Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)

Configuration file

intro_configuration.html

First one found from of

@roadrunner
roadrunner / README.md
Created April 11, 2018 14:00 — forked from dpb587/README.md
Terminating Gearman Workers in PHP - locally and remotely stopping workers without interrupting jobs.
@roadrunner
roadrunner / keybase.md
Created December 8, 2017 18:20
keybase validation

Keybase proof

I hereby claim:

  • I am roadrunner on github.
  • I am engin (https://keybase.io/engin) on keybase.
  • I have a public key ASC6USLXYij4j5mGEvMONsuMeADvs4Mozz1j-4S54C-Tdwo

To claim this, I am signing this object:

@roadrunner
roadrunner / Makefile
Created November 29, 2017 08:01 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@roadrunner
roadrunner / dnsmasq OS X.md
Created November 8, 2017 10:06 — forked from ogrrd/dnsmasq OS X.md
Setup dnsmasq on OS X

Never touch your local /etc/hosts file in OS X again

To setup your computer to work with *.dev domains, e.g. project.dev, awesome.dev and so on, without having to add to your hosts file each time.

Requirements

Install

@roadrunner
roadrunner / iterm2-solarized.md
Created October 30, 2016 23:45 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + Oh My Zsh + Solarized color scheme + Meslo powerline font (OS X / macOS)

Solarized

@roadrunner
roadrunner / apc_vs_array.php
Created January 8, 2012 06:23
Speed comparison for APC & Array look-up
<?php
if(!extension_loaded('apc')){
die("APC extension is not enabled.");
}
function generate_class_map($size){
apc_clear_cache('user');