2012-05-14 15:56:35 | 0 评论

1.存二万块钱 2.看完一个网站的源码 3.写完自己的网站 4.去电影看一场电影

2012-04-25 15:11:13 | 0 评论

借用 新創網站這樣開發才夠快 這篇格式,希望不要介意。我主要是想闡述以前在 T客邦 的經驗方法。 T客邦在一年半裡面,就從台灣 Alexa 400 名以外,衝進台灣 Alexa 100 名內。這一年半時間技術團隊開發出了四個大網站,十數個子網站,和背後一群深厚的基礎建設(HA, backup, PV stat, advertising system…etc.)。T17 實際開...

2012-03-08 11:31:18 | 1 评论

首先需要安装RMagick 这个gem. def get_sign_img               #设置用来绘图的背景图片 bg_img = Image.read(@theme[:back_ground]).first draw = Draw.new         ...

2012-02-10 15:24:40 | 0 评论

I had a ruby project named ”bootstrap_helper”, which has 43 watchers on Github. I thought having 43 watchers is sort of popular. But there is a weired thing: when I search keyword ...

2012-02-10 12:32:37 | 0 评论

做了一次小小的改版,记录一下

2012-02-08 11:54:35 | 0 评论

在 Rails 開發中,有時候我們會遇到要在表單中設計 select 的選項。select 吃的 collection 是個 Array 。通常我們會往往第一直覺的想法是將之塞到 model 的 CONSTANT 裡,再寫一個 class method 包裝起來,再寫自己的 collection Helper 叫出來。 1 2 3 4 5 6 7 8 ...