I hereby claim:
- I am chrisandreae on github.
- I am chrisandreae (https://keybase.io/chrisandreae) on keybase.
- I have a public key ASCIZjcoYXytWOQlGZBnoWcplS8V-MafEmCosdYNBrXrVgo
To claim this, I am signing this object:
| count = 6; | |
| tilt_angle = 10; | |
| sprues = true; | |
| module __Customizer_Limit__ () {} | |
| $fn = 60; | |
| leg_diameter = 11.849; | |
| inner_diameter = 10.554; // measured top of foot on the model: assumption that it's the same |
| compareRebase () { | |
| local newbranch oldbranch newcommit oldcommit ancestor | |
| local opts=() | |
| if [ "$1" = "-w" ] | |
| then | |
| opts+=("-w") | |
| shift | |
| fi | |
| newbranch=${1:-$(git rev-parse --abbrev-ref HEAD)} | |
| oldbranch=${2:-"${newbranch}@{u}"} |
| require 'optparse' | |
| require 'tempfile' | |
| require 'json' | |
| def parse_extlinux(file) | |
| globals = {} | |
| labels = {} | |
| target = globals |
| # frozen_string_literal: true | |
| begin | |
| require 'bundler/inline' | |
| rescue LoadError => e | |
| warn 'Bundler version 1.10 or later is required. Please update your Bundler' | |
| raise e | |
| end | |
| gemfile(true) do |
I hereby claim:
To claim this, I am signing this object:
| # frozen_string_literal: true | |
| begin | |
| require "bundler/inline" | |
| rescue LoadError => e | |
| $stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
| raise e | |
| end | |
| gemfile(true) do |
| ## Iterates a tree of a million preloaded ActiveRecord objects, using | |
| ## either the association CollectionProxy or `association(:foo).target`. | |
| ## Results: | |
| ## CollectionProxies (1000000): 31.230000 2.040000 33.270000 ( 33.840189) | |
| ## Associations (1000000): 0.130000 0.000000 0.130000 ( 0.122716) | |
| require 'active_record' | |
| require 'sqlite3' | |
| require 'benchmark' |