1
2
3
4
#Functions [javscript]
var ms = 0;
var state = 0;
...

JavaScript Stop Watch

by richardhealy, October 27, 2007 13:31, 3 refactorings, tagged with time, clock, speed, test, javascript

I use this to test speed of...

28e65a85a625f7c0689bcf96ccf6043d Talk
1
2
3
function curry(fn, scope)
{
...

JavaScript On Curry

by richardhealy, October 19, 2007 08:45

Let me show you how I am us...

28e65a85a625f7c0689bcf96ccf6043d Talk
1
2
3
4
function curry(fn, scope)
{
    var scope = scope || window;
...

JavaScript Curry

by richardhealy, October 18, 2007 09:34, 6 refactorings

I use this little function ...

28e65a85a625f7c0689bcf96ccf6043d Talk

PHP On Random password

by richardhealy, October 17, 2007 18:18

I suppose that answers that...

28e65a85a625f7c0689bcf96ccf6043d Talk
1
2
3
4
[php]
<?php
function random_password($length = 6)
...

PHP On Random password

by richardhealy, October 17, 2007 16:15

Not sure what the speed dif...

28e65a85a625f7c0689bcf96ccf6043d Talk

PHP On Copyright Year

by richardhealy, October 15, 2007 14:15

Ah! I didn't know that! Che...

28e65a85a625f7c0689bcf96ccf6043d Talk

JavaScript On Beautify JS Date to how rec...

by richardhealy, October 12, 2007 09:15

Tomasz! Nice little bit of ...

28e65a85a625f7c0689bcf96ccf6043d Talk

PHP On Copyright Year

by richardhealy, October 11, 2007 23:02

Scrap the "bracket" comment...

28e65a85a625f7c0689bcf96ccf6043d Talk
1
Copyright &copy; 2007<?= intval(date('Y')) > 2007 ? date(' - Y') : ''; ?> - All Rights Reserved - Design by scott2010_h

PHP On Copyright Year

by richardhealy, October 11, 2007 22:56

I'm personally not a big fa...

28e65a85a625f7c0689bcf96ccf6043d Talk