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
∞ 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 |
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
<?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 |
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
<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 |
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
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 |
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
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 |
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' |
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
# 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
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
/** | |
* 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. | |
* |