Skip to content

Instantly share code, notes, and snippets.

@rustyio
rustyio / gist:4182514
Created December 1, 2012 14:16
Growing Startup Seeking A Well-Rounded Software Engineer

We are a new DC-area startup with Angel funding. Launched our prototype in April of this year; since then we've seen steady growth and happy, paying customers. (And we're already making waves among established players in the residential real estate industry.)

It's time to grow. We're looking to add a really good, well-rounded engineer to work alongside our CTO. (Rockstars, Code Ninjas, Ninjaneers, Ninjanerds, Silverbacks, and Brogrammers need not apply.) You'll be coding, of course, but you'll also need to think through design, architecture, and product-market fit, and take complete ownership of several key components of our system. In other words, be ready to wear many hats and change them on short notice.

More about us:

  • Co-founders have history of successful tech startups. (10+ years of startup experience each.)
  • Board of directors have deep knowledge of industry and lots of connections. (And a bunch of Ivy league degrees, FWIW.)
  • Heavily influenced by Hacker News culture and The Lean Startup.
@rustyio
rustyio / gist:1227557
Created September 19, 2011 20:47
Squarespace on Textmate
Use the atom access point: http://www.squarespace.com/process/service/PostInterceptor#MODULEID
For example: http://www.squarespace.com/process/service/PostInterceptor#1234567
You can get the MODULEID number by viewing the source of your blog page and looking for a line that says "Squarespace.Constants.CURRENT_MODULE_ID".
#!/bin/bash
while IFS= read -r -n1 c
do
for screen in $@
do
if [ "$c" == "" ]; then
screen -fn -X at $screen stuff $'\012'
else
screen -fn -X at $screen stuff $"$c"
# Emacs-style Window Management
# - Descriptions below use Emacs terminology.
escape ^Xx # Use C-x to start all commands...
bind c detach # C-x c - Detach screen session
bind ^c detach # C-x C-c - Detach screen session
bind f screen # C-x f - New buffer
bind ^f screen # C-x C-f - New buffer
bind k kill # C-x k - Kill current buffer
bind b other # C-x b - Switch to last buffer
bind ^b windowlist # C-x C-b - List all buffers
@rustyio
rustyio / subhg
Created January 24, 2010 18:54
subhg
#!/usr/bin/env sh
# subhg
#
# A tiny wrapper around hg to help you manage
# Mercurial sub-projects easily, safely, and simply.
#
# Created by Rusty Klophaus (@rklophaus)
#
# See http://rklophaus.com/subhg for usage.
@rustyio
rustyio / subgit
Created January 24, 2010 18:48
subgit
#!/usr/bin/env sh
# subgit
#
# A tiny wrapper around git to help you manage
# Git sub-projects easily, safely, and simply.
#
# Created by Rusty Klophaus (@rklophaus)
#
# See http://rklophaus.com/subgit for usage.
@rustyio
rustyio / gproc_tests.erl
Created September 16, 2009 13:16
gproc_tests.erl
-module(gproc_tests).
-compile(export_all).
-include_lib("stdlib/include/qlc.hrl").
go() -> make:all([load]).
register_stuff() ->
gproc:reg({n, l, key1}, value1),
gproc:reg({n, l, key2}, value2),
gproc:reg({n, l, key3}, value3),