Skip to content

Instantly share code, notes, and snippets.

View JosephLenton's full-sized avatar

Joseph Lenton JosephLenton

View GitHub Profile
@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 );
}
@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: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 / 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: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 / gist:2903598
Created June 10, 2012 02:19
get blog post
<?
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) );
@JosephLenton
JosephLenton / gist:2901687
Created June 9, 2012 16:34
example pretty errors options
\pretty_errors\reportErrors( array(
'ignore_folders' => array( 'flexi\\' ),
'application_folders' => array( 'app\\' ),
'background_text' => 'terse.'
) );
@JosephLenton
JosephLenton / prettyerrors.php
Created June 9, 2012 16:27
pretty errors (as is)
<?
/**
* 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,
@JosephLenton
JosephLenton / gist:2891648
Created June 7, 2012 21:29
pretty errors
<?
/**
* 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,
@JosephLenton
JosephLenton / gist:2891281
Created June 7, 2012 20:12
login code for 5.4 framework
<?
get( 'login' );
post()->login = function() {
// is already logged in
post()->
verify( function() {
return $this->obj->session->isLoggedIn();
})->
redirect( '/' );