Archive for the 'Analysis' Category

Speed Testing Chrome for List Processing

Monday, September 8th, 2008

What are we testing?
As Rich Internet Application development progresses, more and more developers are moving towards the functional programming capabilities of JavaScript.
First Order Functions, Closures, Macros and Lists are becoming a mainstream method of development.
When you can tell the computer how to do it, rather that listing what it needs to do, it becomes much [...]

Performance Testing in JavaScript

Saturday, August 16th, 2008

Fast pages and quick load times are key factors to keeping visitors on your site.
If you make them wait, they will leave.
So the speed of your JavaScript applications is crucial.
Fortunately, it turns out that JavaScript applications are ripe for performance optimization.
This requires a strong testing framework… enter JSTR.
String Concatenation Performance
A simple example of the type [...]

A ‘foolish’ new tool for Javascript

Thursday, August 14th, 2008

I have been dying to shout about this…
instead I have been waiting very patiently…
BUT now it is time to SHOUT!
JSTR(Jester) is out of the box!
JSTR is the first ‘Browser based’ (ie:Cross-browser ):

Testing
Benchmarking
Optimization

tool for javascript.
With both import & export of Test-Sets, as well as auto-generated URLs, JSTR lets you easily share your code with everyone else, [...]

Timing is everything

Saturday, July 19th, 2008

Here for your delight.
A simple way to track timing in Javascript.
// TIMESTAMP Function
function timestamp(){return (new Date()).valueOf();}

// TIMER Function, wraps timing arround function call
function timer(f){
  var t1 = timestamp();
  for(var i = 0; i < 1000; i++){
    f();
  }
  var t2 = timestamp();
  return t2-t1;
}

// The function to test
var testFunc = function(){
  var v = [...]

Setting an Exclusion Cookie for Google Analytics with a Bookmarklet

Friday, July 18th, 2008

I have been doing a lot of work on my reading software website recently. This has played havoc with my Google Analytics reports.
So I set about looking for a way to block my own hits from the results. Having done a good search for up to date techniques, it seems that a cookie and a [...]

10 easy steps to add an exclusion filter in Google Analytics

Friday, July 18th, 2008

I have been doing a lot of work on my reading software website recently, this has played havoc with my Google Analytics reports.
I set about looking for a way to block my own hits from the results, having done a good search for up to date techniques, it seems that a cookie and a filter [...]

Better Task control on Windows (NT/XP/Vista)

Friday, April 25th, 2008

I have been using ProcessExplorer since long before Microsoft bought out SysInternals, since long long before that too, and I have found it incredibly useful.
e.g.: checking to see if my new application has a memory leak etc..
Now I have just discovered it has an even better toy-set built into it.
If you have never tried it, [...]

How to make a difficult descision - an analysis of Global Warming

Saturday, March 29th, 2008

I recently came across the series of videos produced by wonderingmind42 on the risk management analysis of the current gloabal warming crisis. Also available on manpollo.
He proposes a very compelling argument. And what is more, it is simple.
Also very interesting, is that his very detailed videos (there is nearly 6 hours in total) also teach [...]

Byting the hand that feeds you…