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
<a href="http://www.radionz.co.nz/podcasts/atthemovies.rss">http://www.radionz.co.nz/podcasts/atthemovies.rss</a> | |
<br /> <a href="http://www.radionz.co.nz/podcasts/aucklandstories.rss">http://www.radionz.co.nz/podcasts/aucklandstories.rss</a> | |
<br /> <a href="http://www.radionz.co.nz/podcasts/bestoftheweek.rss">http://www.radionz.co.nz/podcasts/bestoftheweek.rss</a> | |
<br /> <a href="http://www.radionz.co.nz/podcasts/businessnews.rss">http://www.radionz.co.nz/podcasts/businessnews.rss</a> | |
<br /> <a href="http://www.radionz.co.nz/podcasts/checkpoint.rss">http://www.radionz.co.nz/podcasts/checkpoint.rss</a> | |
<br /> <a href="http://www.radionz.co.nz/podcasts/downthelist.rss">http://www.radionz.co.nz/podcasts/downthelist.rss</a> | |
<br /> <a href="http://www.radionz.co.nz/podcasts/focusonpolitics.rss">http://www.radionz.co.nz/podcasts/focusonpolitics.rss</a> | |
<br /> <a href="http://www.radionz.co.nz/podcasts/greatencounters.rss">http://www.radionz.co.nz/podcasts/greatencounters.rss</a> | |
<br /> <a href="http://www.radionz. |
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
function MockAjax() { | |
var self = this; | |
var responses = { | |
'http://api.example.com/cart/add.json?a=5&b=3': { | |
"data": 8 | |
} | |
}; | |
function request(url, success, failure) { | |
window.setTimeout(function () { |
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
function hangman(word) { | |
var reference = word.replace(/[a-zA-Z]/g,'-'); | |
function reveal(letter) { | |
reference = reference.split('').map(function(v, i){ | |
return word[i] === letter ? letter : v; | |
}).join(''); | |
return reference; | |
}; | |
return { | |
reveal: reveal |
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
(function(n, o, t, i, e){ | |
n.isIE = t; | |
if (t) { | |
o.styleSheets[0].addRule('.ie, .is-ie', 'display: initial'); | |
o.styleSheets[0].addRule('.not-ie', 'display: none'); | |
return; | |
} | |
i = o.createElement('style'); | |
i.innerHTML = '.ie,.is-ie { display: none; } .not-ie: { display: initial; }' | |
e = document.getElementsByTagName('script')[0]; |
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
konami(function(){ | |
console.log('KONAMI!!!'); | |
}); | |
function konami(fn, match) { | |
var konamiCode = '3838404037393739666513'; | |
var sequence = ''; | |
match = match || konamiCode; | |
window.addEventListener('keyup', function(event){ | |
sequence += event.keyCode; |
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
<html> | |
<head></head> | |
<body> | |
<strong>Markov Team Name Generator</strong><br /> | |
<button id="get-markov-name">Get Name</button><br /> | |
<strong>Generated Name:</strong> | |
<span id="generated-name">click Get Name to generate a name</span><br /> | |
<textarea style="min-width:200px; min-height: 400px;" id="previous-names"></textarea><br /> |
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
<html> | |
<head></head> | |
<body> | |
<strong>Markov Team Name Generator</strong> | |
<br /> | |
<button id="get-markov-name">Get Name</button> | |
<p>First table shows names generated by creating a first name starting with the most common first two letters, and a last name starting with the most common first two letters.</p> | |
<table border=1> |
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
function WebSocketRpc(url, batchOperationsDisabled) { | |
'use strict'; | |
var self = this; | |
var socket = null; | |
var queue = []; | |
var history = {}; | |
var methods = {}; | |
var noop = function () {}; | |
var noopFactory = function () { | |
return noop; |
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
Verifying that +master5o1 is my Bitcoin username. You can send me #bitcoin here: https://onename.io/master5o1 |
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 src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha256.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.17/angular.min.js"></script> | |
<script src="libs/bitnz-angular/bitnz-angular.js"></script> | |
<script src="js/pretty-bitnz.js"></script> | |
<style> | |
</style> | |
</head> |