Skip to content

Instantly share code, notes, and snippets.

@rmkane
Last active October 14, 2022 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmkane/e5dffd1ec4f3dc9b510f to your computer and use it in GitHub Desktop.
Save rmkane/e5dffd1ec4f3dc9b510f to your computer and use it in GitHub Desktop.
Hijack AJAX
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>AJAX Interceptor - jsFiddle demo</title>
<style type="text/css">
.uname {
font-weight: bold;
}
.uname:after {
content:': ';
}
</style>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script>
<script type="text/javascript" src="request_hijacker.js"></script>
<script type="text/javascript">
//<![CDATA[
// Rotate the title by 1 character every 100ms.
rotateTitle(100);
// http://stackoverflow.com/questions/5943630/basic-example-of-using-ajax-with-jsonp
$(function() {
var numberOfRequests = 10;
var requestRate = 1500;
makeRequest(function() {
var requestUrl = 'sample_data.json'; //'https://api.github.com/gists?callback=?';
$.ajax({
url: requestUrl,
async: false,
type: 'GET',
dataType: 'json',
data: {
'foo': 'bar'
},
cache: true
}).done(function(response) {
var $gists = $('#gists');
if ($gists.children().length > 0) {
$gists.empty();
}
populateList($gists, response.data);
});
}, numberOfRequests, requestRate);
});
function populateList($list, data) {
$.each(data, function(i, gist) {
$list.append(
$('<li>')
.append($('<span>', {
text: gist.user != null ? gist.user.login : 'anonymous',
class: 'uname'
}))
.append($('<a>', {
href: gist.html_url,
text: gist.description != null ? gist.description : 'No Decription.'
}))
.append($('<ul>').append(Object.keys(gist.files || []).map(function(key) {
return (function(file) {
return $('<li>').append($('<a>', {
href: file.raw_url,
text: file.filename + ' [' + file.language + ']'
}));
}(gist.files[key]));
})))
);
});
}
//]]>
</script>
</head>
<body>
<h1>Most Recent Gists</h1>
<ul id="gists"></ul>
</body>
</html>
// ""http://stackoverflow.com/questions/2490825/how-to-trigger-event-in-javascript
function createEvent(name) {
var event;
if (document.createEvent) {
event = document.createEvent('HTMLEvents');
event.initEvent(name, true, false);
} else {
event = document.createEventObject();
event.eventType = name;
}
event.eventName = name;
return event;
}
// http://stackoverflow.com/questions/10149963/adding-event-listener-cross-browser
function addEvent(el, event, fn, bubble, wantsUntrusted) {
bubble = bubble === true;
// Avoid memory overhead of new anonymous functions for every event
// handler that's installed by using local functions.
function listenHandler(e) {
var ret = fn.apply(this, arguments);
if (ret === false) {
e.stopPropagation();
e.preventDefault();
}
return ret;
}
function attachHandler() {
// Set the this pointer same as addEventListener when fn is
// called and make sure the event is passed to the fn also so
// that works the same too.
var ret = fn.call(el, window.event);
if (ret === false) {
window.event.returnValue = false;
window.event.cancelBubble = !bubble;
}
return ret;
}
if (el.addEventListener) {
el.addEventListener(event, listenHandler, !bubble, wantsUntrusted === true);
} else {
el.attachEvent('on' + event, attachHandler);
}
}
// http://www.nonobtrusive.com/2011/11/29/programatically-fire-crossbrowser-click-event-with-javascript/
function fireEvent(el, evt) {
if (document.createEvent) {
el.dispatchEvent(evt);
} else if (document.createEventObject) {
el.fireEvent('on' + evt.eventType, evt) ;
} else if (typeof el['on' + evt.eventName] == 'function') {
el['on' + evt.eventName].call(el, evt);
}
}
// https://gist.github.com/icodejs/3183154
var open = window.XMLHttpRequest.prototype.open,
send = window.XMLHttpRequest.prototype.send,
xhrReady = createEvent('xhrReady'),
onReadyStateChange;
function openReplacement(method, url, async, user, password) {
var syncMode = async !== false ? 'async' : 'sync';
console.warn(
'Preparing ' + syncMode +
' HTTP request : ' + method +
' ' + url);
return open.apply(this, arguments);
}
function sendReplacement(data) {
console.warn('Sending HTTP request data : ', data);;
if (this.onreadystatechange) {
this._onreadystatechange = this.onreadystatechange
}
this.onreadystatechange = onReadyStateChangeReplacement;
return send.apply(this, arguments);
}
function onReadyStateChangeReplacement() {
console.warn('HTTP request ready state changed : ' + this.readyState);
if (this.readyState === 4) {
fireEvent(document, xhrReady);
}
if (this._onreadystatechange) {
return this._onreadystatechange.apply(this, arguments);
}
}
window.XMLHttpRequest.prototype.open = openReplacement;
window.XMLHttpRequest.prototype.send = sendReplacement;
addEvent(document, xhrReady.eventName, handleAjaxInterception, false, true);
function handleAjaxInterception(e) {
console.log('Captured...', e);
}
function makeRequest(fn, numberOfRequests, requestRate, n) {
n = n || 0;
console.log('Request: ', (n + 1) + '/' + numberOfRequests);
fn.apply(arguments);
if (n < numberOfRequests - 1) {
setTimeout(function() {
makeRequest(fn, numberOfRequests, requestRate, n + 1);
}, requestRate);
} else {
console.log('Done...');
}
}
function rotateTitle(renderIntervalInMillis) {
function strShift(str, n) {
return str.substr(n) + str.substr(0, n);
}
function escapeStr(str, ch) {
return ch + str.replace(/\s/g, ch) + ch;
}
document.title = escapeStr(document.title, '\u00A0') + '|';
setInterval(function(options) {
document.title = strShift(document.title, 1);
}, renderIntervalInMillis);
}
{
"data": [{
"url": "https://api.github.com/gists/17c7db4586038b152386",
"forks_url": "https://api.github.com/gists/17c7db4586038b152386/forks",
"commits_url": "https://api.github.com/gists/17c7db4586038b152386/commits",
"id": "17c7db4586038b152386",
"git_pull_url": "https://gist.github.com/17c7db4586038b152386.git",
"git_push_url": "https://gist.github.com/17c7db4586038b152386.git",
"html_url": "https://gist.github.com/17c7db4586038b152386",
"files": {
"config.json": {
"filename": "config.json",
"type": "application/json",
"language": "JSON",
"raw_url": "https://gist.githubusercontent.com/anonymous/17c7db4586038b152386/raw/ce1eb4c4d06bafcfd257204653c9a0c04a3f6f6a/config.json",
"size": 18146
}
},
"public": true,
"created_at": "2015-10-20T13:05:49Z",
"updated_at": "2015-10-20T13:05:49Z",
"description": "Bootstrap Customizer Config",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/17c7db4586038b152386/comments"
}, {
"url": "https://api.github.com/gists/b68b30e043d3e4253a15",
"forks_url": "https://api.github.com/gists/b68b30e043d3e4253a15/forks",
"commits_url": "https://api.github.com/gists/b68b30e043d3e4253a15/commits",
"id": "b68b30e043d3e4253a15",
"git_pull_url": "https://gist.github.com/b68b30e043d3e4253a15.git",
"git_push_url": "https://gist.github.com/b68b30e043d3e4253a15.git",
"html_url": "https://gist.github.com/b68b30e043d3e4253a15",
"files": {
"Interactive_Ruby_(Practice).txt": {
"filename": "Interactive_Ruby_(Practice).txt",
"type": "text/plain",
"language": "Text",
"raw_url": "https://gist.githubusercontent.com/zombler/b68b30e043d3e4253a15/raw/685b1b82a50f62c917c75f26b711574d83176238/Interactive_Ruby_(Practice).txt",
"size": 781
}
},
"public": true,
"created_at": "2015-10-20T13:05:47Z",
"updated_at": "2015-10-20T13:05:47Z",
"description": "Interactive Ruby (Practice)",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/b68b30e043d3e4253a15/comments",
"owner": {
"login": "zombler",
"id": 13842856,
"avatar_url": "https://avatars.githubusercontent.com/u/13842856?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/zombler",
"html_url": "https://github.com/zombler",
"followers_url": "https://api.github.com/users/zombler/followers",
"following_url": "https://api.github.com/users/zombler/following{/other_user}",
"gists_url": "https://api.github.com/users/zombler/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zombler/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zombler/subscriptions",
"organizations_url": "https://api.github.com/users/zombler/orgs",
"repos_url": "https://api.github.com/users/zombler/repos",
"events_url": "https://api.github.com/users/zombler/events{/privacy}",
"received_events_url": "https://api.github.com/users/zombler/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/c2de311acae5224a2e0f",
"forks_url": "https://api.github.com/gists/c2de311acae5224a2e0f/forks",
"commits_url": "https://api.github.com/gists/c2de311acae5224a2e0f/commits",
"id": "c2de311acae5224a2e0f",
"git_pull_url": "https://gist.github.com/c2de311acae5224a2e0f.git",
"git_push_url": "https://gist.github.com/c2de311acae5224a2e0f.git",
"html_url": "https://gist.github.com/c2de311acae5224a2e0f",
"files": {
"Solving Problem Cola Machine1.cpp": {
"filename": "Solving Problem Cola Machine1.cpp",
"type": "text/plain",
"language": "C++",
"raw_url": "https://gist.githubusercontent.com/awanprihatmaja/c2de311acae5224a2e0f/raw/…a8193477abf51b36aab02d34078a7894b2/Solving%20Problem%20Cola%20Machine1.cpp",
"size": 1122
},
"Solving Problem Cola Machine2.cpp": {
"filename": "Solving Problem Cola Machine2.cpp",
"type": "text/plain",
"language": "C++",
"raw_url": "https://gist.githubusercontent.com/awanprihatmaja/c2de311acae5224a2e0f/raw/…ae3dc9309cdcaa2195170d898babc8e5a5/Solving%20Problem%20Cola%20Machine2.cpp",
"size": 1051
}
},
"public": true,
"created_at": "2015-10-20T13:05:30Z",
"updated_at": "2015-10-20T13:05:30Z",
"description": "Solving Problem Cola Machine.cpp",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/c2de311acae5224a2e0f/comments",
"owner": {
"login": "awanprihatmaja",
"id": 15213916,
"avatar_url": "https://avatars.githubusercontent.com/u/15213916?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/awanprihatmaja",
"html_url": "https://github.com/awanprihatmaja",
"followers_url": "https://api.github.com/users/awanprihatmaja/followers",
"following_url": "https://api.github.com/users/awanprihatmaja/following{/other_user}",
"gists_url": "https://api.github.com/users/awanprihatmaja/gists{/gist_id}",
"starred_url": "https://api.github.com/users/awanprihatmaja/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/awanprihatmaja/subscriptions",
"organizations_url": "https://api.github.com/users/awanprihatmaja/orgs",
"repos_url": "https://api.github.com/users/awanprihatmaja/repos",
"events_url": "https://api.github.com/users/awanprihatmaja/events{/privacy}",
"received_events_url": "https://api.github.com/users/awanprihatmaja/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/3ac82503fd0d2152a2ec",
"forks_url": "https://api.github.com/gists/3ac82503fd0d2152a2ec/forks",
"commits_url": "https://api.github.com/gists/3ac82503fd0d2152a2ec/commits",
"id": "3ac82503fd0d2152a2ec",
"git_pull_url": "https://gist.github.com/3ac82503fd0d2152a2ec.git",
"git_push_url": "https://gist.github.com/3ac82503fd0d2152a2ec.git",
"html_url": "https://gist.github.com/3ac82503fd0d2152a2ec",
"files": {
"config.json": {
"filename": "config.json",
"type": "application/json",
"language": "JSON",
"raw_url": "https://gist.githubusercontent.com/anonymous/3ac82503fd0d2152a2ec/raw/fe2a38e9fad896bfe7403e41cc2bf8ad4c84ee9b/config.json",
"size": 3573
}
},
"public": true,
"created_at": "2015-10-20T13:05:27Z",
"updated_at": "2015-10-20T13:05:28Z",
"description": "Bootstrap Customizer Config",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/3ac82503fd0d2152a2ec/comments"
}, {
"url": "https://api.github.com/gists/9ad7e9254caa59c76fc5",
"forks_url": "https://api.github.com/gists/9ad7e9254caa59c76fc5/forks",
"commits_url": "https://api.github.com/gists/9ad7e9254caa59c76fc5/commits",
"id": "9ad7e9254caa59c76fc5",
"git_pull_url": "https://gist.github.com/9ad7e9254caa59c76fc5.git",
"git_push_url": "https://gist.github.com/9ad7e9254caa59c76fc5.git",
"html_url": "https://gist.github.com/9ad7e9254caa59c76fc5",
"files": {
"COM612102 - 1517051147 - M.YODY STIAWAN": {
"filename": "COM612102-1517051147-M. YODY STIAWAN",
"type": "text/plain",
"language": null,
"raw_url": "https://gist.githubusercontent.com/yodystiawan/9ad7e9254caa59c76fc5/raw/7e9…a79484b6186f79e7a2c4861c230018155/COM612102-1517051147-M.%20YODY%20STIAWAN",
"size": 838
}
},
"public": true,
"created_at": "2015-10-20T13:05:27Z",
"updated_at": "2015-10-20T13:05:28Z",
"description": "",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/9ad7e9254caa59c76fc5/comments",
"owner": {
"login": "yodystiawan",
"id": 15181607,
"avatar_url": "https://avatars.githubusercontent.com/u/15181607?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/yodystiawan",
"html_url": "https://github.com/yodystiawan",
"followers_url": "https://api.github.com/users/yodystiawan/followers",
"following_url": "https://api.github.com/users/yodystiawan/following{/other_user}",
"gists_url": "https://api.github.com/users/yodystiawan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yodystiawan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yodystiawan/subscriptions",
"organizations_url": "https://api.github.com/users/yodystiawan/orgs",
"repos_url": "https://api.github.com/users/yodystiawan/repos",
"events_url": "https://api.github.com/users/yodystiawan/events{/privacy}",
"received_events_url": "https://api.github.com/users/yodystiawan/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/b3078972caf491d70e4b",
"forks_url": "https://api.github.com/gists/b3078972caf491d70e4b/forks",
"commits_url": "https://api.github.com/gists/b3078972caf491d70e4b/commits",
"id": "b3078972caf491d70e4b",
"git_pull_url": "https://gist.github.com/b3078972caf491d70e4b.git",
"git_push_url": "https://gist.github.com/b3078972caf491d70e4b.git",
"html_url": "https://gist.github.com/b3078972caf491d70e4b",
"files": {
"config.json": {
"filename": "config.json",
"type": "application/json",
"language": "JSON",
"raw_url": "https://gist.githubusercontent.com/anonymous/b3078972caf491d70e4b/raw/52ff04791c2342da0d2aa94c29ffa771f14420d6/config.json",
"size": 17230
}
},
"public": true,
"created_at": "2015-10-20T13:05:27Z",
"updated_at": "2015-10-20T13:05:28Z",
"description": "Bootstrap Customizer Config",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/b3078972caf491d70e4b/comments"
}, {
"url": "https://api.github.com/gists/c57febfb9e81148141a7",
"forks_url": "https://api.github.com/gists/c57febfb9e81148141a7/forks",
"commits_url": "https://api.github.com/gists/c57febfb9e81148141a7/commits",
"id": "c57febfb9e81148141a7",
"git_pull_url": "https://gist.github.com/c57febfb9e81148141a7.git",
"git_push_url": "https://gist.github.com/c57febfb9e81148141a7.git",
"html_url": "https://gist.github.com/c57febfb9e81148141a7",
"files": {
"config.json": {
"filename": "config.json",
"type": "application/json",
"language": "JSON",
"raw_url": "https://gist.githubusercontent.com/anonymous/c57febfb9e81148141a7/raw/38ad12455a8b38e2a4b1e4b9d6fb84990fe5a16c/config.json",
"size": 18146
}
},
"public": true,
"created_at": "2015-10-20T13:05:26Z",
"updated_at": "2015-10-20T13:05:27Z",
"description": "Bootstrap Customizer Config",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/c57febfb9e81148141a7/comments"
}, {
"url": "https://api.github.com/gists/a1a20a326f0728fb36d8",
"forks_url": "https://api.github.com/gists/a1a20a326f0728fb36d8/forks",
"commits_url": "https://api.github.com/gists/a1a20a326f0728fb36d8/commits",
"id": "a1a20a326f0728fb36d8",
"git_pull_url": "https://gist.github.com/a1a20a326f0728fb36d8.git",
"git_push_url": "https://gist.github.com/a1a20a326f0728fb36d8.git",
"html_url": "https://gist.github.com/a1a20a326f0728fb36d8",
"files": {
"gistfile1.txt": {
"filename": "gistfile1.txt",
"type": "text/plain",
"language": "Text",
"raw_url": "https://gist.githubusercontent.com/Mysteryem/a1a20a326f0728fb36d8/raw/450dcf8b06c1c2ec0c441dd2efaed439876a1d40/gistfile1.txt",
"size": 83128
}
},
"public": true,
"created_at": "2015-10-20T13:05:14Z",
"updated_at": "2015-10-20T13:05:14Z",
"description": "Windows Grep results",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/a1a20a326f0728fb36d8/comments",
"owner": {
"login": "Mysteryem",
"id": 495015,
"avatar_url": "https://avatars.githubusercontent.com/u/495015?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/Mysteryem",
"html_url": "https://github.com/Mysteryem",
"followers_url": "https://api.github.com/users/Mysteryem/followers",
"following_url": "https://api.github.com/users/Mysteryem/following{/other_user}",
"gists_url": "https://api.github.com/users/Mysteryem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mysteryem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mysteryem/subscriptions",
"organizations_url": "https://api.github.com/users/Mysteryem/orgs",
"repos_url": "https://api.github.com/users/Mysteryem/repos",
"events_url": "https://api.github.com/users/Mysteryem/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mysteryem/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/f296fcef6ede84e9b29c",
"forks_url": "https://api.github.com/gists/f296fcef6ede84e9b29c/forks",
"commits_url": "https://api.github.com/gists/f296fcef6ede84e9b29c/commits",
"id": "f296fcef6ede84e9b29c",
"git_pull_url": "https://gist.github.com/f296fcef6ede84e9b29c.git",
"git_push_url": "https://gist.github.com/f296fcef6ede84e9b29c.git",
"html_url": "https://gist.github.com/f296fcef6ede84e9b29c",
"files": {
"gistfile1.txt": {
"filename": "gistfile1.txt",
"type": "text/plain",
"language": "Text",
"raw_url": "https://gist.githubusercontent.com/perajovic/f296fcef6ede84e9b29c/raw/f023f5285979d2ebfe102ff80b102c5f88248838/gistfile1.txt",
"size": 185
}
},
"public": true,
"created_at": "2015-10-20T13:05:13Z",
"updated_at": "2015-10-20T13:05:27Z",
"description": "",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/f296fcef6ede84e9b29c/comments",
"owner": {
"login": "perajovic",
"id": 747716,
"avatar_url": "https://avatars.githubusercontent.com/u/747716?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/perajovic",
"html_url": "https://github.com/perajovic",
"followers_url": "https://api.github.com/users/perajovic/followers",
"following_url": "https://api.github.com/users/perajovic/following{/other_user}",
"gists_url": "https://api.github.com/users/perajovic/gists{/gist_id}",
"starred_url": "https://api.github.com/users/perajovic/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/perajovic/subscriptions",
"organizations_url": "https://api.github.com/users/perajovic/orgs",
"repos_url": "https://api.github.com/users/perajovic/repos",
"events_url": "https://api.github.com/users/perajovic/events{/privacy}",
"received_events_url": "https://api.github.com/users/perajovic/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/fbe7357257f87c6e4cbd",
"forks_url": "https://api.github.com/gists/fbe7357257f87c6e4cbd/forks",
"commits_url": "https://api.github.com/gists/fbe7357257f87c6e4cbd/commits",
"id": "fbe7357257f87c6e4cbd",
"git_pull_url": "https://gist.github.com/fbe7357257f87c6e4cbd.git",
"git_push_url": "https://gist.github.com/fbe7357257f87c6e4cbd.git",
"html_url": "https://gist.github.com/fbe7357257f87c6e4cbd",
"files": {
"untrusted - lvl2 - solution.js": {
"filename": "untrusted-lvl2-solution.js",
"type": "application/javascript",
"language": "JavaScript",
"raw_url": "https://gist.githubusercontent.com/anonymous/fbe7357257f87c6e4cbd/raw/68d868bf16e10d08134ad88230450e5d78fd140c/untrusted-lvl2-solution.js",
"size": 1080
}
},
"public": true,
"created_at": "2015-10-20T13:05:12Z",
"updated_at": "2015-10-20T13:05:12Z",
"description": "Solution to level 2 in Untrusted http://alex.nisnevich.com/untrusted/",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/fbe7357257f87c6e4cbd/comments"
}, {
"url": "https://api.github.com/gists/6b06f087ccbb34caa91a",
"forks_url": "https://api.github.com/gists/6b06f087ccbb34caa91a/forks",
"commits_url": "https://api.github.com/gists/6b06f087ccbb34caa91a/commits",
"id": "6b06f087ccbb34caa91a",
"git_pull_url": "https://gist.github.com/6b06f087ccbb34caa91a.git",
"git_push_url": "https://gist.github.com/6b06f087ccbb34caa91a.git",
"html_url": "https://gist.github.com/6b06f087ccbb34caa91a",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/anonymous/6b06f087ccbb34caa91a/raw/471035f7cd4938fb1e8b3701dfdf3574f3cf54e8/index.html",
"size": 894
},
"jsbin.futoloxiga.css": {
"filename": "jsbin.futoloxiga.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/anonymous/6b06f087ccbb34caa91a/raw/fba14f4fc44acb06434500486b382b5da7ba7564/jsbin.futoloxiga.css",
"size": 229
}
},
"public": true,
"created_at": "2015-10-20T13:05:04Z",
"updated_at": "2015-10-20T13:05:04Z",
"description": "// source http://jsbin.com/futoloxiga",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/6b06f087ccbb34caa91a/comments"
}, {
"url": "https://api.github.com/gists/b77475125dafa688c38a",
"forks_url": "https://api.github.com/gists/b77475125dafa688c38a/forks",
"commits_url": "https://api.github.com/gists/b77475125dafa688c38a/commits",
"id": "b77475125dafa688c38a",
"git_pull_url": "https://gist.github.com/b77475125dafa688c38a.git",
"git_push_url": "https://gist.github.com/b77475125dafa688c38a.git",
"html_url": "https://gist.github.com/b77475125dafa688c38a",
"files": {
"playground.rs": {
"filename": "playground.rs",
"type": "text/plain",
"language": "Rust",
"raw_url": "https://gist.githubusercontent.com/anonymous/b77475125dafa688c38a/raw/89b4af7a929391caab47aa23ae70edf29638a6b5/playground.rs",
"size": 433
}
},
"public": true,
"created_at": "2015-10-20T13:05:02Z",
"updated_at": "2015-10-20T13:05:02Z",
"description": "Shared via Rust Playground",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/b77475125dafa688c38a/comments"
}, {
"url": "https://api.github.com/gists/e06eb30c0dc6a722fb28",
"forks_url": "https://api.github.com/gists/e06eb30c0dc6a722fb28/forks",
"commits_url": "https://api.github.com/gists/e06eb30c0dc6a722fb28/commits",
"id": "e06eb30c0dc6a722fb28",
"git_pull_url": "https://gist.github.com/e06eb30c0dc6a722fb28.git",
"git_push_url": "https://gist.github.com/e06eb30c0dc6a722fb28.git",
"html_url": "https://gist.github.com/e06eb30c0dc6a722fb28",
"files": {
"config.json": {
"filename": "config.json",
"type": "application/json",
"language": "JSON",
"raw_url": "https://gist.githubusercontent.com/anonymous/e06eb30c0dc6a722fb28/raw/8ec680ba21f6acc098cfc759f9e9b1b3c166edb0/config.json",
"size": 18143
}
},
"public": true,
"created_at": "2015-10-20T13:04:58Z",
"updated_at": "2015-10-20T13:04:58Z",
"description": "Bootstrap Customizer Config",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/e06eb30c0dc6a722fb28/comments"
}, {
"url": "https://api.github.com/gists/d277b3abb658788ff9ae",
"forks_url": "https://api.github.com/gists/d277b3abb658788ff9ae/forks",
"commits_url": "https://api.github.com/gists/d277b3abb658788ff9ae/commits",
"id": "d277b3abb658788ff9ae",
"git_pull_url": "https://gist.github.com/d277b3abb658788ff9ae.git",
"git_push_url": "https://gist.github.com/d277b3abb658788ff9ae.git",
"html_url": "https://gist.github.com/d277b3abb658788ff9ae",
"files": {
"command.sh": {
"filename": "command.sh",
"type": "application/x-sh",
"language": "Shell",
"raw_url": "https://gist.githubusercontent.com/grsabreu/d277b3abb658788ff9ae/raw/0efbd4ab980e1bdfcd7c11279d34601b2b5d20e6/command.sh",
"size": 171
}
},
"public": true,
"created_at": "2015-10-20T13:04:57Z",
"updated_at": "2015-10-20T13:04:57Z",
"description": "Jenkins shell script to test Meteor packages",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/d277b3abb658788ff9ae/comments",
"owner": {
"login": "grsabreu",
"id": 1283200,
"avatar_url": "https://avatars.githubusercontent.com/u/1283200?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/grsabreu",
"html_url": "https://github.com/grsabreu",
"followers_url": "https://api.github.com/users/grsabreu/followers",
"following_url": "https://api.github.com/users/grsabreu/following{/other_user}",
"gists_url": "https://api.github.com/users/grsabreu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/grsabreu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/grsabreu/subscriptions",
"organizations_url": "https://api.github.com/users/grsabreu/orgs",
"repos_url": "https://api.github.com/users/grsabreu/repos",
"events_url": "https://api.github.com/users/grsabreu/events{/privacy}",
"received_events_url": "https://api.github.com/users/grsabreu/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/43ea699eadebcee3adb9",
"forks_url": "https://api.github.com/gists/43ea699eadebcee3adb9/forks",
"commits_url": "https://api.github.com/gists/43ea699eadebcee3adb9/commits",
"id": "43ea699eadebcee3adb9",
"git_pull_url": "https://gist.github.com/43ea699eadebcee3adb9.git",
"git_push_url": "https://gist.github.com/43ea699eadebcee3adb9.git",
"html_url": "https://gist.github.com/43ea699eadebcee3adb9",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/Ygenao/43ea699eadebcee3adb9/raw/95c25adfdb18c9b1ea3dac5587e4b52f326283f6/index.html",
"size": 1011
},
"jsbin.yuzunu.css": {
"filename": "jsbin.yuzunu.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/Ygenao/43ea699eadebcee3adb9/raw/33b9b1bb7021c9882d947f3bff9cf676b11522f0/jsbin.yuzunu.css",
"size": 345
}
},
"public": true,
"created_at": "2015-10-20T13:04:55Z",
"updated_at": "2015-10-20T13:04:56Z",
"description": "JS Bin // source http://jsbin.com/yuzunu",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/43ea699eadebcee3adb9/comments",
"owner": {
"login": "Ygenao",
"id": 14774359,
"avatar_url": "https://avatars.githubusercontent.com/u/14774359?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/Ygenao",
"html_url": "https://github.com/Ygenao",
"followers_url": "https://api.github.com/users/Ygenao/followers",
"following_url": "https://api.github.com/users/Ygenao/following{/other_user}",
"gists_url": "https://api.github.com/users/Ygenao/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Ygenao/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Ygenao/subscriptions",
"organizations_url": "https://api.github.com/users/Ygenao/orgs",
"repos_url": "https://api.github.com/users/Ygenao/repos",
"events_url": "https://api.github.com/users/Ygenao/events{/privacy}",
"received_events_url": "https://api.github.com/users/Ygenao/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/dd7dd4683cb962b264ab",
"forks_url": "https://api.github.com/gists/dd7dd4683cb962b264ab/forks",
"commits_url": "https://api.github.com/gists/dd7dd4683cb962b264ab/commits",
"id": "dd7dd4683cb962b264ab",
"git_pull_url": "https://gist.github.com/dd7dd4683cb962b264ab.git",
"git_push_url": "https://gist.github.com/dd7dd4683cb962b264ab.git",
"html_url": "https://gist.github.com/dd7dd4683cb962b264ab",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/boiciuc/dd7dd4683cb962b264ab/raw/3dfbb87498de02fd068a8bd5592802dd80b9589a/index.html",
"size": 1367
}
},
"public": true,
"created_at": "2015-10-20T13:04:55Z",
"updated_at": "2015-10-20T13:04:55Z",
"description": "HTML5 starter markup",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/dd7dd4683cb962b264ab/comments",
"owner": {
"login": "boiciuc",
"id": 6917578,
"avatar_url": "https://avatars.githubusercontent.com/u/6917578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/boiciuc",
"html_url": "https://github.com/boiciuc",
"followers_url": "https://api.github.com/users/boiciuc/followers",
"following_url": "https://api.github.com/users/boiciuc/following{/other_user}",
"gists_url": "https://api.github.com/users/boiciuc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/boiciuc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/boiciuc/subscriptions",
"organizations_url": "https://api.github.com/users/boiciuc/orgs",
"repos_url": "https://api.github.com/users/boiciuc/repos",
"events_url": "https://api.github.com/users/boiciuc/events{/privacy}",
"received_events_url": "https://api.github.com/users/boiciuc/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/95d9acdd741b2a577483",
"forks_url": "https://api.github.com/gists/95d9acdd741b2a577483/forks",
"commits_url": "https://api.github.com/gists/95d9acdd741b2a577483/commits",
"id": "95d9acdd741b2a577483",
"git_pull_url": "https://gist.github.com/95d9acdd741b2a577483.git",
"git_push_url": "https://gist.github.com/95d9acdd741b2a577483.git",
"html_url": "https://gist.github.com/95d9acdd741b2a577483",
"files": {
"RecordingActivity.java": {
"filename": "RecordingActivity.java",
"type": "text/plain",
"language": "Java",
"raw_url": "https://gist.githubusercontent.com/chathudan/95d9acdd741b2a577483/raw/608f182cc56294538b6bd56c79369a8196b4aef5/RecordingActivity.java",
"size": 4784
},
"activity_recording.xml": {
"filename": "activity_recording.xml",
"type": "application/xml",
"language": "XML",
"raw_url": "https://gist.githubusercontent.com/chathudan/95d9acdd741b2a577483/raw/fced7d3944cd28aac4886c46a877eac8c8116a3d/activity_recording.xml",
"size": 1903
}
},
"public": true,
"created_at": "2015-10-20T13:04:50Z",
"updated_at": "2015-10-20T13:04:50Z",
"description": "Android Audio recording example ",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/95d9acdd741b2a577483/comments",
"owner": {
"login": "chathudan",
"id": 3352653,
"avatar_url": "https://avatars.githubusercontent.com/u/3352653?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/chathudan",
"html_url": "https://github.com/chathudan",
"followers_url": "https://api.github.com/users/chathudan/followers",
"following_url": "https://api.github.com/users/chathudan/following{/other_user}",
"gists_url": "https://api.github.com/users/chathudan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/chathudan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chathudan/subscriptions",
"organizations_url": "https://api.github.com/users/chathudan/orgs",
"repos_url": "https://api.github.com/users/chathudan/repos",
"events_url": "https://api.github.com/users/chathudan/events{/privacy}",
"received_events_url": "https://api.github.com/users/chathudan/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/13515aa18ae1a458f106",
"forks_url": "https://api.github.com/gists/13515aa18ae1a458f106/forks",
"commits_url": "https://api.github.com/gists/13515aa18ae1a458f106/commits",
"id": "13515aa18ae1a458f106",
"git_pull_url": "https://gist.github.com/13515aa18ae1a458f106.git",
"git_push_url": "https://gist.github.com/13515aa18ae1a458f106.git",
"html_url": "https://gist.github.com/13515aa18ae1a458f106",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/dj554/13515aa18ae1a458f106/raw/14cdaef31a43043d0b9408723ec3f79b2d24692c/index.html",
"size": 1591
},
"jsbin.dumajo.css": {
"filename": "jsbin.dumajo.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/dj554/13515aa18ae1a458f106/raw/d6b295b944c72faed702e0ddaa8c553442c66e93/jsbin.dumajo.css",
"size": 140
}
},
"public": true,
"created_at": "2015-10-20T13:04:50Z",
"updated_at": "2015-10-20T13:04:50Z",
"description": "Our ScriptEd Class // source http://jsbin.com/dumajo/2",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/13515aa18ae1a458f106/comments",
"owner": {
"login": "dj554",
"id": 14774132,
"avatar_url": "https://avatars.githubusercontent.com/u/14774132?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/dj554",
"html_url": "https://github.com/dj554",
"followers_url": "https://api.github.com/users/dj554/followers",
"following_url": "https://api.github.com/users/dj554/following{/other_user}",
"gists_url": "https://api.github.com/users/dj554/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dj554/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dj554/subscriptions",
"organizations_url": "https://api.github.com/users/dj554/orgs",
"repos_url": "https://api.github.com/users/dj554/repos",
"events_url": "https://api.github.com/users/dj554/events{/privacy}",
"received_events_url": "https://api.github.com/users/dj554/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/3d444cfc4bba2d919e71",
"forks_url": "https://api.github.com/gists/3d444cfc4bba2d919e71/forks",
"commits_url": "https://api.github.com/gists/3d444cfc4bba2d919e71/commits",
"id": "3d444cfc4bba2d919e71",
"git_pull_url": "https://gist.github.com/3d444cfc4bba2d919e71.git",
"git_push_url": "https://gist.github.com/3d444cfc4bba2d919e71.git",
"html_url": "https://gist.github.com/3d444cfc4bba2d919e71",
"files": {
"Git Alliases": {
"filename": "Git Alliases",
"type": "text/plain",
"language": null,
"raw_url": "https://gist.githubusercontent.com/ralder/3d444cfc4bba2d919e71/raw/2bc2ddb2f75cba3cf9cdf13bbb053bc191e90341/Git%20Alliases",
"size": 508
}
},
"public": true,
"created_at": "2015-10-20T13:04:45Z",
"updated_at": "2015-10-20T13:04:45Z",
"description": "",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/3d444cfc4bba2d919e71/comments",
"owner": {
"login": "ralder",
"id": 10889830,
"avatar_url": "https://avatars.githubusercontent.com/u/10889830?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/ralder",
"html_url": "https://github.com/ralder",
"followers_url": "https://api.github.com/users/ralder/followers",
"following_url": "https://api.github.com/users/ralder/following{/other_user}",
"gists_url": "https://api.github.com/users/ralder/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ralder/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ralder/subscriptions",
"organizations_url": "https://api.github.com/users/ralder/orgs",
"repos_url": "https://api.github.com/users/ralder/repos",
"events_url": "https://api.github.com/users/ralder/events{/privacy}",
"received_events_url": "https://api.github.com/users/ralder/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/56020235f4e6d82a429b",
"forks_url": "https://api.github.com/gists/56020235f4e6d82a429b/forks",
"commits_url": "https://api.github.com/gists/56020235f4e6d82a429b/commits",
"id": "56020235f4e6d82a429b",
"git_pull_url": "https://gist.github.com/56020235f4e6d82a429b.git",
"git_push_url": "https://gist.github.com/56020235f4e6d82a429b.git",
"html_url": "https://gist.github.com/56020235f4e6d82a429b",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/anonymous/56020235f4e6d82a429b/raw/95c25adfdb18c9b1ea3dac5587e4b52f326283f6/index.html",
"size": 1011
},
"jsbin.yuzunu.css": {
"filename": "jsbin.yuzunu.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/anonymous/56020235f4e6d82a429b/raw/33b9b1bb7021c9882d947f3bff9cf676b11522f0/jsbin.yuzunu.css",
"size": 345
}
},
"public": true,
"created_at": "2015-10-20T13:04:43Z",
"updated_at": "2015-10-20T13:04:55Z",
"description": "JS Bin // source http://jsbin.com/yuzunu",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/56020235f4e6d82a429b/comments"
}, {
"url": "https://api.github.com/gists/5f37053d19c0c26ae3d1",
"forks_url": "https://api.github.com/gists/5f37053d19c0c26ae3d1/forks",
"commits_url": "https://api.github.com/gists/5f37053d19c0c26ae3d1/commits",
"id": "5f37053d19c0c26ae3d1",
"git_pull_url": "https://gist.github.com/5f37053d19c0c26ae3d1.git",
"git_push_url": "https://gist.github.com/5f37053d19c0c26ae3d1.git",
"html_url": "https://gist.github.com/5f37053d19c0c26ae3d1",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/anonymous/5f37053d19c0c26ae3d1/raw/ba12f15e3d56c8e4b1b5a65e660be31d552bdce5/index.html",
"size": 1001
},
"jsbin.yetoxa.css": {
"filename": "jsbin.yetoxa.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/anonymous/5f37053d19c0c26ae3d1/raw/ad94aad8443e9d913d2db5c8acdf7d3a017d744a/jsbin.yetoxa.css",
"size": 339
}
},
"public": true,
"created_at": "2015-10-20T13:04:30Z",
"updated_at": "2015-10-20T13:04:30Z",
"description": "JS Bin // source http://jsbin.com/yetoxa",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/5f37053d19c0c26ae3d1/comments"
}, {
"url": "https://api.github.com/gists/3d1f9f5343131712c1e4",
"forks_url": "https://api.github.com/gists/3d1f9f5343131712c1e4/forks",
"commits_url": "https://api.github.com/gists/3d1f9f5343131712c1e4/commits",
"id": "3d1f9f5343131712c1e4",
"git_pull_url": "https://gist.github.com/3d1f9f5343131712c1e4.git",
"git_push_url": "https://gist.github.com/3d1f9f5343131712c1e4.git",
"html_url": "https://gist.github.com/3d1f9f5343131712c1e4",
"files": {
"COM612102 - 1517051147 - M.YODY STIAWAN": {
"filename": "COM612102-1517051147-M. YODY STIAWAN",
"type": "text/plain",
"language": null,
"raw_url": "https://gist.githubusercontent.com/yodystiawan/3d1f9f5343131712c1e4/raw/924…b408f70e7a7855671ec3c400f69a87cb3/COM612102-1517051147-M.%20YODY%20STIAWAN",
"size": 854
}
},
"public": true,
"created_at": "2015-10-20T13:04:19Z",
"updated_at": "2015-10-20T13:04:21Z",
"description": "",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/3d1f9f5343131712c1e4/comments",
"owner": {
"login": "yodystiawan",
"id": 15181607,
"avatar_url": "https://avatars.githubusercontent.com/u/15181607?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/yodystiawan",
"html_url": "https://github.com/yodystiawan",
"followers_url": "https://api.github.com/users/yodystiawan/followers",
"following_url": "https://api.github.com/users/yodystiawan/following{/other_user}",
"gists_url": "https://api.github.com/users/yodystiawan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yodystiawan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yodystiawan/subscriptions",
"organizations_url": "https://api.github.com/users/yodystiawan/orgs",
"repos_url": "https://api.github.com/users/yodystiawan/repos",
"events_url": "https://api.github.com/users/yodystiawan/events{/privacy}",
"received_events_url": "https://api.github.com/users/yodystiawan/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/f224ab180d0e1282f6bb",
"forks_url": "https://api.github.com/gists/f224ab180d0e1282f6bb/forks",
"commits_url": "https://api.github.com/gists/f224ab180d0e1282f6bb/commits",
"id": "f224ab180d0e1282f6bb",
"git_pull_url": "https://gist.github.com/f224ab180d0e1282f6bb.git",
"git_push_url": "https://gist.github.com/f224ab180d0e1282f6bb.git",
"html_url": "https://gist.github.com/f224ab180d0e1282f6bb",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/anonymous/f224ab180d0e1282f6bb/raw/14cdaef31a43043d0b9408723ec3f79b2d24692c/index.html",
"size": 1591
},
"jsbin.dumajo.css": {
"filename": "jsbin.dumajo.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/anonymous/f224ab180d0e1282f6bb/raw/d6b295b944c72faed702e0ddaa8c553442c66e93/jsbin.dumajo.css",
"size": 140
}
},
"public": true,
"created_at": "2015-10-20T13:04:18Z",
"updated_at": "2015-10-20T13:04:50Z",
"description": "Our ScriptEd Class // source http://jsbin.com/dumajo/2",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/f224ab180d0e1282f6bb/comments"
}, {
"url": "https://api.github.com/gists/d3d3d5e3922bccead7d7",
"forks_url": "https://api.github.com/gists/d3d3d5e3922bccead7d7/forks",
"commits_url": "https://api.github.com/gists/d3d3d5e3922bccead7d7/commits",
"id": "d3d3d5e3922bccead7d7",
"git_pull_url": "https://gist.github.com/d3d3d5e3922bccead7d7.git",
"git_push_url": "https://gist.github.com/d3d3d5e3922bccead7d7.git",
"html_url": "https://gist.github.com/d3d3d5e3922bccead7d7",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/dj554/d3d3d5e3922bccead7d7/raw/6f8a9ebcb91859437409d97e9c888e71a362190c/index.html",
"size": 354
}
},
"public": true,
"created_at": "2015-10-20T13:04:09Z",
"updated_at": "2015-10-20T13:04:10Z",
"description": "JS Bin // source http://jsbin.com/yepuyi",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/d3d3d5e3922bccead7d7/comments",
"owner": {
"login": "dj554",
"id": 14774132,
"avatar_url": "https://avatars.githubusercontent.com/u/14774132?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/dj554",
"html_url": "https://github.com/dj554",
"followers_url": "https://api.github.com/users/dj554/followers",
"following_url": "https://api.github.com/users/dj554/following{/other_user}",
"gists_url": "https://api.github.com/users/dj554/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dj554/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dj554/subscriptions",
"organizations_url": "https://api.github.com/users/dj554/orgs",
"repos_url": "https://api.github.com/users/dj554/repos",
"events_url": "https://api.github.com/users/dj554/events{/privacy}",
"received_events_url": "https://api.github.com/users/dj554/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/fc39be63488c31d50a1c",
"forks_url": "https://api.github.com/gists/fc39be63488c31d50a1c/forks",
"commits_url": "https://api.github.com/gists/fc39be63488c31d50a1c/commits",
"id": "fc39be63488c31d50a1c",
"git_pull_url": "https://gist.github.com/fc39be63488c31d50a1c.git",
"git_push_url": "https://gist.github.com/fc39be63488c31d50a1c.git",
"html_url": "https://gist.github.com/fc39be63488c31d50a1c",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/keyanacruz/fc39be63488c31d50a1c/raw/dca329066602c10e4c38b366308250f97ce3f3d7/index.html",
"size": 797
},
"jsbin.sikuba.css": {
"filename": "jsbin.sikuba.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/keyanacruz/fc39be63488c31d50a1c/raw/1a8ddf5287830b4c5941a1bf333bb83c76043c1c/jsbin.sikuba.css",
"size": 238
}
},
"public": true,
"created_at": "2015-10-20T13:04:07Z",
"updated_at": "2015-10-20T13:04:08Z",
"description": "JS Bin // source http://jsbin.com/sikuba",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/fc39be63488c31d50a1c/comments",
"owner": {
"login": "keyanacruz",
"id": 14996745,
"avatar_url": "https://avatars.githubusercontent.com/u/14996745?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/keyanacruz",
"html_url": "https://github.com/keyanacruz",
"followers_url": "https://api.github.com/users/keyanacruz/followers",
"following_url": "https://api.github.com/users/keyanacruz/following{/other_user}",
"gists_url": "https://api.github.com/users/keyanacruz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/keyanacruz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/keyanacruz/subscriptions",
"organizations_url": "https://api.github.com/users/keyanacruz/orgs",
"repos_url": "https://api.github.com/users/keyanacruz/repos",
"events_url": "https://api.github.com/users/keyanacruz/events{/privacy}",
"received_events_url": "https://api.github.com/users/keyanacruz/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/ee64a13276d25a3b26ee",
"forks_url": "https://api.github.com/gists/ee64a13276d25a3b26ee/forks",
"commits_url": "https://api.github.com/gists/ee64a13276d25a3b26ee/commits",
"id": "ee64a13276d25a3b26ee",
"git_pull_url": "https://gist.github.com/ee64a13276d25a3b26ee.git",
"git_push_url": "https://gist.github.com/ee64a13276d25a3b26ee.git",
"html_url": "https://gist.github.com/ee64a13276d25a3b26ee",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/anonymous/ee64a13276d25a3b26ee/raw/6f8a9ebcb91859437409d97e9c888e71a362190c/index.html",
"size": 354
}
},
"public": true,
"created_at": "2015-10-20T13:04:00Z",
"updated_at": "2015-10-20T13:04:09Z",
"description": "JS Bin // source http://jsbin.com/yepuyi",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/ee64a13276d25a3b26ee/comments"
}, {
"url": "https://api.github.com/gists/a6cdfaf71fa845c2d4b2",
"forks_url": "https://api.github.com/gists/a6cdfaf71fa845c2d4b2/forks",
"commits_url": "https://api.github.com/gists/a6cdfaf71fa845c2d4b2/commits",
"id": "a6cdfaf71fa845c2d4b2",
"git_pull_url": "https://gist.github.com/a6cdfaf71fa845c2d4b2.git",
"git_push_url": "https://gist.github.com/a6cdfaf71fa845c2d4b2.git",
"html_url": "https://gist.github.com/a6cdfaf71fa845c2d4b2",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/anonymous/a6cdfaf71fa845c2d4b2/raw/dca329066602c10e4c38b366308250f97ce3f3d7/index.html",
"size": 797
},
"jsbin.sikuba.css": {
"filename": "jsbin.sikuba.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/anonymous/a6cdfaf71fa845c2d4b2/raw/1a8ddf5287830b4c5941a1bf333bb83c76043c1c/jsbin.sikuba.css",
"size": 238
}
},
"public": true,
"created_at": "2015-10-20T13:04:00Z",
"updated_at": "2015-10-20T13:04:07Z",
"description": "JS Bin // source http://jsbin.com/sikuba",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/a6cdfaf71fa845c2d4b2/comments"
}, {
"url": "https://api.github.com/gists/0f02e47e4c10c51e1a55",
"forks_url": "https://api.github.com/gists/0f02e47e4c10c51e1a55/forks",
"commits_url": "https://api.github.com/gists/0f02e47e4c10c51e1a55/commits",
"id": "0f02e47e4c10c51e1a55",
"git_pull_url": "https://gist.github.com/0f02e47e4c10c51e1a55.git",
"git_push_url": "https://gist.github.com/0f02e47e4c10c51e1a55.git",
"html_url": "https://gist.github.com/0f02e47e4c10c51e1a55",
"files": {
"untrusted - lvl1 - solution.js": {
"filename": "untrusted-lvl1-solution.js",
"type": "application/javascript",
"language": "JavaScript",
"raw_url": "https://gist.githubusercontent.com/anonymous/0f02e47e4c10c51e1a55/raw/45438df22810349f36350e8792d99263ad87e013/untrusted-lvl1-solution.js",
"size": 1431
}
},
"public": true,
"created_at": "2015-10-20T13:03:56Z",
"updated_at": "2015-10-20T13:03:56Z",
"description": "Solution to level 1 in Untrusted http://alex.nisnevich.com/untrusted/",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/0f02e47e4c10c51e1a55/comments"
}, {
"url": "https://api.github.com/gists/70dce291c394794ca8cb",
"forks_url": "https://api.github.com/gists/70dce291c394794ca8cb/forks",
"commits_url": "https://api.github.com/gists/70dce291c394794ca8cb/commits",
"id": "70dce291c394794ca8cb",
"git_pull_url": "https://gist.github.com/70dce291c394794ca8cb.git",
"git_push_url": "https://gist.github.com/70dce291c394794ca8cb.git",
"html_url": "https://gist.github.com/70dce291c394794ca8cb",
"files": {
"index.html": {
"filename": "index.html",
"type": "text/html",
"language": "HTML",
"raw_url": "https://gist.githubusercontent.com/LopezRony/70dce291c394794ca8cb/raw/08e29fdec60dea0c2480d0a383db4f728e484c1b/index.html",
"size": 707
},
"jsbin.nomabo.css": {
"filename": "jsbin.nomabo.css",
"type": "text/css",
"language": "CSS",
"raw_url": "https://gist.githubusercontent.com/LopezRony/70dce291c394794ca8cb/raw/b6f530c96bfcbeba24e0e3e9bfd7f84801e36180/jsbin.nomabo.css",
"size": 193
}
},
"public": true,
"created_at": "2015-10-20T13:03:51Z",
"updated_at": "2015-10-20T13:03:51Z",
"description": "JS Bin // source http://jsbin.com/nomabo",
"comments": 0,
"user": null,
"comments_url": "https://api.github.com/gists/70dce291c394794ca8cb/comments",
"owner": {
"login": "LopezRony",
"id": 15002340,
"avatar_url": "https://avatars.githubusercontent.com/u/15002340?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/LopezRony",
"html_url": "https://github.com/LopezRony",
"followers_url": "https://api.github.com/users/LopezRony/followers",
"following_url": "https://api.github.com/users/LopezRony/following{/other_user}",
"gists_url": "https://api.github.com/users/LopezRony/gists{/gist_id}",
"starred_url": "https://api.github.com/users/LopezRony/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/LopezRony/subscriptions",
"organizations_url": "https://api.github.com/users/LopezRony/orgs",
"repos_url": "https://api.github.com/users/LopezRony/repos",
"events_url": "https://api.github.com/users/LopezRony/events{/privacy}",
"received_events_url": "https://api.github.com/users/LopezRony/received_events",
"type": "User",
"site_admin": false
}
}, {
"url": "https://api.github.com/gists/490d46bafcc076d9db77",
"forks_url": "https://api.github.com/gists/490d46bafcc076d9db77/forks",
"commits_url": "https://api.github.com/gists/490d46bafcc076d9db77/commits",
"id": "490d46bafcc076d9db77",
"git_pull_url": "https://gist.github.com/490d46bafcc076d9db77.git",
"git_push_url": "https://gist.github.com/490d46bafcc076d9db77.git",
"html_url": "https://gist.github.com/490d46bafcc076d9db77",
"files": {
"renewables.rb": {
"filename": "renewables.rb",
"type": "application/x-ruby",
"language": "Ruby",
"raw_url": "https://gist.githubusercontent.com/jnicho02/490d46bafcc076d9db77/raw/92726498d1117312d8fd12a44ca5defbffbafc83/renewables.rb",
"size": 779
}
},
"public": true,
"created_at": "2015-10-20T13:03:44Z",
"updated_at": "2015-10-20T13:05:13Z",
"description": "converting government renewable energy planning permission csv to geojson",
"comments": 1,
"user": null,
"comments_url": "https://api.github.com/gists/490d46bafcc076d9db77/comments",
"owner": {
"login": "jnicho02",
"id": 83251,
"avatar_url": "https://avatars.githubusercontent.com/u/83251?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/jnicho02",
"html_url": "https://github.com/jnicho02",
"followers_url": "https://api.github.com/users/jnicho02/followers",
"following_url": "https://api.github.com/users/jnicho02/following{/other_user}",
"gists_url": "https://api.github.com/users/jnicho02/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jnicho02/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jnicho02/subscriptions",
"organizations_url": "https://api.github.com/users/jnicho02/orgs",
"repos_url": "https://api.github.com/users/jnicho02/repos",
"events_url": "https://api.github.com/users/jnicho02/events{/privacy}",
"received_events_url": "https://api.github.com/users/jnicho02/received_events",
"type": "User",
"site_admin": false
}
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment