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
class ToHaml | |
def initialize(path) | |
@path = path | |
end | |
def convert_all! | |
Dir["#{@path}/**/*.erb"].each do |file| | |
haml_file = file.gsub(/\.erb$/, '.haml') | |
puts "Converting #{File.basename(file)} to #{File.basename(haml_file)}" | |
`html2haml -rx #{file} #{haml_file}` |
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
# Author: Pieter Noordhuis | |
# Description: Simple demo to showcase Redis PubSub with EventMachine | |
# | |
# Update 7 Oct 2010: | |
# - This example does *not* appear to work with Chrome >=6.0. Apparently, | |
# the WebSocket protocol implementation in the cramp gem does not work | |
# well with Chrome's (newer) WebSocket implementation. | |
# | |
# Requirements: | |
# - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby |
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
require 'benchmark' | |
N = 10000 | |
ARRAY = begin | |
[].tap do |array| | |
(1..1000).to_a.each do |entry| | |
array << '' if rand(5) == 0 | |
array << entry.to_s | |
end |
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
var map = new L.Map('map', { | |
center: new L.LatLng(37.7, -122.2), | |
zoom: 1 | |
}); | |
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/f6d87f028288453dac9ad360255344dd/997/256/{z}/{x}/{y}.png?token=4835534173654176bbb716526fe860b7', | |
cloudmadeAttribution = 'Map data © 2011 OpenStreetMap', | |
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18, attribution: cloudmadeAttribution}); | |
map.addLayer(cloudmade); |
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
var mapstraction; | |
// create mxn object | |
mapstraction = new mxn.Mapstraction('map_canvas','googlev3'); | |
mapstraction.addControls({ | |
pan: true, | |
zoom: 'large', | |
overview: true, | |
scale: true, |
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 <CoreText/CoreText.h> | |
@interface NSAttributedString (Height) | |
-(CGFloat)boundingHeightForWidth:(CGFloat)inWidth; | |
@end |
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
# ======================================================= | |
# Importing and searching RSS with ElasticSearch and Tire | |
# ======================================================= | |
# | |
# This script downloads, parses and indexes Stackoverflow RSS feed with ElasticSearch | |
# via the [Tire](https://github.com/karmi/tire) Rubygem. | |
# | |
# Requirements | |
# ------------ | |
# |
NewerOlder