git clone端口问题


ssh: connect to host git.host.de:4019 port 22: Connection refused
fatal: The remote end hung up unexpectedly
error: failed to push to 'ssh://root@git.host.de:4019/var/cache/git/project.git

编辑.ssh/config,指定端口

Host githost
HostName git.host.de
Port 4019
User root

在Chrome Console中使用Jquery

var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type.
jQuery.noConflict();

chrome extension seo tool chrome扩展插件 第一版

chrome-seotool
此工具是一个chrome浏览器的扩展插件,通过浏览器插件的形式快速获取当前页面的seo基本信息提高效率,如title,keywords,description,当前页面关键词在百度中的排名,请求的目标地址ip,模拟搜索引擎spider UA访问等功能。

chrome应用商店地址 seo tool

v1.0.0

第一个版本,主要功能为:

当前页面基本信息获取与建议,如title,keywords,description,canonical url等等
当前页面关键词出现次数
当前页面关键词在百度中的排名
当前域名的alexa排名
在插件中展示robots内容
模拟spider UA
在页面种标识nofollow链接
在页面中标识无alt的图片
当前域名的ip地址 (host有没有切换成功?一看ip就知道)

iphone开发图片尺寸

OS X MySQL-python Reason: image not found

$ sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib

/usr/local/mysql/lib/libmysqlclient.18.dylib 你的mysql lib

sublime text 2 mac 总是在新窗口中打开文件问题

Preferences -> Settings – Default

// OS X only: When files are opened from finder, or by dragging onto the
// dock icon, this controls if a new window is created or not.
“open_files_in_new_window”: false,

在mac osx RIV模式中使用tcpdump、wireshark抓取分析iphone数据包

一、Remote Virtual Interface
  在iOS5中新引入了“远程虚拟接口(remote virtual interface ,RVI)“的特性,可以在Mac中建立一个虚拟网络接口来作为iOS设备的网络栈,这样所有经过iOS设备的流量都会经过此虚拟接口,此虚拟接口代替了iOS设备本身的协议栈,但并没有将网络流量中转到Mac本身的网络连接上,这样所有网络连接都是iOS设备本身的,Mac电脑本身连不联网或者连接的网络类型都没有关系,而iOS设备本身可以为任意网络类型,2G/3G/WiFi等。在Mac电脑上使用任意抓包工具抓取RVI接口上的数据包就可以看到iOS设备上的所有网络数据。

二.使用方法
通过USB口将iPhone连接到Mac上。
使用Xcode的organizer工具获取到iPhone的UDID(identifier后的一长串就是)
使用rvictl命令创建RVI接口(remote virtual interface),使用iPhone的UDID作为参数。
$ rvictl -s
如果想捕获多个设备的网络包,可以使用上述命令创建多个设备的RVI,传递每个iOS设备的UDID作为参数即可。
RVI虚拟接口的命名规则为rvi0,rvi1,rvi2,…,可使用ifconfig命令查看
$ ifconfig rvi0
rvi0: flags=3005 mtu 0
使用完之后需要将创建的虚拟接口移除
$ rvictl -x

三、使用tcpdump抓包
tcpdump -i rvi0 -w capture.cap -v -vv -c 100 -X -e

四、使用wireshark打开capture.cap就可以进行分析了

mac osx使用brew安装指定版本subversion

先查看有哪些版本

cd /usr/local
brew versions subversion
1.8.4    git checkout ce669eb Library/Formula/subversion.rb
1.8.3    git checkout 9b438ce Library/Formula/subversion.rb
1.8.0    git checkout f56b641 Library/Formula/subversion.rb
1.8.1    git checkout 55577bb Library/Formula/subversion.rb
1.7.10   git checkout 0060dc3 Library/Formula/subversion.rb
1.7.9    git checkout b0e6223 Library/Formula/subversion.rb
1.7.8    git checkout f7a42d2 Library/Formula/subversion.rb
1.7.7    git checkout a6dcc41 Library/Formula/subversion.rb
1.7.6    git checkout 6b8d25f Library/Formula/subversion.rb
1.7.5    git checkout 5d5cd70 Library/Formula/subversion.rb
1.7.4    git checkout dc4245c Library/Formula/subversion.rb
1.7.3    git checkout eb97154 Library/Formula/subversion.rb
1.7.2    git checkout d89bf83 Library/Formula/subversion.rb
1.6.17   git checkout 6e2d550 Library/Formula/subversion.rb
1.6.16   git checkout 83ed494 Library/Formula/subversion.rb

然后我们要安装1.7.10版本,执行

git checkout 0060dc3 Library/Formula/subversion.rb
brew install --universal --java subversion
A universal build was requested, but neon was already built for a single arch.
You may need to `brew rm neon` first.
A universal build was requested, but sqlite was already built for a single arch.
You may need to `brew rm sqlite` first.
brew rm sqlite neon
Uninstalling /usr/local/Cellar/sqlite/3.7.10...
Uninstalling /usr/local/Cellar/neon/0.29.6...
brew install --universal neon sqlite

然后在进行安装

brew install --universal --java subversion

完成后执行

sudo mkdir -p /Library/Java/Extensions
sudo ln -s /usr/local/lib/libsvnjavahl-1.dylib /Library/Java/Extensions/libsvnjavahl-1.dylib

如果出现Error: No available formula for serf
发现github上的serf.rb不存在了
找到一个历史版本https://raw.github.com/mxcl/homebrew/f689d5232ce824fe6dd4b64df729abfc487a6558/Library/Formula/serf.rb
放入到Library/Formula中就可以安装serf了

如果出现Error: Download failed: http://www.apache.org/dyn/closer.cgi?path=subversion/subversion-1.7.10.tar.bz2
老版本的subversion下载地址都失效了,动手修改subversion.rb对应的下载地址和sha1,superbin修改为Superenv.bin

mac apache checking whether the C compiler works… no

cd /Applications/Xcode.app/Contents/Developer/Toolchains
sudo ln -s XcodeDefault.xctoolchain OSX10.8.xctoolchain

使用git和pathogen管理你的vim插件配置

1、安装pathogen
github: https://github.com/tpope/vim-pathogen

mkdir -p ~/.vim/autoload ~/.vim/bundle; \
curl -Sso ~/.vim/autoload/pathogen.vim \
    https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim

在.vimrc中添加

execute pathogen#infect()
syntax on
filetype plugin indent on

2、移动.vimrc文件到.vim目录:

mv .vimrc ~/.vim/vimrc

3、建立连接

ln -s ~/.vim/vimrc ~/.vimrc

4、初始化git仓库,提交

cd ~/.vim
git init
git add .
git commit -m "Initial commit"

5、安装插件

cd ~/.vim
mkdir ~/.vim/bundle
git submodule add http://github.com/tpope/vim-fugitive.git bundle/fugitive
git add .
git commit -m "Install Fugitive.vim bundle as a submodule."
git push -u origin master

6、在新机器上安装

cd ~
git clone https://github.com/yseasony/xvim.git ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrc
cd ~/.vim
git submodule init
git submodule update

7、更新插件

cd ~/.vim/bundle/fugitive
git pull origin master

更新所有插件

git submodule foreach git pull origin master

return top