Skip to content

Instantly share code, notes, and snippets.

@ryandotsmith
ryandotsmith / worker.rb
Created August 19, 2011 17:03
A worker that forks
module QC
class Worker
MAX_LOCK_ATTEMPTS = ENV["QC_MAX_LOCK_ATTEMPTS"] || 5
def initialize
@running = true
@queue = QC::Queue.new(ENV["QUEUE"])
handle_signals
end
@ryandotsmith
ryandotsmith / exp_backoff.rb
Created August 21, 2011 04:48
2 different approaches to locking jobs in queue_classic
def lock_job
attempts = 0
job = nil
until job
job = @queue.dequeue
if job.nil?
attempts += 1
if attempts < MAX_LOCK_ATTEMPTS
sleep(2**attempts)
next
@ryandotsmith
ryandotsmith / scratch buffer
Created October 15, 2011 19:44
A note on log messages
abacus.go
Log Messages
All of our production systems in The Vault have their
STDOUT connected to Heroku's logplex. We also connect
syslog draings to Logplex that outlet all messages to
PaperTrailapp. Each system outputs two classes of
messages. The first class of message is the system
class. Messages of the system class are originated by
@ryandotsmith
ryandotsmith / config.ru
Created October 21, 2011 22:40
Logging mechanics explained through Ruby
# Streams of Data Part I
## Logging Basics
# We don't need anything complex here.
# We will use the logger in the stdlib.
# Rails.logger works fine here as well.
# Using Rails.logger is prefered as you won't muck up
# the screen when running tests.
require 'logger'
@ryandotsmith
ryandotsmith / ba.sh
Created November 27, 2011 02:00
tab completion for attaching to tmux sessions
# Tab completion for tmux sessions.
# Quickly open new tmux sessions in your projects dir.
# Setup:
# Source this code in your bash shell.
# Update the code_dir var with the root directory of your source code.
# Usage:
# Use the tab to open an existing session.
@ryandotsmith
ryandotsmith / first_and_last.sql
Created December 26, 2011 21:48
SQL helper functions for first of month and last of month
CREATE OR REPLACE FUNCTION last_day(timestamptz)
RETURNS timestamptz AS
$$
SELECT (date_trunc('MONTH', $1) + INTERVAL '1 MONTH - 1 day');
$$ LANGUAGE 'sql' IMMUTABLE STRICT;
CREATE OR REPLACE FUNCTION first_day(timestamptz)
RETURNS timestamptz AS
$$
SELECT date_trunc('MONTH', $1);
@ryandotsmith
ryandotsmith / gist:1630298
Created January 18, 2012 01:52
Build and serve beanstalkd from a dyno
#!/usr/bin/env sh
curl -lo beanstalkd.tar.gz "http://cloud.github.com/downloads/kr/beanstalkd/beanstalkd-1.4.6.tar.gz"
tar xvzf beanstalkd.tar.gz
cd beanstalkd-1.4.6/
./configure
make
python -m SimpleHTTPServer $PORT
@ryandotsmith
ryandotsmith / a-backbone-js-demo-app-sinatra-backend.md
Created January 22, 2012 01:42
Backbone demo app with sinatra backend

A Backbone.js demo app (Sinatra Backend)

Oct 16 2010

Updates

  • 04/10/2011 - Updated application.js and application.rb thanks to @rebo's comments

In this article, I will walk through some simple steps to get a [demo app][2] up and running with [Backbone.js][3] and [Sinatra][4] on [Heroku][5].

@ryandotsmith
ryandotsmith / worker-pattern.md
Created January 23, 2012 05:03
The Worker Pattern

The Worker Pattern

Contents

  • Introduction
  • Definition
  • Examples
  • Links

Introduction

@ryandotsmith
ryandotsmith / fdp.md
Created February 2, 2012 00:46
Financial Data Processing Model

WIP

This document is still a work in process. Please email: [email protected] for ideas and contributions.

Financial Data Processing Model

The PAAS revolution has paved a way for a new class of internet business. Platform services like: Heroku, WebSolr & Joyent are breaking barriers for application developers by removing the burden of server management.