FutureRuby

Feb 19 2009 Published by under English,Ruby,Toronto

RubyFringe presents… FutureRuby — Leaders of Tomorrow, Today!

See you there soon!

One response so far

Recovering from Enterprise

Nov 06 2008 Published by under English,Ruby

How to embrace Ruby’s idioms and say goodbye to bad habits?

Java is Lego, Ruby is Play-Doh.

No responses yet

What to do when GitHub goes bad

Jul 28 2008 Published by under English,Ruby,Software

What to do when GitHub goes bad?

This was originally posted on github, I save a backup here just in case. :)

  • Git build-in server

git daemon –base-path=/Users/libinpan/clone-from-github –export-all

git clone git://127.0.0.1/rails…

Note: The default port git uses is 9418. Make sure that your firewall is set up to handle this.

  • GitWeb

git instaweb –httpd=webrick

  • Deploy with Capistrano

set :repository, “git://127.0.0.1/rails-app”

Zemanta Pixie

No responses yet

Gist.GitHub

Jul 24 2008 Published by under Uncategorized

It works! :D

No responses yet

RubyFringe

Jul 21 2008 Published by under English,Ruby,Toronto

RubyFringe, originally uploaded by Leftist.

RubyFringe is over, but the party continues!

One response so far

RubyFringe 2008 First Day Summarize

Jul 20 2008 Published by under English,Ruby,Toronto

Thanks Pete and Unspace for putting together this great event!
Even we already had a pretty high expectation on RubyFringe, the quality of every sessions are still surprisingly good! I was so impressed and inspired!
Here is my short and sweet version of first day summarize:
Jay Phillips -
I have no time for the college, checkout my sexy Adhearsion.
Dan Grigsby -
Know who are your customers and find ways to reach them.
Tobias Lutke -
Memcached is your good friend, here are my awesome tips.
Yehuda Katz -
Merb is awesome, datamaper is awesome, thor is awesome, johnson is awesome, YARD is awesome.
Luke Francl -
Code coverage is bullsh*t, read some good books, pay someone to use your site and watch them using it.
Nick Sieger -
Let’s enjoy some Jazz!
Obie Fernandez -
Pick your clients, close you deals and I will kick your ass if you only charge less than $150 per hour.
Matt Todd -
Fuck it! Let’s just do it!
Jeremy McAnally -
Your web framework sucks and you know it.
Zed Shaw -
No more Ruby on Rails! Let’s play some fucking awesome music, then peace out!

No responses yet

RubyFringe is the BEST conference ever, period.

Jul 19 2008 Published by under English,Ruby,Toronto

RubyFringe July 19 2008, originally uploaded by Libin Pan.

No responses yet

RubyFringe

Jul 18 2008 Published by under English,Ruby,Toronto

RubyFringe, originally uploaded by Libin Pan.

The party is just started!

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

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

Next »