This file contains 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> | |
<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; |
This file contains 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
/* 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). |
This file contains 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
class Player { | |
constructor( hp ) { | |
this.hp = hp; | |
this.isAlive = true; | |
} | |
damage( att ) { | |
this.hp = Math.min( 0, this.hp - att ); | |
this.isAlive = false; |
This file contains 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
" 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 |
This file contains 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> | |
<script> | |
function rand() { | |
return (Math.random()*1000) | 0; | |
} | |
function foo() { | |
console.log( "execution " + execution ); | |
} |
This file contains 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
/** | |
* 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. | |
* |
This file contains 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
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; |
This file contains 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
# TvT, 1 base Nuke/Hellion | |
@10 Supply | |
@12 Gas | |
@13 Barracks | |
CC -> Orbital | |
1x Marine | |
100g Factory |
This file contains 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
<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 |
This file contains 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
--- 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' |