Skip to content

Instantly share code, notes, and snippets.

View JosephLenton's full-sized avatar

Joseph Lenton JosephLenton

View GitHub Profile
@JosephLenton
JosephLenton / gist:7294362
Created November 3, 2013 20:20
DJ Bondage songs
∞ http://www.youtube.com/watch?v=YFIzp757n4o
☿ http://www.youtube.com/watch?v=zLV3hwU9QS8
♆ http://www.youtube.com/watch?v=oxwAUWvpnxE
☨ http://www.youtube.com/watch?v=-PP5aec8Ays
☾ http://www.youtube.com/watch?v=B-NSKe0hXYM
☽ http://www.youtube.com/watch?v=IpFLOwEWQgo
✞ http://www.youtube.com/watch?v=DTUzJQCDMO0
Ω http://www.youtube.com/watch?v=v6NEcaFwhKo
Λ http://www.youtube.com/watch?v=acnH6M1Ee8k
ʊ http://www.youtube.com/watch?v=MWohjcHZumA
@JosephLenton
JosephLenton / index.php
Created October 30, 2013 01:28
simplistic pure-php site
<?php
// includes: head, css files, top-bar, etc
require( 'start-page.php' );
?>
put content for this page here
<?php
// includes footer, and closes the body and stuff
@JosephLenton
JosephLenton / gist:6481111
Created September 8, 2013 01:29
more tileä chat
<studiofortress> Tilea, you should stream with a french accent
<studiofortress> since you speak french
<studiofortress> french accents are feminine too
<xaioxaiofan> I return from the corner.
<tilea> don't you hate france
<studiofortress> the english side of me hates them with a passion, but they have some nice bits too
<studiofortress> like their industries in black and white striped tops and rings of garlic on string are unmatched
<tilea> i see
<tilea> my french accent is not very good.
<studiofortress> does not matter
@JosephLenton
JosephLenton / gist:6203442
Last active December 20, 2015 22:18
Tileä Twitch Bio
Tileä - Denial esports
======================
Hello, my name is Tileä "Tileä" Flavall. I am a High Masters Zerg/Terran playerwith Denial E-Sports. I came runner up at the Starcraft II WCS New Zealand Nationals and this year I am competing in WCS America getting to Challenger in season 1 and 2 and aimingfor a spot in Premier next Season. I am from New Zealand, but live in the US, and I mainly stream on KR/EU Ladder. I also occasionally stream other games I enjoy.
keyboard: Das Model S Ultimate, brown switches
mouse: SteelSeries Sensei Raw Frost Blue
Twitter: http://twitter.com/Denial_Tilea
Liquidpedia: http://wiki.teamliquid.net/starcraft2/Tilea
@JosephLenton
JosephLenton / gist:6198568
Last active December 20, 2015 21:38
Tilea missing chat
thenmeisnoob> tilea sup i see you in a game but it doesnt seem to end
<tilea> huh o _ o
<tilea> on eu?
<tilea> i'm playing games with a guy
<tilea> no match history
<thenmeisnoob> ahh i see
<thenmeisnoob> monty ^^
<tilea> yes
<montysc> how did you know it's me. D:
<alexis_evo> who else would she be playing with
--- 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'
@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
@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: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;
/**
* 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.
*