Skip to content

Instantly share code, notes, and snippets.

View rojotek's full-sized avatar

Rob Dawson rojotek

  • ConsenSys
  • Australia
View GitHub Profile
@rojotek
rojotek / gist:1955943
Created March 2, 2012 05:36
Ruby code to detect the language of a webpage.
# gem install nokogiri
# gem install cld
# Use CLD, a wrapper around the google Compact Language Detector to detect the language that a
# webpage is in. Use Nokogiri to pull out the text of the page.
require 'cld'
require 'open-uri'
require 'nokogiri'
@rojotek
rojotek / file1.sh
Created January 20, 2012 04:24
Ruby with OpenSSL on OSX 10.7
rvm pkg install openssl
rvm remove 1.9.3
rvm install 1.9.3 --with-openssl-dir=$rvm_path/usr --with-gcc=clang
@rojotek
rojotek / controller.rb
Created November 29, 2011 07:12
render json in a controller.
# code to retrieve the collection - the to_json filtering works on a collection, or a single model record
render :json => collection.to_json(:only => [ :id, :name, :another_attribute])
@rojotek
rojotek / application.rb
Created November 29, 2011 06:59
Include root in json setting
...
ActiveRecord::Base.include_root_in_json = false
...