January 2012
1 post
April 2011
1 post
Cardinal Blue: Introducing RestGraph →
cardinalblue:
We are proud to announce RestGraph - a lightweight open-source Facebook Graph API client for Ruby. It’s modular and compact, and provides only the essential functionality.
Moreover, it’s designed to be transparent to Facebook Graph API, which has the benefit of simplicity. Unlike other client…
March 2011
2 posts
Cardinal Blue: Adventures with AppMakr →
cardinalblue:
AppMakr is a convenient web-based tool for building iPhone (and now Android) apps out of RSS feeds and HTML/CSS files. We recently built an app using AppMakr called ThinkStartup, based on our Facebook page for startup news (http://facebook.com/thinkstartup).
Here are some issues that we ran…
February 2010
6 posts
http://godfat.tumblr.com/post/383400296/zonble →
我發現在這邊聊天這樣會吵到 zonble… XDDDDD
完全離題 lol
poga:
原來你也有在用…
這算是可以打比較多東西的twitter嗎
http://godfat.tumblr.com/post/383400296/zonble →
哈,下次路過走進去看看
zonble:
新東陽就有賣。
godfat:
我要!
廢業夫妻成長日記的 [Nostalgia] 懷舊就是生活 III →
interesting, i thought it was true
caasi:
回想起來,小時候雖然喜歡打電動,但卻不是個認真打電動的小鬼,有點後悔(?)。
在看 Namco特輯那篇時想到,不知道是那邊的文章中說, Pac-Man裡面的鬼追玩家並沒有用到什麼複雜的演算法,而是由 Pac-Man走過的路線決定。為此找了下,結果 The Pac-Man Dossier完全破解這鬼流言,裡面四種鬼各有不同的移動模式,也有自己的目標 Tile。鬼頂多就是多預測一格,好在遇到岔路時決定自己該轉那個彎。
至於之前聽到的那個神奇作法,旨在說明在地圖上留下資料可以減少尋徑的計算負擔。我猜比較有可能出現在類似放屁車(New Rally-X)之類的遊戲中,不過一時找不到證據。
測試
caasi:
沒差啦,反正寫這個又沒有壓力XD
看到你在用 tumblr嚇了一跳,因為你已經很勤地在寫星之一角了。
有段時間在爬 PTT的程式語言版,也發過一篇鱷魚蛋的。後來因此找到你的星球XD
最近持續關心老外獨立遊戲的發展,之前在你那邊問有沒有看 TIGSource跟 ByteJacker的也是我 :p
噢,原來如此,感謝告知,解除了我近日的困惑之一 XDXD
至於 thumblr 嘛… 我向來是秉持著好用的東西就該用的精神? XD
因此看到幾個人有在用,也想知道「為什麼」有這麼好用,
想知道 thumblr 與別人不一樣的地方究竟在哪裡?
因此在某個心血來潮的夜晚,就弄了個帳號試試了。
但結果果然還是挑不到自己想要的 theme @@…
就這麼擱在這一段時間了…
欸我還是不適應 markdown...
測試
ㄟ,我有看到這篇,不過這邊我東西都還沒調好… :(
暫時沒空慢慢調…
caasi:
godfat:
天上龍捲風捲龍上天。
Knock knock,有人在家嗎?
January 2010
12 posts
同感,前一陣子也是在這樣想
zonble:
如果最終目的是要完成一件作品,那麼,我相信,過程應該要獨裁。
zonble:
iPhone 手電筒軟體拿到 iPad 上,就變成照妖鏡了。
Avatar
zonble:
這部電影不錯,最棒的地方就在於用了很好的理由來合理化見色忘友忘同胞的行為,而且電影裡頭的設定充分滿足觀眾內心的渴望-我們透過移情將自我投射到主角 Jake 身上,再轉換成身高三公尺的那美人,既然身材變高大了,想必其他器官也變大了。
lukhnos:
You use NULL, I use nil,
It’s just zero, it’s just naught,
But if you think a 0 is a NULL, you never heard something called SQL…
測試
天上龍捲風捲龍上天。
#!/usr/bin/env ruby
# encoding: utf-8
# Ruby Quiz #158
%w[ Class <<self Symbol ].reverse.each{ |klass|
# dirty 1.8 compatibility
def public_send *args
respond_to?(args.first) && send(*args)
end unless respond_to?(:public_send)
# full 1.8 compatibility
def public_send *args
if respond_to?(args.first)
send(*args)
else
msg = " `\#{args.first}' called...