This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { |