Skip to content

Instantly share code, notes, and snippets.

@joost
joost / ruby_google_analytics_server_to_server.md
Last active November 27, 2023 15:43
Google Analytics API (server-to-server) using Ruby
@joost
joost / google_timezone.rb
Created January 30, 2013 19:50
Get time zone id of a location by latitude and longitude (lat, lng).
# See: https://developers.google.com/maps/documentation/timezone/
# Uses HTTParty gem (https://github.com/jnunemaker/httparty).
# Usage:
# GoogleTimezone.search(:lat => 51.38494009999999, :lng => -0.3514683)['timeZoneId']
class GoogleTimezone
include HTTParty
base_uri 'https://maps.googleapis.com'
@joost
joost / search_hash.rb
Created November 28, 2012 12:27
Convert a params Hash to a Sunspot search.
# SearchHash converts a Hash with search options to a Sunspot search.
# Example:
# s = SearchHash.new(Model, :q => 'some string to match in all text fields')
# s.search # The Sunspot search
# s.search.results # The actual results
#
# s = SearchHash.new(Model, :some_field__gt => 12, :text_field_name => 'some query')
#
# Pagination:
# s = SearchHash.new(Model, {:some_field__gt => 12, :text_field_name => 'some query', :page => 2, :per_page => 100}, {:per_page_max => 200, :per_page_default => 25})
@joost
joost / solr.rb
Created November 27, 2012 12:38
Solr 4.0 brew recipe
require 'formula'
class Solr < Formula
url 'http://www.apache.org/dyn/closer.cgi?path=lucene/solr/4.0.0/apache-solr-4.0.0.tgz'
homepage 'http://lucene.apache.org/solr/'
sha1 '0cb61d9572516fc627785201b79b3a85e95f877d'
def script; <<-EOS.undent
#!/bin/sh
if [ -z "$1" ]; then