摘要: 有一个项目使用到Oracle Client,然后部署的时候出现以下问题。 Could not load file or assembly '*******' or one of its dependencies. An attempt was made to load a program with an incorrect format.由于Oracle Client提供的DLL是32位的,因此... 阅读全文
posted @ 2013-01-15 11:43 Jake Lin 阅读(9925) 评论(0) 推荐(1) 编辑
摘要: https://devcenter.heroku.com/articles/nodejs 这篇文章讲述很清楚,只需要几步就可以建立一个node.js项目,并部署到Heroku上面. 阅读全文
posted @ 2013-01-15 10:55 Jake Lin 阅读(715) 评论(0) 推荐(0) 编辑
摘要: 如果在Heroku.com的网站上重命名app,不会自动同步到开发机的*.git文件中,需要手工重命名。 $ git remote rm heroku$ heroku git:remote -a newnamenewname是新的app名字。可以参考https://devcenter.heroku.com/articles/renaming-apps 阅读全文
posted @ 2013-01-15 10:36 Jake Lin 阅读(1677) 评论(0) 推荐(0) 编辑
摘要: http://cocoapods.org/ 是一个用来管理Objective-C库的工具。可以通过http://cocoapods.org/看到如何安装和使用,只需要3步就可以开始使用,使用了cocoapods,我们就不用从github上分别下载不同的库。只需要在Podfile文件上编写需要使用的库就可以了。例如以下的文件。platform :iospod 'JSONKit', '~> 1.4'pod 'Reachability', '~> 3.0.0'但有时候会发现有些Pods的版本会低于github上的最新版本,可 阅读全文
posted @ 2013-01-15 06:16 Jake Lin 阅读(6420) 评论(0) 推荐(0) 编辑