Skip to content

Instantly share code, notes, and snippets.

<html>
<head><title>Harbour-Link</title></head>
<frameset cols='*' rows='*'>
<frame src='http://www.hlcsi.com/' frameborder='0' scrolling='Auto' noresize marginwidth='0' marginheight='0'>
</frameset>
<!--
<noframes><body>Frame required.</body></noframes>
-->
</html>
index :: ~ » curl -XGET 'http://127.0.0.1:9200/_cluster/health?pretty=true'
{
"status" : "yellow",
"timed_out" : false,
"active_primary_shards" : 12,
"active_shards" : 12,
"relocating_shards" : 0
}%
index :: ~ » curl http://localhost:9200/entries/_search\?q\=\*\&sort\=updated_at:desc\&size\=5\&pretty\=true
@alkema
alkema / superfeedr.log
Created August 23, 2011 20:54
Superfeedr sequential update success
opening connection to superfeedr.com...
opened
opening connection to superfeedr.com...
opened
<- "POST /hubbub HTTP/1.1\r\nContent-Type: application/x-www-form-urlencoded\r\nConnection: close\r\nAuthorization: Basic c3VwZXJmZWVkckBub25maWN0aW9uLmNhOnN1cGVyZmVlZHI=\r\nContent-Length: 236\r\nHost: superfeedr.com\r\n\r\n"
<- "hub.topic=http%3A%2F%2Fsearch.twitter.com%2Fsearch.atom%3Fq%3D%2522Capilano%2520Suspension%2520Bridge%2520%26%2520Park%2522&hub.verify=sync&hub.callback=http%3A%2F%2Fbackend.overherd.at%2Fsubscriptions%2F625%2Fentries&hub.mode=subscribe"
-> "HTTP/1.1 204 No Content\r\n"
-> "Server: nginx/0.8.52\r\n"
-> "Date: Tue, 23 Aug 2011 20:53:51 GMT\r\n"
-> "Connection: close\r\n"
@alkema
alkema / superfeedr.log
Created August 23, 2011 20:50
superfeedr Url has already been taken error
opening connection to superfeedr.com...
opened
opening connection to superfeedr.com...
opened
<- "POST /hubbub HTTP/1.1\r\nContent-Type: application/x-www-form-urlencoded\r\nConnection: close\r\nAuthorization: Basic c3VwZXJmZWVkckBub25maWN0aW9uLmNhOnN1cGVyZmVlZHI=\r\nContent-Length: 837\r\nHost: superfeedr.com\r\n\r\n"
<- "hub.topic=http%3A%2F%2Fsearch.twitter.com%2Fsearch.atom%3Fgeocode%3D49.170175%2C-123.136617%2C100.0km%26q%3D%22WaterMania%22%20OR%20%22Wild%20Whales%20Vancouver%22%20OR%20%22Pacific%20National%20Exhibition%22%20OR%20%22Richmond%20Olympic%20Oval%22%20OR%20%22Skydive%20Vancouver%22%20OR%20%22ClearOne%20Sports%20Ltd%22%20OR%20%22Summer%20Night%20Market%20(Lions%20Communications%20Ltd)%22%20OR%20%22Vancouver%20Lookout%22%20OR%20%22Britannia%20Mine%20Museum%22%20OR%20%22K%20fever%20Karaoke%22%20OR%20%22Thrangu%20Monastery%20Association%22%20OR%20%22iFLY%20Vancouver%20Indoor%20Skydiving%20Inc%22%20OR%20%226%20Pack%20Beach%22%20OR%20%22Grouse%20Mountain%20Resort%22%20OR%20%22Vancouver%20Art%20Gal
@alkema
alkema / elasticsearch.sh
Created August 11, 2011 16:49
install elasticsearch on ubuntu
sudo apt-get install unzip
wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.17.4.zip
unzip elasticsearch-0.17.4.zip
sudo apt-get install python-software-properties
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
sudo apt-get update
sudo apt-get install sun-java6-jre sun-java6-plugin
sudo mv elasticsearch-0.17.4 /usr/local/share
cd elasticsearch-servicewrapper
sudo mv service /usr/local/share/elasticsearch-0.17.4/bin
@alkema
alkema / rest-requests.spec.rb
Created August 4, 2011 18:31
More verbose "connection refused" errors when doing REST with RestClient
context "REST requests" do
use_vcr_cassette "connection_refused_error", :record => :all
message = "Connection refused - when attempting request: POST http://localhost:80 with headers: and payload: payload"
it "should tell me what happened when it was a refused connection" do
lambda {
RestClient.post("http://localhost:80", 'payload')
}.should raise_error(Errno::ECONNREFUSED, message)
end
end
CREATE TABLE for_ddl LIKE foo;
insert into for_ddl select * from foo WHERE ...;
ALTER TABLE for_ddl DROP INDEX bar;
more ddl...
RENAME TABLE foo TO old_foo;
RENAME TABLE for_ddl TO foo;
DROP TABLE old_foo;
@alkema
alkema / akephalos
Created July 18, 2011 15:18
akephalos-js-test
#!/usr/bin/env ruby
require 'rubygems'
require 'capybara'
require 'capybara/dsl'
require 'akephalos'
Capybara.run_server = true
Capybara.current_driver = :akephalos
Capybara.app_host = 'http://localhost:8081'
@alkema
alkema / deploy.rb
Created July 9, 2011 20:01
Capistrano task for a Node.js app with github Forever and NPM.
set :application, "appname"
set :deploy_to, "/var/www"
set :scm, :git
set :repository, "[email protected]:user/app.git"
default_run_options[:pty] = true
set :user, "www-data"
set :domain, "foo.tld"
set :normalize_asset_timestamps, false
@alkema
alkema / make express app testable.js
Created June 15, 2011 17:36
make express app testable
// Only listen on $ node app.js <PORT> so we can test this code
if (!module.parent) {
var port = process.argv[2] || 8081
app.listen(port);
console.log("Express server listening on port %d", app.address().port);
}