解决Git stash冲突问题
本篇博文分享一下git stash
以及他的实际使用技巧
- Git stash 是什么,他的使用场景,以及如何来使用
- Git stash pop 时冲突的解决方法
本篇主要分享一下如何使用Chef进行快速部署一个应用到服务器。
为了讲解的需要这里做了一些假定。
Just a memo for installing ruby on Mac OSX with the feature of typing Chinese under ruby console.
brew install readline ruby-build
RUBY_CONFIGURE_OPTS=--with-readline-dir=`brew --prefix readline` rbenv install 1.9.3-p286
or to use pure Ruby readline
group :development do
gem 'rb_readline'
end
ref: https://github.com/guard/guard/wiki/Add-Readline-support-to-Ruby-on-Mac-OS-X
Some days ago I wanted to learn some css stuff from a site, I changed some css style to see what it turns to.
After 10 minutes after I got tired when I have to change the source again and again in the browser.
So I googled to find what kind of tools can be used to download files from a site, but I can’t find anything satisfied.
So after searched github I found I can do it myself with little work.
Here comes the SpeedSpider, it’s A simple and speedy web spider for site pages downloading.
UPDATE:
It turns out wget
can do all the jobs I wanted except it doesn’t use threads. So wget way may be slower than SpeedSpider.
You can download bootstrap page with code below.
wget -m -p -E -k -np http://twitter.github.io/bootstrap
当一个服务器不能负载的时候,就需要增加一个服务器来做负载均衡,这个时候就需要做文件共享。
这一次我们来看看如何在ubuntu12.04上用nfs来做文件共享
开发的时候我们很多时候需要配置一个与线上相同的环境来做测试。
其中一项就是我们需要用线上相同的域名在做测试,这样就需要在开发环境里面配置域名映射。
最为简单的情况就是使用/etc/hosts,但是如果是有一团队来做测试,需要所有的人有相同的配置,
特别是有新成员来的时候,相同的工作要不厌其烦的重复做重复说明。
还有一种办法就是找一台机器来做域名解析服务,其实配置起来也不是很麻烦,下面就让我来讲一个简单的例子。
我们在使用服务器的时候会遇到各种各样的问题,比如今天要说的硬盘管理。
在服务器刚开始使用的时候一般只装配了现阶段要使用的容量,究其原因
而如果当发现硬盘容量不够需要增加时,如果安装普通mount方法,需要准备一个更大的硬盘,把原始盘的内容复制过来。
这个操作会带来一定的风险:
使用LVM就可以克服以上的问题。
ssl是什么,ssl就是你在网址里面看到的https。区别于http,如果是ssl的,那么他所传输的数据是保密的,
别人无法根据监听网络偷取你的信用卡数据,登录密码。现在国内的银行等大型网站基本上都支持ssl了。
我们在用apache作为web服务器来配置一个网站的时候,往往自动忽略掉配置ssl,原因是ssl的CA一把都是收费的。
而且费用也都不低。现在终于好了,startssl.com支持免费的单域名了。