Skip to content

Instantly share code, notes, and snippets.

@davidoram
davidoram / gist:4c9b1d2648e3e3ed5182
Created January 27, 2016 03:30
Print FB callstck in a method - drop this code in a method
puts " -- > called blah_blah_method"
puts caller.select{ |f| f =~ /flybuys/ }
@davidoram
davidoram / pre-commit.rb
Created December 20, 2012 18:35
svn pre-commit hook that prevents text files (based on extension) from being committed if they contain a Byte Order Mark (BOM). If using on windows must wrap in a batch script
#!/usr/bin/env ruby
# pre-commit.rb
# Exit 1 if is a text file and has a BOM at the head of the file
# Create list of file extensions that are considered text files.
text_files = [
".awk",
".bas",
".bat",
".cfc",
@davidoram
davidoram / findext.rb
Created December 20, 2012 18:21
Output a list of the unique file extensions in the current directory and all subdirectories, lowercased and sorted
#!/bin/ruby
# Output a list of the unique file extensions in this directory and all subdirectories
# lowercased and sorted
extensions = {}
Dir.glob('**/*') do |f|
ext = File.extname(f).downcase
extensions[ext] = ext if ext
end
puts extensions.keys.sort
@davidoram
davidoram / test_specs.sh
Last active September 10, 2015 01:02
Given a list of specs, run one test together with each in the list
#!/bin/bash
#
# Run a failing spec in combination with each other spec and record which combinations cause a failure
#
# Put a list of all specs into specs.txt
# eg: $ $ find spec -name '*_spec.rb' -print > specs.txt
# Set the failingspec variable below
# Set the seed variable below
#
# Writes a log to testspec.log, which is formatted as follows:
@davidoram
davidoram / custom_formatter.rb
Created August 19, 2015 04:27
Rspec 2 formatter to output files in the order they are tested
#
# Rspec 2.x custom formatter that will run all your tests and output a list of spec files that have been run
#
# Can be usefull for extracting all of the files that nmake up the test run
#
# TZ=Pacific/Auckland bundle exec rspec spec --tag ~integration --tag ~fragile --require ./custom_formatter.rb --format CustomFormatter --out specs.txt --seed 34104
#
require "rspec/core/formatters/base_text_formatter"
require 'JSON'
class CustomFormatter < RSpec::Core::Formatters::BaseTextFormatter
@davidoram
davidoram / serve_mov.sh
Created July 26, 2015 04:59
ffmpeg: Server `in.mov` file via ffserver (see other gist)
#!/bin/bash
ffmpeg -i in.mov -f ffm http://127.0.0.1:8090/feed1.ffm
@davidoram
davidoram / ffserver.conf
Created July 26, 2015 04:57
ffmpeg: Run ffserver available via http://localhost:8090/stat.html
# Run via:
# ffserver -d -f ffserver.conf
Port 8090
BindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000
CustomLog -
NoDaemon
@davidoram
davidoram / ffmpeg_filter.sh
Created July 26, 2015 04:53
ffmpeg: Apply a filter to a .mov file
#!/bin/bash
ffmpeg -i in.mov -vf "vflip" out.mov
@davidoram
davidoram / vcap.sh
Last active August 29, 2015 14:24
Capture video from OS X iSight camera using ffmpeg
#!/bin/bash
#
# Capture iSight Camera to a iSight.mpg file
#
# Press 'q' to stop capture
#
ffmpeg -f avfoundation -i "FaceTime" iSight.mpg
@davidoram
davidoram / dbutil.sh
Last active August 29, 2015 14:05
Backup or restore postgres db
#!/usr/bin/env bash
#
# Backup, or Restore your postgres database
#
set -e
usage()
{
cat << EOF