Skip to content

Instantly share code, notes, and snippets.

View sixfeetover's full-sized avatar

Jeff Fraser sixfeetover

View GitHub Profile
@sixfeetover
sixfeetover / benchmark.rb
Created March 8, 2012 21:20
Compare [].join to string interpolation
# Ruby 1.9.3-p125
require 'benchmark'
variable = 'string'
integer = 5
n = 1_000_000
Benchmark.bm do |x|
x.report("array:") do
@sixfeetover
sixfeetover / benchmark.rb
Created March 15, 2012 15:55
Comparing [].join to string interpolation, different ruby versions
require 'benchmark'
n = 1_000_000
def key_arr(prefix, id, *suffixes)
[prefix, id, suffixes].flatten.compact.join ":"
end
def key_str1(prefix, id, *suffixes)
"#{prefix}:#{id}:#{suffixes.flatten.compact.join(':')}"
@sixfeetover
sixfeetover / sqlserver_options.rb
Created April 5, 2012 19:47
Set SQL Server options in rails for tiny_tds
module ActiveRecord
module ConnectionAdapters
class SQLServerAdapter < AbstractAdapter
def configure_connection
raw_connection_do "set concat_null_yields_null on; set nocount on;"
end
end
end
end
@sixfeetover
sixfeetover / install.sh
Created February 3, 2013 00:54
Install older ruby with modern command line tools on OS X Lion/Mountain Lion
# Sources:
# http://robots.thoughtbot.com/post/27985816073/the-hitchhikers-guide-to-riding-a-mountain-lion
# https://github.com/sstephenson/ruby-build#special-environment-variables
# Install command line tools from https://developer.apple.com/downloads/index.action. Then:
sudo chown -R `whoami` /usr/local
brew update
brew upgrade rbenv
require 'redis'
require 'hiredis'
require "redis/connection/hiredis"
total = 0
conn = Redis.new(db: 1, driver: :hiredis, path: '/tmp/redis.sock')
(1000...1100).each do |section|
key = "section:#{section}"
@sixfeetover
sixfeetover / table_type.sql
Last active December 21, 2015 03:39
Pass table variable as a procedure variable in SQL Server
create type GKCTable as table (
id int,
description varchar(255)
)
go
create procedure dbo.PrintGKC(@gkc_table GKCTable readonly)
as
select *
#!/usr/bin/ruby
# Create display override file to force Mac OS X to use RGB mode for Display
# see http://embdev.net/topic/284710
require 'base64'
data=`ioreg -l -d0 -w 0 -r -c AppleDisplay`
edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten
vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten

Keybase proof

I hereby claim:

  • I am sixfeetover on github.
  • I am jfraser (https://keybase.io/jfraser) on keybase.
  • I have a public key whose fingerprint is 171F 5899 D1D1 A4AA 9CAE 426E 7697 D217 D593 A104

To claim this, I am signing this object:

@sixfeetover
sixfeetover / init.lua
Created July 29, 2014 00:16
Hydra config
-- refers to grid.lua in this directory, taken from the Hydra wiki: https://github.com/sdegutis/hydra/wiki/Useful-Hydra-libraries
require "grid"
hydra.alert "Hydra, at your service."
pathwatcher.new(os.getenv("HOME") .. "/.hydra/", hydra.reload):start()
autolaunch.set(true)
menu.show(function()
return {
@sixfeetover
sixfeetover / init.lua
Created November 24, 2014 15:40
Mjolnir config
local application = require "mjolnir.application"
local fnutils = require "mjolnir.fnutils"
local hotkey = require "mjolnir.hotkey"
local window = require "mjolnir.window"
local alert = require "mjolnir.alert"
hotkey.bind({"cmd", "alt", "ctrl"}, "D", function()
local win = window.focusedwindow()
local f = win:frame()
f.x = f.x + 10