2013年12月13日 星期五

HTML5 遊戲開發相關資料

工具

Phaser 是一套免費且開源的 2D 遊戲框架
http://phaser.io/
範例
http://gametest.mobi/phaser/examples/

推荐3款强大的HTML5游戏快速开发工具
http://www.csskoo.com/index.php?option=com_k2&view=item&id=37:%E6%8E%A8%E8%8D%903%E6%AC%BE%E5%BC%BA%E5%A4%A7%E7%9A%84html5%E6%B8%B8%E6%88%8F%E5%BF%AB%E9%80%9F%E5%BC%80%E5%8F%91%E5%B7%A5%E5%85%B7

HTML5开发必备:游戏开发资源合集
http://www.csdn.net/article/2013-03-22/2814606-HTML5-game

一些最新的HTML5和JavaScript遊戲開發引擎
http://www.techfriend.in/zh-tw/HTML5%E5%92%8Cjavascript%E9%81%8A%E6%88%B2%E9%96%8B%E7%99%BCengines.html%E7%9A%84

Google Web Designer
https://www.google.com/webdesigner/

优秀工具推荐:两款很棒的 HTML5 游戏开发工具
http://www.cnblogs.com/lhb25/p/html5-game-develpoe-tools.html

Cocos2d-html5
http://www.cocos2d-x.org/wiki/Cocos2d-html5

遊戲引擎 Cocos2d-html5
http://ithelp.ithome.com.tw/question/10119167?tag=ithome.nq


教學

[Cocos2d-html5] 一步一步学Cocos2d-html5做游戏教程(入门篇)
http://bbs.html5china.com/thread-4509-1-1.html

HTML5 遊戲開發範例整理(1-10)
http://japlinchen.blogspot.tw/2012/10/html5-1-10.html

Google Web Designer 搶先玩 1
http://www.youtube.com/watch?v=5dftkqpFI40

Google Web Designer 搶先玩 2
http://www.youtube.com/watch?v=BkZFhNzVqM4

google也推網頁設計工具-Google Web Designer
http://csscoke.com/2013/10/01/google-web-designer/

衛道程式設計菁英班
https://sites.google.com/a/vtsh.tc.edu.tw/wei-dao-zhong-xue-cheng-shi-jing-ying-ban/android-kai-fa/cocos2d-html5-html5you-xi-kai

Game Maker遊戲設計教學網
http://learn.bles.tp.edu.tw/moodle/course/view.php?id=2

HTML5 遊戲框架:Cocos2d-html5
https://igdshare.org/content/cocos2d_html5

App 開發效益再優化,你應該認識的 Corona SDK
http://techorange.com/2012/04/27/app-develop-corona/

CORONA SDK in Taiwan
http://coronaintaiwan.blogspot.tw/

 Lua教程 : 第一個Lua程式
http://www.ptt.cc/bbs/GameDesign/M.1155044927.A.1E1.html

跨平台App 開發:Corona SDK 簡介
http://lets-make-games.blogspot.tw/2013/03/app-corona-sdk.html

CORONA教學第一章認識繪圖系統並寫出CORONA遊戲引擎第一個程式
http://derekcylin.pixnet.net/blog/post/82468021-corona%E6%95%99%E5%AD%B8%E7%AC%AC%E4%B8%80%E7%AB%A0%E8%AA%8D%E8%AD%98%E7%B9%AA%E5%9C%96%E7%B3%BB%E7%B5%B1%E4%B8%A6%E5%AF%AB%E5%87%BAcorona%E9%81%8A%E6%88%B2

分享用Adobe Air向iOS移植游戏的经验
http://gamerboom.com/archives/47931

書:在Android設備上快又有力開發Adobe AIR程式
http://www.books.com.tw/products/0010582932

使用Adobe AIR 開發真正跨平台遊戲Demo
http://7-12.idv.tw/forums/viewthread.php?tid=2295





2013年11月27日 星期三

Ruby 資料

Ruby 使用手冊
http://guides.ruby.tw/ruby/index.html

Rails Guides
http://guides.ruby-china.org/

Ruby on Rails 實戰聖經
http://ihower.tw/rails3/intro.html

Ruby Programming Language 中文官方網頁
https://www.ruby-lang.org/zh_tw/


2013年11月23日 星期六

Bonobo Git Server (Simple git server for Windows.) 測試備忘

Bonobo Git Server是一款Windows上的Git Server,它使用IIS即可,走的是Http協定,只要簡單的安裝就能使用,但是因為我的專案大小有1.35GB在 push 的時候一直發生奇怪問題,怕忘記趕快備忘一下。

1.發生RPC FAILURE (RESULT=56)之類,參考URL
http://flyingtomoon.com/2011/04/12/git-push-is-failed-due-to-rpc-failure-result56/
http://blog.xuite.net/misgarlic/weblogic/brick-view/102804976?aid=55236696&mode=brick
https://gitcafe.com/GitCafe/Help/tickets/269?locale=zh-TW

可用 git config http.postBuffer 524288000 將Http buffer加大。

2.發生 fatal: protocol error: bad line length character:<!DO ,參考URL
http://stackoverflow.com/questions/7152285/issue-with-git-hosted-on-iis-with-bonobo

在 Bonobo Web.config file 的 <system.web> 加上
<httpruntime maxrequestlength="2147483647"></httpruntime>

3.我在IIS上的應用程式集區設定上的"工作者處理序上限"也加大到 6 以免IIS記憶體不足。

4.發生error: RPC failed; result=22, HTTP code = 404,參考URL
http://gisgeek.blogspot.tw/2012/03/bonobo-git-server-remote-end-hung-up.html

修改  Bonobo Web.config file
把 requestLimits maxAllowedContentLength="102400"
改到 999999999

5.當版本庫過大在clone時發生錯誤,error: RPC failed; result=22, HTTP code = 500
http://stackoverflow.com/questions/17826660/gitlab-git-clone-https-with-large-repos-fails

試試SSH方式
http://blog.crboy.net/2012/05/git-on-windows.html
http://jerry2yang.wordpress.com/2011/08/22/git-server-with-sshd-on-windows-server/
http://holyhoehle.wordpress.com/2011/08/05/setting-up-a-git-server-on-windows-server-2008-r2-using-msysgit-and-winsshd-update/
http://blog.pigbaby.com/?p=222
http://jerry2yang.wordpress.com/?s=msysGit
Windows GIT 解決中文顯示亂碼問題
http://jerry2yang.wordpress.com/2011/08/12/windows-git-%E8%A7%A3%E6%B1%BA%E4%B8%AD%E6%96%87%E9%A1%AF%E7%A4%BA%E4%BA%82%E7%A2%BC%E5%95%8F%E9%A1%8C/

用Apache
http://huan-lin.blogspot.com/2011/05/install-git-server-and-apache-on.html


2013年11月10日 星期日

重構文章收集

只是收集備忘,轉載自In91

[ASP.NET]重構之路系列v1 – UI, Business logic, Data access概念分開
http://www.dotblogs.com.tw/hatelove/archive/2011/05/11/asp.net-refactoring-separate-ui-service-data.access.aspx

[ASP.NET]重構之路系列v2 – DRY & Top-Down思考方式
http://www.dotblogs.com.tw/hatelove/archive/2011/05/16/dry-top-down-design.aspx

SOA文章

只是收集備忘,轉載文章.

SOA簡介(一)
http://miin1130.pixnet.net/blog/post/22632521

石頭閒語
個人經驗談現實中的 SOA, part 1 - 實況, 概念與基於動態語言的實踐途徑
http://blog.roodo.com/rocksaying/archives/2660010.html

個人經驗談現實中的 SOA, part 2 - 訊息、訊息、訊息
http://blog.roodo.com/rocksaying/archives/2663647.html

業務流程決定軟體程式,軟體程式追隨業務流程
http://blog.roodo.com/rocksaying/archives/3045651.html

資料管理趨勢,檔案一如資料表,資料表一如檔案
http://blog.roodo.com/rocksaying/archives/2521061.html

論「流程整合」之前的事
http://blog.roodo.com/rocksaying/archives/3114577.html

SOA的輕量化趨勢,從ESB漂移到Mashups
http://blog.roodo.com/rocksaying/archives/10415235.html

微軟
http://www.microsoft.com/taiwan/services/microsoftservices/soa.aspx

其他...
Microsoft .NET 應用系統架構導論
http://60-251-1-52.hinet-ip.hinet.net/taiwan/msdn/columns/200303netappintro.htm

Design Patterns 第二炮 : Factory Pattern , Strategy Pattern
http://netgo2oo.blog.ithome.com.tw/trackbacks/224/903