从cnBeta.com上看到如下信息:
腾讯公司今日宣布,该公司的英文字母“QQ”商标依据《商标法》已经被国家工商局认定为“驰名商标”.4月25日,国家工商行政管理总局公布了最新一批认定的“驰名商标”,“QQ”赫然在列。
对于QQ来讲确实可喜可贺。不过,“驰名商标”,“著名商标”似乎满天飞。你上街去买东西,几乎大部分商品都或多或少的得到这样那样的认证,个个都是很“驰名”,很“著名”。前阵子出问题的那些奶粉似乎很多也是很“驰名”很“著名”的,而且有很多还是XXX专用的。结果真的搞的很“著名”。
==END==
... Read more!
Written on 2009/04/28 by MAN2
惊闻腾讯“QQ”获中国驰名商标认定
Labels:
Others
0 Comments
Written on by MAN2
git push到github时,Permission denied (publickey)的问题
Labels:
Git,
github,
SSH
0 Comments
在windows下面使用cygwin,push到github的时候完全没有问题,转到我的mac上的时候,提示下面的错误:
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
我的.ssh/config的设置如下
Host github.com
User git
Port 22
Hostname github.com
IdentityFile ~/.ssh/github_id_dsa
一开始以为是私钥copy的时候文件读写权限的问题,整了半天没有解决,后来看到github上有专门的Q&A上面有解答。修改成下面的设置就顺利通过。
Host github.com
User git
Port 22
Hostname github.com
IdentityFile ~/.ssh/github_id_dsa
TCPKeepAlive yes
IdentitiesOnly yes
... Read more!
Written on 2009/04/27 by MAN2
在 GitHub 上用不同的 SSH 公钥部署多个应用(from unixchina.com)
Labels:
Git,
github,
SSH
0 Comments
GitHub是一个免费的基于 git 的开源软件仓库托管服务,包括Ruby on Rails,Rspec,Prototype在内的许多开源软件都在 GitHub 上架设了软件仓库。
如果你有两个或两个以上的 GitHub 仓库,并且想用不同的公钥/私钥来管理这些仓库的话,会遇到这样一个问题。当你 clone第一个仓库的时候,git 会使用第一对公钥/私钥,这个时候仍然一切正常。可当你需要用另一对公钥/私钥来 clone 第二个仓库的时候,git默认仍然会使用第一对公钥/私钥,然后 GitHub 就会返回一个授权错误。
要解决这个问题,首先需要在 ~/.ssh/ 目录下新建一个 config 文件,为不同的项目分别指定公钥/私钥
~/.ssh/config
Host project-1
HostName github.com
User git
IdentityFile /home/xxx/.ssh/id_rsa_project_1
Host project-2
HostName github.com
User git
IdentityFile /home/xxx/.ssh/id_rsa_project_2
然后用 ssh-keygen 创建对应的公钥/私钥。
$ ls -l ~/.ssh
total 24
-rw-r--r-- 1 wyt wyt 244 2008-06-21 13:18 config
-rw------- 1 wyt wyt 1675 2008-06-21 13:04 id_rsa_project_1
-rw-r--r-- 1 wyt wyt 392 2008-06-21 13:04 id_rsa_project_1.pub
-rw------- 1 wyt wyt 1675 2008-05-20 11:24 id_rsa_project_2
-rw-r--r-- 1 wyt wyt 392 2008-05-20 11:24 id_rsa_project_2.pub
-rw-r--r-- 1 wyt wyt 802 2008-05-24 22:44 known_hosts
将公钥上传到 GitHub 上之后,就可以用下面的指令 clone 相应的软件仓库了
$ git clone git@project-1:username/project-1.git
$ git clone git@project-2:username/project-2.git
... Read more!
Written on 2009/04/25 by Big Br0ther
我的git颜色设置
Labels:
Git
0 Comments
git的各个命令结果都可以有丰富的颜色表示,我的gitconfig文件总关于颜色的设置。
[color] branch = auto diff = auto status = auto [color "branch"] current = yellow reverse local = yellow remote = green [color "diff"] meta = yellow bold frag = magenta bold old = red bold new = green bold [color "status"] added = yellow changed = green untracked = cyan
... Read more!
Written on by Big Br0ther
MacPorts HowTo
Labels:
Mac,
Port
0 Comments
MacPorts HowTo
1,MacPorts保持最新状态(port selfupdate / port sync)
$ sudo port selfupdate此命令可以检查MacPorts程序自身是否有更新,如果有的话,会自动下载,编译然后安装。并且会更新ports的数据库。
$ sudo port sync
此命令仅仅更新ports的数据库(Portfile/patch)
2,搜索想安装的ports包
比如想安装git-core,那么直接输入如下命令
$ port search git-core会列出所有可能的安装包的简要情况,比如版本号等等。
3,检查包的依赖关系
$ port deps git-core会列出依赖的包列表。
4,检查安装选项
有一些包安装的时候会有一些选项,比如apache,postgresql等等,都会有一些安装选项。使用下面的命令来查询。
$ port variants postgresql
5,获取包的具体情况,比如通过search命令查询到具体的包后,可以通过下面的命令来看看此包的具体情况。
$ port info postgresql
6,安装包
直接使用port install <ports name>来进行安装,如果有安装选项的话,可以使用“+variant1 +variant2 ...”来指定。安装包必须具有root权限,安装的时候要使用sudo,这里借用一个例子。
$ sudo port install postgresql +ssl +server
7,查看已经安装的ports包
$ port installed会列出已安装的ports,以及其版本,安装的variants。并且会表示当前的包的active状态。
8,卸载包
$ sudo port uninstall <port name>
9,检查有更新的ports
$ port outdated
10,ports包更新
$ port upgrade <port name>以上命令指定所要更新的包,或者使用下面的命令。
$ port upgrade installed将所有outdated的ports包进行更新。
11,常见问题
有时候要安装一个包,但是会提示你此包已安装但当前是非active之类的提示消息的时候,可以使用一下步骤来解决此问题。
首先,将旧包的active状态解除,如:
$ port deactivate subversion @1.4.4_0然后将新的ports激活
$ port activate subversion @1.4.5_0
在确信新的已激活的包处于正常工作状态了,我们可以使用port uninstall命令删除旧包。
... Read more!
Written on by MAN2
听着音乐,看着画面,感觉非常舒服。
Labels:
Video
0 Comments
Fun with Extreme Slow Shutter in Currumbin Valley from Geoff A Charters on Vimeo.
听着音乐,看着画面,感觉非常舒服。
... Read more!
Written on by Big Br0ther
很炫的光影效果。记得打开音响。
Labels:
Video
0 Comments
Have we introduced ourselves...? from cybersun on Vimeo.
很炫的光影效果。记得打开音响。
... Read more!
Written on by Big Br0ther
精彩慢动作,要耐心看。
Labels:
Video
0 Comments
I-Movix SprintCam v3 NAB 2009 showreel from David Coiffier on Vimeo.
精彩慢动作,要耐心看。
... Read more!