Skip to content

Instantly share code, notes, and snippets.

View JosephLenton's full-sized avatar

Joseph Lenton JosephLenton

View GitHub Profile
@JosephLenton
JosephLenton / gist:3191671
Created July 28, 2012 03:40
Times wordsearch answer finder
<!DOCTYPE html>
<script>
String.prototype.reverse = function() {
return this.split('').reverse().join('');
}
var searchName = function( name, lines ) {
for ( var j = 0; j < lines.length; j++ ) {
if ( lines[j].indexOf(name) !== -1 ) {
return true;
@JosephLenton
JosephLenton / spider.pl
Created July 28, 2012 03:49
prolog text adventure game
/* SPIDER -- a sample adventure game, by David Matuszek.
Consult this file and issue the command: start. */
:- dynamic at/2, i_am_at/1, alive/1. /* Needed by SWI-Prolog. */
:- retractall(at(_, _)), retractall(i_am_at(_)), retractall(alive(_)).
/* This defines my current location. */
i_am_at(meadow).
@JosephLenton
JosephLenton / gist:3956662
Created October 26, 2012 03:14
object-event system with JS-like syntax
class Player {
constructor( hp ) {
this.hp = hp;
this.isAlive = true;
}
damage( att ) {
this.hp = Math.min( 0, this.hp - att );
this.isAlive = false;
@JosephLenton
JosephLenton / .vimrc
Created November 28, 2012 14:20
my vim rc file
" set custom theme settings
if has("win32")
set gfn=Droid\ Sans\ Mono:h11
set gfn+=DejaVu\ Sans\ Mono:h11
set gfn+=Courier:h12
else
"set guifont=DejaVu\ Sans\ Mono 11
set guifont=DejaVu\ Sans\ Mono:h11
endif
@JosephLenton
JosephLenton / gist:4193591
Created December 3, 2012 08:14
execution problem
<!DOCTYPE html>
<script>
function rand() {
return (Math.random()*1000) | 0;
}
function foo() {
console.log( "execution " + execution );
}
/**
* Replaces this node with the one given,
* or replaces one child with another.
*
* replace( newNode ) -> this
*
* Replaces this node, with the one given,
* in the DOM.
*
@JosephLenton
JosephLenton / gist:5266083
Created March 28, 2013 19:25
A rudimentary shim for textContent support in IE 8. It works by wrapping the items that can create HTML elements, and adding the getter on there directly. The check at the end then applies it to any existing HTML. That means you need to include this, after the HTML on your page.
var div = document.createElement('div');
if (
div.textContent === undefined &&
div.innerText !== undefined
) {
// handles innerHTML
var onPropertyChange = function (e) {
if (event.propertyName === 'innerHTML') {
var div = (event.currentTarget) ? event.currentTarget : event.srcElement;
@JosephLenton
JosephLenton / starcraft-builds.txt
Created June 23, 2013 00:27
some starcraft builds I am working on
# TvT, 1 base Nuke/Hellion
@10 Supply
@12 Gas
@13 Barracks
CC -> Orbital
1x Marine
100g Factory
@JosephLenton
JosephLenton / gist:6068044
Created July 24, 2013 04:22
Tilea's missed chat
<terrortenebrarum> volume sounds good
<thenmeisnoob> atm its ok lets see in game
<thenmeisnoob> yoshi candy ?
<gracklookslikewoody> first time playing goes on hard \ o /
<alexis_evo> I think the circles are there for 360 controller
* mathematicstv ([email protected]) has left
<terrortenebrarum> the wood
<studiofortress> the object at the top
<alexis_evo> the wood panels lol
<alexis_evo> you can use the mouse to swing for momentum
--- stdout for Hero Extant ---
Pixel Format Mode: Double Buffered, Accelerated
Colour Depth: 32
Depth Buffer: 32
Alpha Bits: 8
get_proc OK 'glCullFace'
get_proc OK 'glFrontFace'
get_proc OK 'glHint'
get_proc OK 'glLineWidth'
get_proc OK 'glPointSize'