Skip to content

Instantly share code, notes, and snippets.

View fooforge's full-sized avatar
🌴
On vacation

Mike Stojan fooforge

🌴
On vacation
View GitHub Profile

Mike Adolphs

Contact details

Speaker bio

Mike Adolphs is an Operations expert. Previously automating infrastructure for nugg.ad and XING, he's now with GitHub making people's life a little easier. For the past 1 1/2 years he's been working on technical support for the GitHub Enterprise product - his first support-orientied role ever since - allowing him to deep dive into other people's code on a daily basis and levelling up his social skills.

@fooforge
fooforge / symbol_to_string.sh
Created July 30, 2012 12:21 — forked from atomic-penguin/symbol_to_string.sh
Foodcritic FC001 fixer script.
#!/bin/bash
if [ "$#" -eq 0 ]; then
echo "Usage: `basename $0` <cookbook directory>"
elif [ "$#" -eq 1 ]; then
find $1 -name "*[.md|.rb]" \! -name "*.erb" | xargs perl -p -e 's!\[:([a-z0-9_]+)\]![\x27$1\x27]!gi' -i
fi
@fooforge
fooforge / run-chef.sh
Created June 29, 2012 09:03 — forked from ashb/run-chef.sh
Make the chef-client (v0.10+) daemon process wake and run, and print what its doing to stdout
#!/bin/bash
#
# Author:: Ash Berlin (ash_github@firemirror.om)
# Copyright:: Copyright (c) 2011 DigiResults Ltd.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#