alandipert (Alan Dipert)

Name
Alan Dipert
Email
Website/Blog
http://alan.dipert.org
Location
Rochester, NY
Member Since
Sep 23, 2008 (about 1 year)

Following 7 coders and watching 58 repositories view all →

Public Repositories (25)

  • step

    Tiny Scala web framework, inspired by Sinatra

    legend

    Last updated Tue Feb 09 09:27:16 -0800 2010

  • eventcal

    legend

    Forked from laureek/eventcal Thu Jan 21 08:49:32 -0800 2010

    Last updated Sun Feb 07 11:29:10 -0800 2010

  • blinky

    Blink LED on pin 13 on an Arduino NG

    legend

    Last updated Wed Feb 03 09:17:15 -0800 2010

  • underscore

    Functional Programming Aid for Javascript. Works well with jQuery.

    legend

    Forked from documentcloud/underscore Thu Jan 14 01:00:37 -0800 2010

    Last updated Sun Jan 31 23:58:17 -0800 2010

  • fortunefinder

    A baby project to help me learn the basics of Sinatra

    legend

    Forked from ashumz/fortunefinder Sat Jan 30 23:42:04 -0800 2010

    Last updated Sun Jan 31 01:06:53 -0800 2010

  • gitrubytesting-presentation

    A slidedown presentation on git and ruby testing

    legend

    Last updated Fri Dec 11 13:22:50 -0800 2009

  • interlock-www

    Interlock, the Rochester Hackerspace nanoc site

    legend

    Last updated Fri Nov 20 02:51:59 -0800 2009

  • minirpn

    Small command-line RPN calculator in C

    legend

    Last updated Sat Nov 14 21:29:32 -0800 2009

  • potion

    _why the lucky stiff's little language

    legend

    Forked from fogus/potion Mon Feb 08 07:23:05 -0800 2010

    Last updated Tue Oct 27 07:37:00 -0700 2009

  • ruby-aws

    This fork of Ruby/AWS lets you set your secret ID in the constructor of Request

    legend

    Last updated Sat Sep 05 10:24:46 -0700 2009

  • scala-presentation

    Scala presentation for Rochester Hackers meetup

    legend

    Last updated Thu Sep 03 16:17:29 -0700 2009

  • tailnote

    like tail -f, but matches lines and growls them

    legend

    Last updated Thu Aug 13 00:12:47 -0700 2009

  • engineyard-contest

    A C program for computing Hamming distances of random strings (for the EngineYard SHA1 contest)

    legend

    Last updated Tue Jul 21 03:32:48 -0700 2009

  • dotfiles

    My screen, zsh, and vim configs

    legend

    Last updated Sat Jul 18 12:15:57 -0700 2009

  • shave

    a wannabe lisp interpreter

    legend

    Last updated Thu Jul 02 03:52:24 -0700 2009

  • fswatch

    Monitor a directory for changes and run a shell command, using OS X's FSEvents API

    legend

    Last updated Thu Jun 25 18:06:21 -0700 2009

  • simsolitaire

    the beginnings of a Solitaire (Klondike) simulator in C

    legend

    Last updated Tue Jun 16 02:15:30 -0700 2009

  • phc

    Inline C/HTML converter

    legend

    Last updated Tue Jun 16 01:58:47 -0700 2009

  • rails-jsonservicegenerator

    This is a quick fork of Rails's boxed 'scaffold' generator that computes JSON by default, along w...

    legend

    Last updated Mon May 18 01:20:58 -0700 2009

  • golf

    The Golf Application Server

    legend

    Last updated Sat May 16 08:10:38 -0700 2009

  • resource-js

    a Javascript clone of the awesome RestClient::Resource

    legend

    Last updated Tue Apr 28 13:05:09 -0700 2009

  • brainfuck-java

    an old Java Brainfuck interpreter

    legend

    Last updated Sat Apr 25 22:40:32 -0700 2009

  • jtemplate

    Java project scaffolding with Ant - automatic executable Jar with included dependency resources

    legend

    Last updated Tue Feb 17 12:47:27 -0800 2009

  • jsonptunnel

    C (F)CGI for tunneling POST over GET for cross-site JSONP POST requests

    legend

    Last updated Thu Jan 15 14:30:55 -0800 2009

  • campfireclient

    Java API and command-line client for Campfire, the 37Signals chat application.

    legend

    Last updated Mon Sep 29 10:30:45 -0700 2008

Public Activity feed

alandipert forked fogus/potion Mon Feb 08 07:23:05 -0800 2010
Forked repository is at alandipert/potion
alandipert forked whymirror/potion Mon Feb 08 07:15:47 -0800 2010
Forked repository is at alandipert/potion
alandipert started watching capotej/chewbacca Mon Feb 08 01:56:04 -0800 2010
chewbacca's description:
chewbacca is a set of rake tasks to facilitate the management of remote files
alandipert edited a page in the laureek/eventcal wiki Sun Feb 07 11:52:36 -0800 2010
alandipert pushed to master at alandipert/eventcal Sun Feb 07 11:29:11 -0800 2010
HEAD is 6b1bc9faa41691566a9c11ccf1aa9c0f1c441cc2
alandipert pushed to master at alandipert/eventcal Sun Feb 07 11:17:20 -0800 2010
HEAD is a807c33d3a739891a099c6bcd76e89c8b5bd117c

4 commits »

alandipert pushed to master at alandipert/eventcal Wed Feb 03 14:13:17 -0800 2010
HEAD is 86d6f9577b188017ec2e421f3b0e75b5efd158d4
alandipert created branch master at alandipert/blinky Wed Feb 03 09:17:15 -0800 2010
alandipert created repository blinky Wed Feb 03 09:17:05 -0800 2010
New repository is at alandipert/blinky
alandipert started watching LauJensen/cloneit Tue Feb 02 13:56:20 -0800 2010
cloneit's description:
A small Reddit Clone
alandipert updated gist: 292423 Mon Feb 01 21:56:19 -0800 2010
def let(binds, &body) eval("proc{|#{binds.keys.join(',')}| body }").call(*binds.values).call end
alandipert updated gist: 292423 Mon Feb 01 21:55:19 -0800 2010
def let(binds, &body) eval("proc{|#{binds.keys.join(',')}| body.call }").call(*binds.values) end
alandipert forked gist: 292423 Mon Feb 01 21:55:08 -0800 2010
def let(binds, &body) (eval "proc{|#{binds.keys.join(',')}| body.call }").call(*binds.values) end
alandipert pushed to master at alandipert/underscore Sun Jan 31 23:58:17 -0800 2010
HEAD is 573faa079c557624883aeb52fbd52340a770aa7c

3 commits »

alandipert updated gist: 291265 Sun Jan 31 15:42:14 -0800 2010
#include <stdio.h> #define ID_SIZE 6
alandipert updated gist: 291265 Sun Jan 31 15:42:01 -0800 2010
#include <stdio.h> #define ID_SIZE 6
alandipert updated gist: 291265 Sun Jan 31 15:39:20 -0800 2010
#include <stdio.h> #define ID_SIZE 6
alandipert updated gist: 291265 Sun Jan 31 14:04:59 -0800 2010
#include <stdio.h> //takes a string to read, a byte array to put stuff into, and the number of
alandipert updated gist: 291265 Sun Jan 31 14:01:31 -0800 2010
#include <stdio.h> //takes a string to read, a byte array to put stuff into, and the number of
alandipert forked gist: 291265 Sun Jan 31 14:00:03 -0800 2010
#include <stdio.h> //takes a string to read, a byte array to put stuff into, and the number of
alandipert pushed to master at alandipert/fortunefinder Sun Jan 31 01:06:53 -0800 2010
alandipert pushed to master at alandipert/fortunefinder Sun Jan 31 00:33:06 -0800 2010
HEAD is f7dcb2fb52f0e459b193bf09e9f9873a4f4a9c7b
alandipert pushed to master at alandipert/fortunefinder Sun Jan 31 00:25:45 -0800 2010
alandipert forked ashumz/fortunefinder Sat Jan 30 23:42:05 -0800 2010
Forked repository is at alandipert/fortunefinder
alandipert started watching ashumz/fortunefinder Sat Jan 30 20:54:27 -0800 2010
fortunefinder's description:
A baby project to help me learn the basics of Sinatra
alandipert forked gist: 289911 Fri Jan 29 09:14:37 -0800 2010
(defn- get-chars "gets the next char(s) in the sequence" [s offset]
alandipert pushed to master at alandipert/eventcal Wed Jan 27 13:46:00 -0800 2010
HEAD is 650d8b58535c00b9d14fb7f76b25cc99bd188e25
alandipert added rossabaker to step Wed Jan 27 12:52:58 -0800 2010
step is at alandipert/step
alandipert pushed to master at alandipert/step Wed Jan 27 12:51:12 -0800 2010
HEAD is 511b7a47333f1fe716ae925e95bfe6a6418a7e94

5 commits »

alandipert pushed to master at alandipert/step Wed Jan 27 12:50:05 -0800 2010
HEAD is fffa7931404d96465a7c5ee67403f9e063f34b0d

2 commits »

alandipert pushed to master at alandipert/underscore Wed Jan 27 12:46:45 -0800 2010
HEAD is 602cfaf01daf9797d2894d9167881ed645786477

2 commits »

alandipert updated gist: 268082 Wed Jan 27 08:17:16 -0800 2010
;; Y combinator and fib in clojure ;; see also: ;; http://www.fatvat.co.uk/2009/04/understanding-...
alandipert updated gist: 268082 Wed Jan 27 08:16:50 -0800 2010
;; Y combinator and fib in clojure ;; see also: ;; http://www.fatvat.co.uk/2009/04/understanding-...
alandipert updated gist: 279954 Sun Jan 24 20:15:46 -0800 2010
;;; ELIZA, with DOCTOR rules ;;; Adapted from http://norvig.com/paip/eliza.lisp, ;;; with some mi...
alandipert pushed to master at alandipert/underscore Sun Jan 24 20:00:26 -0800 2010
HEAD is e763a5326ebec59abb02f0746bdf67f45796ce24

8 commits »