Skip to content

Instantly share code, notes, and snippets.

View bertt's full-sized avatar

Bert Temme bertt

View GitHub Profile
@bertt
bertt / install new pc
Created December 20, 2012 15:37
install new pc
http://chocolatey.org
cinst evernote
cinst googletalk
cinst fiddler
cinst paint.net
cinst GoogleChrome
cinst SkyDrive
cinst spotify
cinst picasa
@bertt
bertt / gist:3373320
Created August 16, 2012 20:21
geoserver jquery request with and without jsonp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script type="text/javascript">
// zonder jsonp
$.getJSON('rest/agn/gebouwen?wkt=POINT(234403 579310)', function (data) {
alert("data: " + data);
});