- 浏览: 31920 次
- 性别:
- 来自: 上海
最新评论
文章列表
1) 远程仓库相关命令
检出仓库:$ git clone git://github.com/jquery/jquery.git
查看远程仓库:$ git remote -v
添加远程仓库:$ git remote add [name] [url]
删除远程仓库:$ git remote rm [name]
修改远程仓库:$ git remote set-url --push[name][newUrl]
拉取远程仓库:$ git pull [remoteName] [localBranchName]
推送远程仓库:$ git push [remoteName] [localBranchName]
...
makecert -sr LocalMachine -n "CN=MyCert" -$ commercial -ss MyCertStore -in MyCert -sv MyCert.pvk -a sha1 MyCert.cer
cert2spc [Cert1.cer Cert2.cer Cert3.cer ...] [Output.spc]
cert2spc MyCert.cer MyCert.spc
pvk2pfx –pvk [Private Key File] –pi [PVK Password] –spc [SPC file] –pfx [PFX File] – ...
==先转换类型再比较,===先判断类型,如果不是同一类型直接为false。
===表示恒等于,比较的两边要绝对的相同
alert(0 == ""); // true
alert(0 == false); // true
alert("" == false); // true
alert(0 === ""); // false
alert(0 === false); // false
alert("" === false); // false
引用
http://rintarou.dyndns.org/wp-content/uploads/2010/04/ditaa_plugin_life_cycle_80b848f0b61ce645dad1473308faa203.png
主要参考:http://www.dotblogs.com.tw/regionbbs/archive/2010/11/15/developing.active.x.control.with.cs.part2.aspx
1. Type about:config into your location bar and hit enter. If you've never edited used about:config before, you'll see a warning.
2. Click I'll be careful, I promise! This will bring you to the about:config window.
3. In the filter field type gecko. Double click the first entry gecko.handlerService.a ...
<script language=”javascript” type=”text/javascript”>
window.location.href=”login.jsp?backurl=”+window.location.href;
</script>
<script language=”javascript”>
alert(”back”);
window.history.back(-1);
</script>
<script language=”javascript”>
window.naviga ...
ServerSocket s = new ServerSocket(0);
System.out.println("listening on port: " + s.getLocalPort());
1.需要修改terminal->emulation->emacs 是的alt键有效
2.mapped keys勾选上backspace sends delete
1.对于分割字符串,这个写法更好
string.split("分隔符");
1.Vector和HashTable是线程同步的(Synchronized)。性能上,ArrayList和HashMap分别比Vector和HashTable要好。
2.List、Set、Map是这个集合中最主要的三个接口。
List 和 Set继承自Collection接口。
Set不允许元素重复。HashSet和TreeSet是其两个主要的实现类。
List有序且允许元素重复。ArrayList、LinkedList和Vector是三个主要的实现类。
Map和COllection接口不同。Map是key对value的映射集合,其中key列就是一个集合。k ...
1.加密
MessageDigest md = MessageDigest.getInstance("MD5");
byte[] byteKeyMd5 = md.digest(encryptKey.getBytes());
byte[] byteKey = new byte[24];
System.arraycopy(byteKeyMd5, 0, byteKey, 0, 16);
System.arraycopy(byteKeyMd5, 0, byteKey, 16, 8);
Key deskey = null;
DESedeKeySpec spe ...
1.显示所有的表信息
show tables;
2.显示某表中的所有字段信息
show full columns from 表名;
搞了半天,发现
Emacs-w3m of this version does not support Emacs 23; try the development version
emacs23貌似不支持这个从ubuntu源里面下载的w3m饿。
对Emacs23.1版本,需要使用cvs版本,下载如下:
cvs -d :pserver:anonymous@cvs.namazu.org:/storage/cvsroot co emacs-w3m
下载完成后,将源码拷贝到/usr/local/src目录下,
然后进入emacs-w3m目录,进行如下操作:
autoconf
./configure
m ...
1)在.emacs中添加如下内容:
;;twitter
(load-file "D:/work/emacs-23.3/plugin/xwl-twittering-mode/twittering-mode.el")
(require 'twittering-mode)
(setq twittering-use-master-password t)
(setq twittering-allow-insecure-server-cert t)
(setq twittering-oauth-use-ssl nil)
(setq twittering-use-ssl ...