Skip to content

Instantly share code, notes, and snippets.

View jengo's full-sized avatar

Jolene Engo jengo

  • San Francisco, CA
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jengo on github.
  • I am jolene (https://keybase.io/jolene) on keybase.
  • I have a public key ASCSSTrkgLNhBdgTlWzbHylXSYhleFNOmKOUT5UN2ZcVKwo

To claim this, I am signing this object:

@jengo
jengo / ssh-fingerprint.sh
Last active January 6, 2017 19:27
SSH fingerprint from private key
#!/bin/bash
KEY=$(basename $1)
FILENAME=$1
if [ "${KEY}" == "" ]; then
echo "Missing parameter SSH key"
exit 1
fi
@jengo
jengo / gist:3193f65e1c92ed1eeb401fc69e426cc3
Last active February 26, 2018 05:43
blender output to video using ffmpeg and docker
If you have docker installed, this is a simple command to load ffmpeg, link current directory and create a video from the output of blender.
docker run -it --rm -v "`pwd`":/tmp/workdir jrottenberg/ffmpeg -r 24 -f image2 -pattern_type glob -i '*.png' -i %04d.png -s hd1080 -vcodec libx264 -pix_fmt yuv420p -y output.mp4
@jengo
jengo / gist:3692558
Created September 10, 2012 17:59
Create remote git repo
# Run this on the remote
export PROJECT=project
export OWNER="jengo.dev"
mkdir /git/$PROJECT.git
cd /git/$PROJECT.git
git init --bare
chown $OWNER /git/$PROJECT.git -R
git repo-config core.sharedRepository true