Skip to content

Instantly share code, notes, and snippets.

View havenwood's full-sized avatar
:octocat:

Shannon Skipper havenwood

:octocat:
  • Ashland, Oregon
  • 07:18 (UTC -07:00)
View GitHub Profile
require 'benchmark'
hash = {}
Benchmark.measure do
1_000_000.times do
hash = {}
end
end.real
#=> 0.245904
@havenwood
havenwood / foo.rb
Last active December 25, 2015 23:39
str = "aaa [first_name] bar [first_name] [last_name]"
last = str.scan(/\[last_name\]/).size
first = str.scan(/\[first_name\]/).size
remaining = str.gsub(/\[(first_name|last_name)\]/, '').size
first * 15 + last * 10 + remaining
class MyClass
attr_accessor :user, :type
def initialize user: 'smith', type: 'pleb'
@user = user
@type = type
end
end
both = MyClass.new user: 'blah', type: 'pleb'
just_one = MyClass.new type: 'pleb'
class Integer
def collatz_chain_size
n = self
chain = []
until n == 1
chain << n
n.even? ? n /= 2 : n = n * 3 + 1
end
[chain.size, chain.first]
end
@havenwood
havenwood / weasel.rb
Last active August 29, 2015 14:02 — forked from jlindsey/weasel.rb
class Weazel
CHARS = [*'A'..'Z', ' ']
def initialize target
@target = target
@best = Array.new(28) { CHARS.sample }.join
end
def call
0.upto Float::INFINITY do |n|
@havenwood
havenwood / datg
Last active August 29, 2015 14:23 — forked from 0x0dea/datg
#!/bin/sh
gem search --no-vers | parallel -j0 -I$ 'curl -O `curl https://rubygems.org/api/v1/gems/$.json | jq -r .gem_uri`'
@havenwood
havenwood / cpus.rb
Created June 23, 2016 20:54 — forked from parshap/cpus.rb
Determine number of cpu cores to use in Vagrant
# Determines how many cpus the virtual machine should be given. Uses half of
# what's available on the host with a default of 4.
def numvcpus
begin
os_cpu_cores / 2
rescue
4
end
end
@havenwood
havenwood / installfest.md
Last active October 21, 2016 20:05 — forked from rubydiamond/installfest.md
Requirements to get a sticker and be ready for the workshop day.

Rails Girls L.A. The Third Level

[ ] I have an editor. It is ___________________.


[ ] I can show you where my terminal is and a few commands.

  • I can show where I am in the directories.
  • List the files in a particular directory.
  • Make a directory.
require 'fiddle'
class Object
def cast(as)
# Make sure iv table of the new class gets initialized.
as.new.send(:instance_variable_set, :@nil, nil)
rbasic = Fiddle::Pointer.new(__id__ << 1)
as_klass = Fiddle::Pointer.new(as.__id__ << 1)
# Ruby guarantees sizeof(VALUE) == sizeof(void *)
# Identity functor that does not give any additional structure
Identity = Struct.new(:value) do
def fmap(func = nil, &blk)
f = func || blk;
Identity.new(f.call(self.value))
end
end
# Const Functor that preserves its content
Const = Struct.new(:value) do