Tuesday, September 29, 2009

Photo group on Flickr

Just added a photogroup on Flickr called my.teleperformance.

Wednesday, July 29, 2009

Managers and Makers

Paul Graham has written a great article about managers schedule and makers schedule.

Thursday, April 2, 2009

10 important developers skills

Justin James lists 10 skills developers will need in the next five years:


  • One of the “Big Three” (.NET, Java, PHP)
  • Rich Internet Applications (RIAs)
  • Web development
  • Web services
  • Soft skills
  • One dynamic and/or functional programming language
  • Agile methodologies
  • Domain knowledge
  • Development “hygiene”
  • Mobile development

Monday, March 23, 2009

Lambda functions in PHP 5.3

I love it :) - it's like in javascript, so we can get a little closer to some real event-based programming (and callback functions)



Do you like it?

usort(
$list,
function ($a, $b) {
if ($a == $b) return 0;
return ($a < $b) ? -1 : 1;
}
);

Monday, March 16, 2009

CouchDB Talk

Vidoop CouchDB talk by Chris Anderson

Saturday, March 7, 2009

Selenium to test web applicatons

Selenium is a suite of toolsto automate web app testing across many platforms.

Selenium...

Saturday, February 28, 2009

A nice alternative to the YUI Grids css

Actually YUI Grids css was the only remaining useful item in the kit.

"Sometimes I’m so focused on JavaScript that it becomes a bit of a hammer for me that I try to use it on all problems. I forget about the power of CSS and what it can do. I recently met Nicole Sullivan at Web Directions North who is a CSS guru, especially around performance. She told me about an idea she’s been working on called Object Oriented CSS, and she’s just released open source code and documentation on the idea on github. From Nicole:"