This file contains 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 | |
# ------------ | |
# |
This file contains 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 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 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 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 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 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 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
// Page init code is at the bottom | |
var Map = (function(map, $){ | |
var exports = map || {}; | |
var geo = new google.maps.Geocoder(), | |
geocode = { | |
address: [ config.project_location.street, | |
config.project_location.city, | |
config.project_location.country].join(", ") |
This file contains 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 Api::V1::SessionsController < Devise::SessionsController | |
prepend_before_filter :require_no_authentication, :only => [:create] | |
skip_before_filter :verify_authenticity_token, :if => Proc.new { |c| c.request.format == 'application/json' } | |
before_filter :validate_auth_token, :except => :create | |
include Devise::Controllers::Helpers | |
include ApiHelper | |
respond_to :json | |
def create | |
resource = User.find_for_database_authentication(:email => params[:user][:email]) |
This file contains 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
- (void)preparePushConfigurationParams { | |
NSMutableDictionary *finalParamsDict = [NSMutableDictionary dictionary]; | |
NSArray *temp = [self.selectedTeamsForNews arrayByAddingObjectsFromArray:self.selectedTeamsForPush]; | |
NSMutableDictionary *finalDict = [NSMutableDictionary dictionary]; | |
for (FMTeam *aTeam in temp) { | |
NSMutableDictionary *aDict = [NSMutableDictionary dictionary]; | |
BOOL configure_for_push = [self.selectedTeamsForPush containsObject:aTeam]; | |
BOOL configure_for_news = [self.selectedTeamsForNews containsObject:aTeam]; | |
[aDict setObject:[NSNumber numberWithInt:aTeam.fm_team_id] forKey:@"fm_team_id"]; |
OlderNewer