Skip to content

Instantly share code, notes, and snippets.

View madpilot's full-sized avatar

Myles Eftos madpilot

View GitHub Profile
The Problem: We have a WCF JSON API, that we need to make accessible from third-party sites (on IE7+), so JSON-P looks like a good solution.
Issue is, (what the .NET guy here has told me), each endpoint in the WCF router will need to be re-written (or added to) to handle GETs (We currently use GET, POST, and DELETE depending on the action). That sucks.
My idea: An IIS module (handler?) that intercepts JSON-P requests, and transforms the request to something the WCF router can handle, then pads the response. Basically transparent JSON-P padding around WCF.
Make sense? Does this exist already?
class Foo
def this_fails
puts self.bar
end
def this_works
puts bar
end
private
@madpilot
madpilot / haversize.rb
Created March 9, 2013 08:04
Ruby haversine - finds the distance between to long/lats. Can be used as a paramater for sort.
def haversine(x, y)
r = 6371
lat1 = x.latitude
lat2 = y.latitude
lon1 = x.longitude
lon2 = y.longitude
d_lat = (lat2 - lat1) * Math::PI / 180
d_lon = (lon2 - lon1) * Math::PI / 180
document.domain = 'whatever.com';
@madpilot
madpilot / span_delay.rb
Created August 4, 2012 04:12
A Metal app that looks for a timestamp on a form field, and makes sure it happened at least two seconds ago...
# Allow the metal piece to run in isolation
require(File.dirname(__FILE__) + "/../../config/environment") unless defined?(Rails)
class SpamDelay
def self.call(env)
@request = Rack::Request.new(env)
if env["PATH_INFO"] =~ /^\/contact/
if env['REQUEST_METHOD'] == 'POST'
if @request.params['t'] && @request.params['t'].to_i < Time.now.gmtime.to_i - 2
@madpilot
madpilot / response.html
Created May 23, 2012 04:46
Responsive images idea
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
var resize = function() {
$('altimg').each(function(i, e) {
if($(e).css('display') != "none") {
$('img[data-name=' + $(e).attr('data-name') + ']').attr('src', $(e).attr('src')).attr('alt', $(e).attr('alt'));
@madpilot
madpilot / gist:2413866
Created April 18, 2012 14:14
How to select values from a select box
var el = document.getElementById('users');
el.onchange = function() {
document.getElementById('cdm').innerHTML = el.values[el.selectedIndex];
}
class MyClass
def my_method(param)
puts "this is my method #{param}"
end
end
my_class = MyClass.new
x = my_class.method :my_method
x.("hello")
var results = JSON.parse(response.responseText);
// Strip out the head node
var list = new WinJS.Binding.List();
for (var i = 0, len = results.length; i < len; i++) {
list.push(results[i].company);
}
// This throws: JavaScript runtime error: Object doesn't support property or method 'createListBinding'
companiesList.winControl.itemDataSource = list;
GeoIP.new(File.join(Rails.root, 'db', 'localization', 'GeoLiteCity.dat')).city(request.remote_ip)
=> ["203.59.95.220", "203.59.95.220", "AU", "AUS", "Australia", "OC", "08", "Perth", "", -31.9333, 115.8333]