Skip to content

Instantly share code, notes, and snippets.

@roloenusa
roloenusa / rails.rb
Created March 8, 2011 02:39
Setting up Rails as a SSL server
=begin
This is courtesy of:
http://www.nearinfinity.com/blogs/chris_rohr/configuring_webrick_to_use_ssl.html
This is ONLY for rails3 and does not work with earlier versions.
=end
# All you have to do to get WEBrick running in SSL is modify the script/rails file and add the following lines (above the APP_PATH variable declaration):
# Please modify the :SSLPrivateKey and :SSLCertificate to point at the right location.
require 'cgi'
require 'uri'
require 'net/http'
require 'open-uri'
require 'nokogiri'
puts "Please copy/paste the MLS link provided by your realtor:"
url = gets().chomp
uri = URI(url)
@roloenusa
roloenusa / gist:471723
Created July 11, 2010 18:09
Objective-C
//Load from the dictionary of colors.
NSString *key;
for (key in colors) {
//Do something with the key
NSArray * a = [colors valueForKey:key];
}
mBSpecs = {};
mBSpecs.panel = CreateFrame( "Frame", "mBindingSpecs", UIParent );
-- Register in the Interface Addon Options GUI
-- Set the name for the Category for the Options Panel
mBSpecs.panel.name = "mBindingSpecs";
--mBSPecs.parent = "mBindings";
-- Add the panel to the Interface Options
InterfaceOptions_AddCategory(mBSpecs.panel);