Skip to content

Instantly share code, notes, and snippets.

View fukawi2's full-sized avatar

Phillip Smith fukawi2

View GitHub Profile
@daz
daz / google-earth-studio-ffmpeg.sh
Created January 23, 2019 06:35
Google Earth Studio stitch image sequence with FFmpeg
ffmpeg -framerate 30 -pattern_type glob -i '*.jpeg' -c:v libx264 -pix_fmt yuv420p output.mp4
anonymous
anonymous / rsync-wrap-snap
Created April 9, 2015 20:41
Rsync wrapper that snapshots an lvm volume and redirects rsync to use the snapshot
#!/bin/bash
# This script is a wrapper around rsync that will snapshot the volume
# being synced and 'serve' that snapshot instead of the live data.
# This prevents errors generated by moved/deleted files (eg: maildir
# new/ -> cur/)
# It assumes that all volumes being synced by this script are in
# /my/base/path/... and that the path represents the root of a
# volume. It would need more intelligence if this isn't true.
@pjf
pjf / exifpic.pl
Last active December 10, 2015 09:58 — forked from anonymous/exifpic
# /usr/bin/perl -w
use 5.010;
use strict;
use warnings;
use threads;
use Thread::Queue;
use autodie qw(:all);
use Image::ExifTool qw(ImageInfo);
use Data::Dumper;
use Imager;

Project

Description: What does this project do and who does it serve?

Project Setup

How do I, as a developer, start working on the project?

  1. What dependencies does it have (where are they expressed) and how do I install them?
  2. How can I see the project working before I change anything?