摘要: 由于最近在使用fedora系统,系统默认的firefox很久没有用过,感觉不会用了。于是就打算安装chrome,它的有点就不用多说了。直接上方法: $sudo gvim /etc/yum.repos.d/google-chrome.repo #打开后将下面的内容拷贝到文件中。32位系统google-chrome]name=google-chrome - 32-bitbaseurl=http://dl.google.com/linux/chrome/rpm/stable/i386enabled=1gpgcheck=1gpgkey=https://dl-ssl.google.com/linux/l 阅读全文
posted @ 2013-12-07 13:33 LightStack开发日记 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 之前在网上看有一公司(记得还是一大公司),本地开发采用git管理代码,产品发布采用svn。当是觉得很别扭,没有当回事。最近项目任务不忙,在闲暇时间,突然想起这事情,详细研究了下。笔记如下:注意:在网上查询了下git有一个命令git-svn可以作为svn的客户端。git-svn的几个主要操作:* 检出一个已存在svn repository(类似于svn checkout)我们可以通过git-svn clone命令完成这个操作: git-svn clone your_svn_repository_url* 从中心服务器的svn repository获取最新更新这个操作可以通过"git-s 阅读全文
posted @ 2013-12-04 22:34 LightStack开发日记 阅读(1080) 评论(0) 推荐(0) 编辑
摘要: 阮一峰博客,对关于JS和Web设计:http://www.ruanyifeng.com/blog/2012/04/javascript_programming_style.htmlhttp://www.ruanyifeng.com/blog/2012/05/responsive_web_design.htmlCoffeeScript相关资料和书籍:http://coffeescript.org/http://www.w3ctech.com/p/1065http://island205.github.io/tlboc/http://arcturo.github.io/library/coffee 阅读全文
posted @ 2013-04-15 22:55 LightStack开发日记 阅读(115) 评论(0) 推荐(0) 编辑
摘要: I solved this problem this way:I run this command:npm config set strict-ssl falseThen set npm to run with http, instead of https:npm config set registry "http://registry.npmjs.org/"Then I install packages using this syntax:npm --proxy http://username:password@cacheaddress.com.br:80 install 阅读全文
posted @ 2013-03-13 23:10 LightStack开发日记 阅读(186) 评论(0) 推荐(0) 编辑