Skip to content

Instantly share code, notes, and snippets.

View carlos8f's full-sized avatar

Starbuck Starfish carlos8f

View GitHub Profile
@carlos8f
carlos8f / README.md
Last active August 18, 2016 03:28 — forked from andredumas/README.md
sluggish crosshair with dynamic techan.js updates

Install Dnsmasq on OSX

This will allow any url having the non-existant TLD .dev to resolve to your locale machine.

Install dnsmasq and run as a service

$ brew update
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@carlos8f
carlos8f / README.md
Created May 2, 2012 20:05 — forked from cpsubrian/README.md
Tiered config example with nconf

Startup a service that depends on amino

./bin/myservice --conf=/path/to/my/conf

Startup a service using the default conf path

./bin/myservice

@carlos8f
carlos8f / changelog.sh
Created July 3, 2011 21:46 — forked from anonymous/changelog.sh
Git Changelog
#!/bin/bash
# Generates changelog day by day
echo "CHANGELOG"
echo "====================================="
git log --no-merges --format="%cd" --date=short $1 | sort -u -r | while read DATE ; do
echo
echo $DATE
echo "---------------------------------"
git log --no-merges --format=" * %s%+b" --since="$DATE 00:00:00" --until="$DATE 24:00:00" | sed -e '/ \* /!s/^/ /g'
done