使用svn 或者 git 的时候难免需要忽律一些文件,这里可以简单列出一些格式文件 gitignore **/.DS_Store node_modules/ logs/*.log views/dir/*.tpl(视图文件后缀) svn 使用 svn ,需要使用命令: svn propset svn:ignore "file1 // 需要换行输入 file2 ... dir/" . 或者加个.svnignore文件,把规则加进去 **/.DS_Store node_modules/ logs/*.log views/dir/*.tpl ... more 然后输入命令svn propset svn:ignore -R -F .svnignore . 就ok啦! 详情 »
第一次使用Vagrant Box ,或多或少会遇到这么一个问题,就是切下来的代码,可以运行,改接口也可以,但是静态资源(比如css,js)始终却改动不生效,有的会出现一系列红点(用chrome查看的话),其实这种问题只需要一个配置选项就OK了。 # If you use nginx as your main web server # add this directive in your nginx.conf sendfile off # If you use apache as your main web server # add this directive in your httpd.conf (or apache.conf) EnableSendfile off 参考:http://www.falexandrou. 详情 »
很多node程序在退出console后会自动关掉进程,解决方法有很多,诸如 pm2,当然今天主要说下Supervisor。 安装 Debian/Ubuntu: apt-get install supervisor Fedora: yum install supervisor Most other distributions: easy_install supervisor 配置 你可以编辑 /etc/supervisor/supervisor.conf 或者在/etc/supervisor/conf.d 目录下添加thinkjs.conf配置。类似于nginx 的配置。 配置(thinkjs)参考: [program:thinkjs] command = node /usr/www/thinkjs/index.js // start file directory = /usr/www/thinkjs user = root 详情 »
Mac 支持 ssh -d 进行socket 代理,如果你有aws主机的话,一个命令行就搞定翻墙。 ssh -D 7070 -i "xxx.pem" user@xx.xx.xx.xx(IP) 然后使用chrome Proxy Switchy 翻墙。 Proxy Switchy 配置详见:http://www.huluboke.com/proxy-switchy/ 详情 »
最近装rails,再启动程序时发现提醒部分包没装好,提示 gem install rack 或 bundle install 网上有很多方法,不过最直接的就是找一个靠谱的镜像源,你可以修改gem source 地址到 https://ruby.taobao.org/ $ gem sources --remove https://rubygems.org/ $ gem sources -a https://ruby.taobao.org/ $ gem sources -l *** CURRENT SOURCES *** https://ruby.taobao.org # 请确保只有 ruby.taobao.org $ gem install rails 如果使用buddle $ bundle config mirror.https://rubygems.org https://ruby. 详情 »
天气晴。 回来看了国足的比赛,3:0。但是场面太过难看,有点怀疑亚洲杯的国足是不是真的运气问题。 最近项目的事情感觉还是挺纠结的,感觉如果严格要求吧,会影响进度,如果容许少许的大意又会对将来的开发造成影响。总之是个问题? 收录几篇文章,有时间看下: http://blog.mwaysolutions.com/2014/06/05/10-best-practices-for-better-restful-api/ http://www.quora.com/What-are-the-10-most-important-things-to-learn-in-web-development-as-of-2015 http://devproconnections.com/web-development/restful-api-development-best-practices http://code.tutsplus.com/tutorials/top-20-mysql-best-practices--net-7855 https://github.com/johnpapa/angular-styleguide 详情 »