links for 2008-07-03

Jul 03 2008

No responses yet

FireFox did it!

Jul 02 2008

Don’t forget to download your very own certificate for helping set a Guinness World Record.

No responses yet

links for 2008-07-02

Jul 02 2008

No responses yet

links for 2008-07-01

Jul 01 2008

No responses yet

Trading Places with Indian Outsourcers

Jun 30 2008

This is the best show I’ve seen on this topic, besides the movie Outsourced. Definitely worth watching!

Roger Spurlock (from the Supersize Me movie) explores what the the US job outsourcing experience is like on the other side.

Outsourcing has changed our planet.

This was done on the “30 Days” series on FX hosted by Morgan Spurlock. It was very entertaining and thought-provoking for the guy who went to India, the Indians themselves and, of course, those of us watching.

read more | digg story

No responses yet

links for 2008-06-30

Jun 30 2008

No responses yet

Keyboard navigation for TextMate stacktraces

Jun 29 2008

Keyboard navigation for TextMate stacktraces

Put this script at the end of /Applications/TextMate.app/Contents/SharedSupport/Support/script/webpreview.js.

document.addEventListener('keypress', function(e){
    var key = e.keyCode
    if (key != 63233 && key != 63232) return
    links = document.getElementsByTagName('a')
    for (var i = 1; i < links.length; i++)
        if (links[i].title == 'focused') break
    if (i == links.length) i = 0
    links[i].title = null
    if (key == 63233){
        if (i == (links.length - 1)) i = 1
        else i += 1
    }
    if (key == 63232){
        if (i <= 1) i = links.length - 1
        else i -= 1
    }
    links[i].title = 'focused'
    links[i].focus()
})

Incredibly useful when I am running my tests!

No responses yet

links for 2008-06-29

Jun 29 2008

No responses yet

links for 2008-06-28

Jun 28 2008

One response so far

links for 2008-06-27

Jun 27 2008

One response so far

« Newer - Older »