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
| 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? |
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 Foo | |
| def this_fails | |
| puts self.bar | |
| end | |
| def this_works | |
| puts bar | |
| end | |
| private |
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
| 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 | |
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
| document.domain = 'whatever.com'; |
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
| # 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 |
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
| <!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')); |
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 el = document.getElementById('users'); | |
| el.onchange = function() { | |
| document.getElementById('cdm').innerHTML = el.values[el.selectedIndex]; | |
| } |
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 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") |
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 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; |
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
| 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] | |