Skip to content

Instantly share code, notes, and snippets.

View bravoecho's full-sized avatar

Luca bravoecho

  • UK
  • 08:13 (UTC +01:00)
View GitHub Profile
require 'yaml'
require 'logger'
require 'active_record'
namespace :db do
def create_database config
options = {:charset => 'utf8', :collation => 'utf8_unicode_ci'}
create_db = lambda do |config|
ActiveRecord::Base.establish_connection config.merge('database' => nil)
#!/bin/sh
#
# Shell script that configures gnome-terminal to use solarized theme
# colors. Written for Ubuntu 11.10, untested on anything else.
#
# Solarized theme: http://ethanschoonover.com/solarized
#
# Adapted from these sources:
# https://gist.github.com/1280177
# http://xorcode.com/guides/solarized-vim-eclipse-ubuntu/
@bravoecho
bravoecho / marsaglia.rb
Last active December 18, 2015 20:49
Normally distributed random values
#!/usr/bin/env ruby
require 'pp'
require 'benchmark'
require 'csv'
require 'securerandom'
# Generates normally distributed random numbers given a mean and a
# standard deviation.
#
@bravoecho
bravoecho / gist:5842768
Created June 22, 2013 21:58
Normally distributed random values
#!/usr/bin/env ruby
require 'securerandom'
require 'pp'
# NormalRand is an attempt to port the Java implementation from Wikipedia
# <https://en.wikipedia.org/wiki/Marsaglia_polar_method>
#
# private static double spare;
# private static boolean isSpareReady = false;
#!/bin/sh
# For simplicity's sake I dump this file in the project folder and execute
# it from the VM straight out of /vagrant -> could run as part of box/basebox buildout.
alias apt-get="sudo apt-get"
alias mount="sudo mount"
alias umount="sudo umount"
# Oh. Start by making .vbox_version contain the desired version string.
VBOX_VERSION=$(cat /home/vagrant/.vbox_version)

Motivation

We recently were working on a project where the version of Firefox on the development machines was causing acceptance tests running on Capybara and Selenium to fail and/or hang erroneously. The solution was to point Selenium at a custom version of Firefox. We also added the Firefox binaries to the application git repo so that all devs could run against a known good version of Firefox.

Solution

  1. Download the desired version of Firefox from ftp://ftp.mozilla.org/pub/firefox/releases/

  2. Put Firefox.app in your rails app somewhere like ./bin/spec/macosx/

@bravoecho
bravoecho / jquery-typist.js
Created December 7, 2012 19:06
typist jQuery plugin
$.fn.typist = function (content) {
var current = [];
var remaining = content.split(/.{0}/);
var self = this;
return this.each(function () {
function typist () {
setTimeout(function () {
current.push(remaining.shift());
self.val(current.join(""));
module Suggestions
def self.included( base )
base.extend ClassMethods
end
module ClassMethods
# USAGE:
#
# class Doctor
# # this model should have the typical Sunspot.setup clause somewhere else
@bravoecho
bravoecho / flattener.rb
Created November 28, 2012 13:16
flatten nested hash - recursive vs non-recursive
require 'pry'
data = {
a: {
alfa: "alfa",
beta: "beta"
},
b: 2,
c: {
alfa: {
@bravoecho
bravoecho / gist:3423782
Created August 22, 2012 08:36 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt