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
" 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
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
/* 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
<!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
<? | |
get( '/blog/show/{title}' )-> | |
validate( function( $title, &$post ) { $post = $this->model->posts->get( $title ); } )-> | |
action( | |
function( $post ) { | |
$this->view( 'blog/post', $post ); | |
}, | |
function( $title ) { | |
$this->view( '404', "Blog post not found " . h($title) ); |
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
\pretty_errors\reportErrors( array( | |
'ignore_folders' => array( 'flexi\\' ), | |
'application_folders' => array( 'app\\' ), | |
'background_text' => 'terse.' | |
) ); |
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
<? | |
/** | |
* Pretty Errors | |
* | |
* ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### | |
* | |
* WARNING! It is downright _DANGEROUS_ to use this in production, on | |
* a live website. It should *ONLY* be used for development. | |
* | |
* Pretty Errors allows the outside world to alter your project, |
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
<? | |
/** | |
* Pretty Errors | |
* | |
* ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### | |
* | |
* WARNING! It is downright _DANGEROUS_ to use this in production, on | |
* a live website. It should *ONLY* be used for development. | |
* | |
* Pretty Errors allows the outside world to alter your project, |
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
<? | |
get( 'login' ); | |
post()->login = function() { | |
// is already logged in | |
post()-> | |
verify( function() { | |
return $this->obj->session->isLoggedIn(); | |
})-> | |
redirect( '/' ); |