Skip to content

Instantly share code, notes, and snippets.

@ryandotsmith
ryandotsmith / fonts.conf
Created February 7, 2012 21:13
Setting this in my home dir drastically improved font rendering.
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit name="hinting" mode="assign">
<bool>false</bool>
</edit>
</match>
@ryandotsmith
ryandotsmith / event_ordering.md
Created February 11, 2012 00:38
an event ordering schema

An Event Ordering Schema

Shushu receives events in no particular order and long after the event originated in the client's system. Therefore, it is generally desired to depend on Shushu not caring about the order or time in which it receives events. The following text examines thoughts on how to address such issues.

The Problem

Shushu provides a resources-group-membership API that takes a resource

@ryandotsmith
ryandotsmith / event_buffering.md
Created February 14, 2012 04:10
event buffering

Event Buffering

Eventually platforms outgrow the single-source-tree model and become distributed systems. A common pattern in these distributed systems is distributed composition via event buffering. Here we motivate and describe this event buffering pattern.

The Problem

@ryandotsmith
ryandotsmith / query.sql
Created February 28, 2012 20:11
select array aggregates
-- This will give us a table that has a row for each resource but includes all of the events related to the
-- resource on the row. Calling array_agg will load all of the data in memory which means that I can do math
-- on the set really quickly. Also, callers of this query will be able to get all of the data for the invoice
-- in one shot.
create view invoice as
select
a.resource_id,
sum(a.qty) as qty,
array_agg(hstore(a.*)) as events_collection
@ryandotsmith
ryandotsmith / instruments.rb
Created April 6, 2012 07:09
Sequel & Sinatra Instrumentation
module Instruments
def self.set_logger(l, m)
@logger = l
@method = m
end
def self.logger
@logger
end
@ryandotsmith
ryandotsmith / getting_a_job.md
Created April 10, 2012 23:37
Getting a Job: How I transition from college to career.

Getting a Job

May 25 2010

I recently graduated from University with a B.S. in Mathematics and a minor in Computer Science. I love to write code and so naturally I began applying for computer engineering jobs. The keyword is computer engineering, NOT tech support, web ninja or css guru. What I found in the job market was shocking!

YOUR DEGREE DOES NOT MATTER. that much

@ryandotsmith
ryandotsmith / worker-pattern.md
Created April 11, 2012 20:15
The Work Pattern

The Worker Pattern

2011-05-22

Introduction

This article is the accumulation of a tutorial that was given as a training session at Red Dirt Ruby Conf (2011) and a formal talk given at Rails Conf (2011). To understand the theory behind The Worker Pattern, read over the slides and the slide notes. From there, you can follow the instructions in the Tutorial

@ryandotsmith
ryandotsmith / process-partitioning.md
Created April 13, 2012 06:40
Process Partitioning

Process Partitioning

The Problem

When working with large, high volume, low latency systems, it is often the case that processing data sequentially becomes detrimental to the system's health. If we only allow 1 process to work on our data we run into several challenges:

  • Our process may fall behind resulting in a situation which it is impossible for our process to catch up.
  • Our singleton process could crash and leave our system in a degraded state.
  • The average latency of data processing could be dramatically affected by outlying cases.
@ryandotsmith
ryandotsmith / talk.md
Created July 31, 2012 21:22
Distributed Systems: Tales From the Crypt

Distributed Systems: Tales From the Crypt

A year ago we thought it would be a good idea to start pulling apart services from our core application. Today we have a network of services with clear boundaries, well defined semantics, and concise APIs. The last year was one of the toughest and most enlightening years of my programming life. In this talk I will share the tragedies, heartaches, and victories that we experienced in our migration towards distributed systems. We will look at some patterns and anti-patterns that were discovered along the way. Of course we will be talking about Ruby, PostgreSQL, and their roles in our distributed system.

@ryandotsmith
ryandotsmith / l2met-notes.md
Created August 24, 2012 19:52
L2met Notes

L2met

Problems to solve

  • Multi-tenant
  • Leverage availability of Heroku's HTTP stack
  • Easiest possible DX

Architecture