Skip to content

Instantly share code, notes, and snippets.

@pithyless
pithyless / gist:3386424
Created August 18, 2012 12:08
Convert FLAC to ALAC/AAC on a Mac
Step 1: install flac via Homebrew
brew install flac
Step 2: decode FLAC to AIFF
cd path/to/directory/with/files/to/convert
for i in *.flac; do
flac -d --force-aiff-format "$i"
done
@pithyless
pithyless / custom_assertions.rb
Created July 23, 2012 12:33
minitest samples
# https://gist.github.com/2032303
module MiniTest::Assertions
def assert_palindrome(string)
assert string == string.reverse, "Expected #{string} to read the same way backwards and forwards"
end
def assert_default(hash, default_value)
assert default_value == hash.default, "Expected #{default_value} to be default value for hash but was #{hash.default.inspect}"
end
@pithyless
pithyless / gazebo.rb
Created April 1, 2012 16:04
DCI via SimpleDelegator and a hint of metaprogramming
get '/give/me/gazebo/not/gazelle/:min_size' do
pricing = PriceCalculator.new
ParamsExtractor.new(pricing).parse(params)
GazelleFinder.new(pricing).find_all_gazelles
GazelleFilter.new(pricing).remove_sick_gazelles # pricing has access to #gazelles
GazeboBuilder.new(pricing).calculate_size_of_gazebo
GazeboPricer.new(pricing).calculate_final_price # pricing no longer has #gazelles
@pithyless
pithyless / either.rb
Created March 27, 2012 14:44
Chaining Either for Ruby
# A chainable Either monad for Ruby
#
# Examples
#
# Either.right('s') >> proc { |s| Either.right(s + '-1') } >> proc { |s| Either.right(s + '-2') }
# #=> #<Either @left=nil, @right="s-1-2">
#
# Either.right('s') >> proc { |s| Either.left('error!') } >> proc { |s| Either.right(s + '-2') }
# #=> #<Either @left='error!', @right=nil>
#
@pithyless
pithyless / ken-burns.css
Created February 18, 2012 22:56 — forked from thierryk/ken-burns.css
Ken Burns effect (styling images with panning and zooming effects)
/**
* See: http://www.css-101.org/articles/ken-burns_effect/css-transition.php
*/
/**
* Styling the container (the wrapper)
*
* position is used to make this box a containing block (it becomes a reference for its absolutely positioned children). overflow will hide part of the images moving outside of the box.
*/
@pithyless
pithyless / group_of_thingies.rb
Created February 8, 2012 08:40 — forked from Peeja/group_of_thingies.rb
Test a block in Ruby
class GroupOfThingies
attr_accessor :thingies
# Use like this:
#
# group_of_thingies = GroupOfThingies.new
# group_of_thingies.each do |thing|
# puts "Check out this awesome thing: #{thing}!"
# end
#
@pithyless
pithyless / match_method.rb
Created February 8, 2012 08:37 — forked from avdi/match_method.rb
Defining method_missing and respond_to? in one fell swoop
# Do you ever define #method_missing and forget #respond_to? I sure
# do. It would be nice if we could do them both at the same time.
module MatchMethodMacros
def match_method(matcher, &method_body)
mod = Module.new do
define_method(:method_missing) do |method_name, *args|
if matcher === method_name.to_s
instance_exec(method_name, *args, &method_body)
else
@pithyless
pithyless / mac-homebrew-pyexiv2.sh
Created January 22, 2012 17:19 — forked from jpwatts/mac-homebrew-pyexiv2.sh
In which I finally get pyexiv2 working on my Mac using Homebrew and a series of disgusting hacks
#!/bin/sh
brew install python scons boost exiv2
curl -O http://launchpadlibrarian.net/83595798/pyexiv2-0.3.2.tar.bz2
tar xjvf pyexiv2-0.3.2.tar.bz2
cd pyexiv2-0.3.2
# https://answers.launchpad.net/pyexiv2/+question/140742
echo "env['FRAMEWORKS'] += ['Python']" >> src/SConscript
@pithyless
pithyless / gist:1547905
Created January 1, 2012 17:52
Git track upstream repo
One time:
git remote add upstream [email protected]:foo/bar.git
git fetch upstream
git checkout -b upstream upstream/master
Each time you want to update:
git checkout upstream
git pull
@pithyless
pithyless / gist:1547408
Created January 1, 2012 14:02
jQuery set Headers for $.ajax
// jQuery Headers support for $.ajax
$.ajax({
beforeSend: function(xhrObj){
xhrObj.setRequestHeader("Content-Type","application/json");
xhrObj.setRequestHeader("Accept","application/json");
}
type: "POST",
url: "/article",
processData: false,