Skip to content

Instantly share code, notes, and snippets.

View rchrd2's full-sized avatar

Richard Caceres rchrd2

View GitHub Profile
@rchrd2
rchrd2 / Projects.md
Last active August 29, 2015 14:12
Dokku (dokku-alt) example projects.
@rchrd2
rchrd2 / commands.txt
Last active August 29, 2015 14:13
Dokku breaks with file
>git commit -a -m 'add index'
gi[master 5377c90] add index
1 file changed, 547 insertions(+)
create mode 100755 public/vf/index.html
>git push sandbox master
Counting objects: 7, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (4/4), done.
@rchrd2
rchrd2 / install.sh
Last active August 29, 2015 14:13
Install psycopg2 on Yosemite
export PATH=/Applications/Postgres.app/Contents/Versions/9.4/bin/:$PATH
pip install psycopg2
@rchrd2
rchrd2 / redis-output.txt
Created January 18, 2015 03:37
Redis output
nst>brew install redis
==> Downloading http://download.redis.io/releases/redis-2.8.12.tar.gz
######################################################################## 100.0%
==> make -C /private/tmp/redis-qA8O/redis-2.8.12/src CC=clang
==> Caveats
To have launchd start redis at login:
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
Then to load redis now:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
Or, if you don't want/need launchctl, you can just run:
@rchrd2
rchrd2 / Procfile
Last active August 29, 2015 14:17
sandbox-html5-template
web: php -S 0.0.0.0:8000 -t .
#gulp: gulp watch
@rchrd2
rchrd2 / .bash_profile
Created May 21, 2015 19:16
Disable pyc files!
# Add this to your ~/.bash_profile
# Disable pyc
export PYTHONDONTWRITEBYTECODE=x
### Keybase proof
I hereby claim:
* I am rchrd2 on github.
* I am rchrd2 (https://keybase.io/rchrd2) on keybase.
* I have a public key whose fingerprint is A166 5BE1 E8F6 A2A3 BEC7 382A 8CCA 345A 01E9 EF4B
To claim this, I am signing this object:
/**
* jQuery plugin to add a faux browser around some images
* Based off of http://cloudcannon.com/deconstructions/2014/11/21/flat-css-browser-wrapper.html
*
* Example usage:
*
* <body>
* <img class="fakeBrowser" src="http://example.com/image.jpg"
* </body>
*
@rchrd2
rchrd2 / fix-camera.sh
Created October 19, 2015 21:27
fix isight camea
sudo killall VDCAssistant
@rchrd2
rchrd2 / convert.sh
Created November 4, 2013 20:17
Helper script to convert wav files to mp3 with ffmpeg.
#!/bin/bash
BITRATE=320
defvalue='.'
SOURCE_DIR=${1:-$defvalue}
# Validate arguments
if [[ "$#" == 0 ]]; then
echo >&2 "Usage: ./convert.sh ./exports/*.wav"
exit 1;