Skip to content

Instantly share code, notes, and snippets.

View mptrs's full-sized avatar
🙃

Michiel Peters mptrs

🙃
View GitHub Profile
@mptrs
mptrs / gist:4160755
Created November 28, 2012 12:07
Debug umbraco page
- set <add key="umbracoDebugMode" value="true" /> in web.config
- add ?umbDebugShowTrace=true to url of the page
@mptrs
mptrs / gist:3905529
Created October 17, 2012 13:29
jQuery: Get client ip
$.getJSON("http://jsonip.appspot.com?callback=?", function (data) {
alert("Your ip: " + data.ip);
})