Skip to content

Instantly share code, notes, and snippets.

View olly's full-sized avatar

Oliver Legg olly

View GitHub Profile
@olly
olly / csv_progress_bar.rb
Last active October 3, 2019 19:44
Progress Bars for Ruby's CSV
require 'csv'
# https://rubygems.org/gems/progress_bar
require 'progress_bar'
class CSV
module ProgressBar
def progress_bar
::ProgressBar.new(@io.size, :bar, :percentage, :elapsed, :eta)
end
[2012-12-12 15:35:53] ./Configure darwin64-x86_64-cc -I/Users/Olly/.rvm/usr/include -L/Users/Olly/.rvm/usr/lib zlib no-asm no-krb5 shared --prefix=/Users/Olly/.rvm/usr --with-opt-dir=/Users/Olly/.rvm/usr
Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimental-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-dso] [no-krb5] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--test-sanity] os/compiler[:flags]
@olly
olly / gist:4268927
Created December 12, 2012 15:56
rvm install --debug 2.0.0
2.0.0 - install
Remote file does not exist https://rvm.io/binaries/osx/10.8/x86_64/ruby-2.0.0-preview2.tar.bz2
Remote file does not exist http://jruby.org.s3.amazonaws.com/downloads/ruby-2.0.0-preview2.tar.bz2
rvm_remote_server_url2 not found
No remote file name found
No binary rubies available for: osx/10.8/x86_64/ruby-2.0.0-preview2.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
Libyaml already installed
rvm_configure_flags+=( --with-opt-dir=/Users/Olly/.rvm/usr )
found compiler: /usr/local/bin/gcc-4.2
[2012-12-12 16:07:46] ./Configure darwin64-x86_64-cc -I/Users/Olly/.rvm/usr/include -L/Users/Olly/.rvm/usr/lib zlib no-asm no-krb5 shared --prefix=/Users/Olly/.rvm/usr
target already defined - darwin64-x86_64-cc (offending arg: )
[2012-12-12 16:15:29] ./Configure darwin64-x86_64-cc -I/Users/Olly/.rvm/usr/include -L/Users/Olly/.rvm/usr/lib zlib no-asm no-krb5 shared --prefix=/Users/Olly/.rvm/usr
current path: /Users/Olly/.rvm/src/openssl-1.0.1c
command(10): ./Configure darwin64-x86_64-cc -I/Users/Olly/.rvm/usr/include -L/Users/Olly/.rvm/usr/lib zlib no-asm no-krb5 shared --prefix=/Users/Olly/.rvm/usr
/Users/Olly/.rvm/scripts/functions/utility:116 __rvm_log_command:32 ./Configure darwin64-x86_64-cc -I/Users/Olly/.rvm/usr/include -L/Users/Olly/.rvm/usr/lib zlib no-asm no-krb5 shared '--prefix=/Users/Olly/.rvm/usr' ''
target already defined - darwin64-x86_64-cc (offending arg: )
@olly
olly / strict_validation_matcher.rb
Created February 2, 2013 16:34
Custom rspec Matcher for Strict Validations
matcher = ->(model) do
begin
model.valid?
true
rescue ActiveModel::StrictValidationFailed
false
end
end
RSpec::Matchers.define :pass_strict_validations do
@olly
olly / deprecations.rb
Created February 9, 2013 22:55
Disable "Rack::File headers parameter replaces cache_control after Rack 1.5." warnings in Rails 3.
class Rack::File
def warn(*)
end
end
[2013-02-10T19:28:38+00:00] INFO: Processing apt_repository[brightbox-ruby-ng] action add (application::rails line 67)
================================================================================
Error executing action `add` on resource 'apt_repository[brightbox-ruby-ng]'
================================================================================
RuntimeError
------------
The repository file to create is nil, cannot continue.
@olly
olly / irbrc.rb
Created February 10, 2013 22:45
A simple addition to access Mac OS X's pbcopy & pbpaste commands from IRB.
module Clipboard
def pbcopy(data)
IO.popen('pbcopy', 'w') {|io| io.write(data)}
end
def pbpaste
IO.popen('pbpaste', 'r').read
end
end
@olly
olly / gist:4754077
Last active December 12, 2015 09:49
UK Postcode Regexp
UKPostcode = begin
an_naa_or_ann_naa = '^([A-PR-UWYZ]{1}\d{1,2})\s?(\d[ABD-HJLNP-UWXYZ]{2})$'
aan_naa_or_aann_naa = '^([A-PR-UWYZ]{1}[A-HK-Y]{1}\d{1,2})\s?(\d[ABD-HJLNP-UWXYZ]{2})$'
ana_naa = '^([A-PR-UWYZ]{1}\d[A-HJKSTUW]{1})\s?(\d[ABD-HJLNP-UWXYZ]{2})$'
aana_naa = '^([A-PR-UWYZ]{1}[A-HK-Y]{1}\d[ABEHMNPRVWXY]{1})\s?(\d[ABD-HJLNP-UWXYZ]{2})$'
historic_code="GIR\s?0AA"
postcode_spec = "#{an_naa_or_ann_naa}|#{aan_naa_or_aann_naa}|#{ana_naa}|#{aana_naa}|#{historic_code}"
pattern = /#{postcode_spec}/i
end