Skip to content

Instantly share code, notes, and snippets.

@sosedoff
sosedoff / net_ssh_session.rb
Created October 30, 2012 06:08
Net::SSH::Session experiments
require 'net/ssh'
require 'net/ssh/shell'
require 'open3'
module Net
module SSH
class SessionCommand
attr_reader :command, :output, :exit_code
# Initialize a new session command
@sosedoff
sosedoff / Gemfile
Created July 27, 2012 05:12
Travis build notifications for Apple Notification Center
source :rubygems
gem 'terminal-notifier'
gem 'pusher-client', :git => 'git://github.com/pusher/pusher-ruby-client.git'
@sosedoff
sosedoff / opentable_client.rb
Last active September 15, 2020 14:46
OpenTable API Client - Visit http://opentable.herokuapp.com for details
require "faraday"
require "faraday_middleware"
module OpenTable
class Error < StandardError ; end
module Request
API_BASE = "http://opentable.herokuapp.com"
def connection
@sosedoff
sosedoff / yelp.rb
Created February 8, 2012 05:13
Fetch business price range from Yelp
require 'faraday'
module Yelp
PRICE_RANGE_REGEX = /<span id="price_tip" \b[^>]*>(.*?)<\/span>/i
def self.restaurant_price_range(id)
url = "http://www.yelp.com/biz/#{id}"
body = Faraday.get(url).body
body.scan(PRICE_RANGE_REGEX).flatten.first.to_s.length
end
@sosedoff
sosedoff / rack_revision.rb
Created December 12, 2011 23:08
Add X-Revision headers from capistrano deployment
module Rack
class Revision
@@revision = nil
File = ::File
def initialize(app, &block)
@app = app
@block = block
@file = File.join(Dir.pwd, 'REVISION')
end
@sosedoff
sosedoff / mkmf.log
Created September 7, 2011 20:57
charlock_holmes failed build
have_library: checking for main() in -licui18n... -------------------- yes
"/usr/bin/gcc-4.2 -o conftest -I/Users/sosedoff/.rvm/rubies/ruby-1.9.2-p290/include/ruby-1.9.1/x86_64-darwin10.8.0 -I/Users/sosedoff/.rvm/rubies/ruby-1.9.2-p290/include/ruby-1.9.1/ruby/backward -I/Users/sosedoff/.rvm/rubies/ruby-1.9.2-p290/include/ruby-1.9.1 -I. -I/usr/local/Cellar/icu4c/4.4.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wpointer-arith -Wwrite-strings -Wno-missing-field-initializers -Wshorten-64-to-32 -Wno-long-long -fno-common -pipe conftest.c -L. -L/Users/sosedoff/.rvm/rubies/ruby-1.9.2-p290/lib -L/usr/local/Cellar/icu4c/4.4.1/lib -L. -L/usr/local/lib -lruby.1.9.1-static -lpthread -ldl -lobjc "
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: int main() {return 0;}
/* end */
@sosedoff
sosedoff / agents.txt
Created June 27, 2011 21:18
List of unique user-agents
-
./pma2/0.1 libwww-perl/5.805
Aghaven/Nutch-1.2
Baiduspider+(+http://www.baidu.com/search/spider.htm)
BlackBerry9000/4.6.0.167 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 ips-agent
BlackBerry9330/5.0.0.857 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105
EMail Exractor
Gigabot/3.0 (http://www.gigablast.com/spider.html)
Gimmie60/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.11)
Googlebot-Image/1.0
@sosedoff
sosedoff / google2.rb
Created May 19, 2011 19:59
Goole OAuth2 omniauth strategy
require 'omniauth/oauth'
require 'multi_json'
module OmniAuth
module Strategies
class Google2 < OAuth2
def initialize(app, client_id = nil, client_secret = nil, options = {}, &block)
client_options = {
:site => 'https://accounts.google.com/o/oauth2',
:authorize_url => 'https://accounts.google.com/o/oauth2/auth',
@sosedoff
sosedoff / text_markup.rb
Created May 10, 2011 23:21
TextMarkup module for Ruby 1.9.2
require 'RedCloth'
require 'rdiscount'
require 'rdoc/markup/to_html' # ruby1.9.2 specific
module TextMarkup
extend self
# Auto-detect format from filename and render content
def render(filename, content)
name = File.basename(filename.to_s.strip)
@sosedoff
sosedoff / sphinxclient.c
Created April 19, 2011 22:59
Sphinxclient.c path
__END__
--- a/api/libsphinxclient/sphinxclient.c
+++ b/api/libsphinxclient/sphinxclient.c
@@ -277,7 +277,7 @@
}
-void sock_close ( int sock );
+static void sock_close ( int sock );