Skip to content

Instantly share code, notes, and snippets.

Local
Open recent -> Recent DBs from Local
error? -> Empty
Opened Local*
Recent DBs from Local
Open recent local db -> Try Local Db from Local?
Open recent remote db -> Try Remote Db from Local?
Dismiss -> Local
@neotyk
neotyk / Vagrantfile
Created April 20, 2012 11:50 — forked from skuro/Vagrantfile
Vagrant baby steps
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "lucid32"
config.vm.provision :puppet, :options => "--verbose --debug"
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.manifest_file = "default.pp"
@neotyk
neotyk / stunnr.core.clj
Created October 6, 2011 09:51 — forked from skuro/stunnr.core.clj
stunnr.core.clj
(ns stunnr.core
(:require [http.async.client :as c]
[http.async.client.request :as r]))
(def results (atom []))
(def requests (atom []))
(def client (c/create-client))
import com.ning.http.client.AsyncCompletionHandler;
import com.ning.http.client.AsyncHttpClient;
import com.ning.http.client.Request;
import com.ning.http.client.Response;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Future;
public class Problem {