- 一个Commit对应一个修改点(除非是在项目初始阶段或是升级BSP时)。
- 不要随便修改文件的属性。Windows 修改过的文件属性会变成755,上传代码时请注意修改成文件的原属性,可以用git whatchanged 来查看自己commit修改的文件。 缩进格式跟原文件保持一致。
- 不要修改跟提交内容无关的代码。
- 设置GIT使用vim来编辑commit,请不要使用-m参数 (git config –global core.editor vim)。
# Defaults for virtualbox initscript | |
# sourced by /etc/init.d/virtualbox | |
# installed at /etc/default/virtualbox by the maintainer scripts | |
# | |
# This is a POSIX shell fragment | |
# | |
# Set this to 1 if you would like the virtualbox modules to be loaded by | |
# the init script. |
301 https://github.com/zxdrive/imouto.host |
// jQuery 切换启用和禁用表单项 | |
(function ($) { | |
$.fn.toggleDisabled = function() { | |
return this.each(function() { | |
var $this = $(this); | |
if ($this.attr('disabled')) $this.removeAttr('disabled'); | |
else $this.attr('disabled', 'disabled'); | |
}); | |
}; | |
})(jQuery); |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Linq; | |
using Caliburn.Micro; | |
using Autofac; | |
using IContainer = Autofac.IContainer; | |
namespace Caliburn.Micro.Autofac { |
namespace Demo | |
{ | |
public class Application | |
{ | |
private readonly IContainer container; | |
public Application() | |
{ | |
ContainerBuilder builder = new ContainerBuilder(); | |
builder.RegisterType<Biscuit>().As<IDependency>().Named<IDependency>("biscuits"); |
/** | |
* GenPAC 0.2.1 http://jeeker.net/projects/genpac/ | |
* Generated: Fri, 17 May 2013 14:15:55 GMT | |
* GFWList Last-Modified: Fri, 17 May 2013 12:41:31 GMT | |
*/ | |
// proxy | |
var P = "PROXY 192.168.1.1:8118; DIRECT"; | |
// user rules |
/* | |
* twitter-entities.js | |
* This function converts a tweet with "entity" metadata | |
* from plain text to linkified HTML. | |
* | |
* See the documentation here: http://dev.twitter.com/pages/tweet_entities | |
* Basically, add ?include_entities=true to your timeline call | |
* | |
* Copyright 2010, Wade Simmons | |
* Licensed under the MIT license |
请到http://shadowsocks.org/downloads 下载相关的工具,本服务需要这些软件的配合。
使用有任何问题都可以在Issues提出。
https://github.com/chuquus/chuqu.us/issues
希望能获得大家在连接速度和稳定性上的反馈,谢谢。