Skip to content

Instantly share code, notes, and snippets.

View dylanahsmith's full-sized avatar

Dylan Thacker-Smith dylanahsmith

  • Quebec
  • 04:38 (UTC -04:00)
View GitHub Profile
@dylanahsmith
dylanahsmith / 2.1.0-github
Created January 30, 2014 17:57
ruby-build definition for github's patched ruby 2.1
install_package "openssl-1.0.1e" "https://www.openssl.org/source/openssl-1.0.1e.tar.gz#66bf6f10f060d561929de96f9dfe5b8c" mac_openssl --if has_broken_mac_openssl
install_git "ruby-2.1.0-github" git@github.com:github/ruby.git 2.1 ldflags_dirs standard verify_openssl
@dylanahsmith
dylanahsmith / Makefile
Created October 17, 2011 04:13
houdini_escape_xml tests
MODULE = main
SOURCES = $(wildcard *.c)
OBJS = $(SOURCES:%.c=%.o)
CFLAGS = -Wall -I. -ggdb -O0
all: $(MODULE)
$(MODULE): $(OBJS)
clean:
@dylanahsmith
dylanahsmith / rubytest
Last active October 3, 2015 16:58
Wrapper script for running ruby tests
#!/usr/bin/env ruby
require 'pathname'
require 'optparse'
USAGE = "Usage: rubytest [OPTIONS] FILE..."
debug = true
args = []
@dylanahsmith
dylanahsmith / qs-analyzed-wildcard-and-op-bug.sh
Created August 17, 2012 03:09
elasticsearch query_string with analyze_wildcard default operator bug
#!/bin/sh
curl -XDELETE localhost:9200/test
curl -XPUT 'http://localhost:9200/test/doc/1' -d '{
"message" : "apples oranges"
}'
curl -XPUT 'http://localhost:9200/test/doc/2' -d '{
"message" : "apples"
@dylanahsmith
dylanahsmith / boost_ignored_on_prefix_search.sh
Created August 19, 2012 06:08
elasticsearch ignores boost on prefix search
#!/bin/sh
curl -XDELETE 'http://localhost:9200/foo'
curl -XPUT 'http://localhost:9200/foo/?pretty=true' -d '
{
"mappings" : {
"bar" : {
"properties" : {
"title" : {
@dylanahsmith
dylanahsmith / rpoplpushn-benchmark.rb
Created January 14, 2014 16:58
Batch redis atomic pop push benchmark
#!/usr/bin/env ruby
require 'benchmark'
require 'redis'
require 'wolverine'
ITERATIONS = 200
BATCH_SIZE = 200
PROCESS_COUNT = 8
redis = Redis.new(:host => 'localhost')
@dylanahsmith
dylanahsmith / test.rb
Last active January 15, 2019 12:46
mysql2 EINTR on connect error reproduction
#!/usr/bin/env ruby
require 'mysql2'
trap("USR2") {}
pid = fork do
loop do
client = Mysql2::Client.new
client.close
@dylanahsmith
dylanahsmith / test2.rb
Last active January 15, 2019 12:46
mysql2 EINTR on connect prolonged timeout reproduction
#!/usr/bin/env ruby
require 'mysql2'
require 'rbconfig'
CONNECT_TIMEOUT = ARGV.empty? ? nil : ARGV.shift.to_i
trap("USR2") {}
HOST = case RbConfig::CONFIG["host_os"]
@dylanahsmith
dylanahsmith / marshal-print.rb
Last active January 18, 2019 20:55
Print contents of marshal dump for inspection and debugging
#!/usr/bin/env ruby
# frozen_string_literal: true
filename = ARGV.shift
class MarshalPrinter
TYPE_NIL = '0'
TYPE_TRUE = 'T'
TYPE_FALSE = 'F'
TYPE_FIXNUM = 'i'