Archive for June, 2008

Trading Places with Indian Outsourcers

Jun 30 2008 Published by under English,Software

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 Published by under Links

No responses yet

Keyboard navigation for TextMate stacktraces

Jun 29 2008 Published by under Apple,English,Mac,OS X,Ruby,TextMate

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 Published by under Links

No responses yet

links for 2008-06-28

Jun 28 2008 Published by under Links

One response so far

links for 2008-06-27

Jun 27 2008 Published by under Links

One response so far

links for 2008-06-26

Jun 26 2008 Published by under Links

No responses yet

Firefox Keyboard Shortcuts on Mac

Jun 25 2008 Published by under Apple,English,Mac,OS X,Software

Top Ten Firefox Keyboard Shortcuts

1. ⌘ + l = focus address bar
2. ⌘ + d = bookmark current page
3. ⌘ + k = focus google search bar
4. ⌘ + f = find
5. ⌘ + g = find next
6. ⌘ + t = new tab
7. ⌘ + w = close current tab
8. ⌘ + shift + t = reopen accidentally closed tab (Best one ever!)
9. crtl + tab = tab through tabs
10. crtl + shift + tab = tab backwards through tabs

Bonus for Delicious Extension users:

⌘ + Shift + . = pulls delicious page if you have delicious firefox extension installed

No responses yet

Ruby on Rails 2.1 新特性之简体中文版

Jun 24 2008 Published by under Ruby,Software,中文

Thank you so much, Carlos Brando, for creating and sharing this great book – Rails on Rails 2.1 what’s new?

Thank you so much, all the Railsers in ChinaOnRails, for the original translation!

Thank you again, Carlos, for creating the beautiful covers for Chinese Version!

Ruby on Rails 2.1 What’s new Chinese Version is on:

http://blog.libinpan.com/download/libin-rubyonrails21-cn.pdf

Source code is on GitHub:

http://github.com/libin/rails21-book-cn/tree/master

非常感谢 Carlos Brando 编写并分享他的 Rails on Rails 2.1 what’s new? 感谢他还为中文版创建了特制的封面!

非常感谢 ChinaOnRails 的 Railser 们的辛勤翻译工作!这绝对是造福咱们广大 ROR 爱好者的好事情。

偶根据已有的翻译成果,稍作编辑后放到 GitHub 上:

http://github.com/libin/rails21-book-cn/tree/master

文本和 ChinaOnRails 翻译的结果是基本完全一致的,只是因为使用了和英文版相同的生成器,可以保持和原文一致的分页和代码格式。

下载地址:
http://blog.libinpan.com/download/libin-rubyonrails21-cn.pdf
繁体中文版正在翻译中,期待不日即可发布:
http://github.com/itszero/rails21-book-tw/tree

4 responses so far

links for 2008-06-24

Jun 24 2008 Published by under Links

No responses yet

Next »