仅列出标题 列出摘要
1 2 3 4 5 ··· 10 下一页
2016年12月13日

docker pull certification error

摘要: echo -n | openssl s_client -showcerts -connect itapregistry.a1.vary.redhat.com:443 2>/dev/null |sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > 阅读全文
posted @ 2016-12-13 13:28 baoyiluo 阅读(262) 评论(0) 推荐(0) 编辑
2015年12月9日

mySQL中删除unique key的语法

摘要: CREATE TABLE `good_booked` ( `auto_id` int(10) NOT NULL auto_increment, `good_id` int(11) default NULL, `chemist_id` int(11) default NULL, PRIMARY KEY... 阅读全文
posted @ 2015-12-09 21:52 baoyiluo 阅读(2332) 评论(0) 推荐(0) 编辑
2015年12月8日

linux ssh config

摘要: Host code.engineering.redhat.com HostName code.engineering.redhat.com Port 29418 User jialliHost hwcert.englab.nay.redhat.com Hostname hwcert.engl... 阅读全文
posted @ 2015-12-08 14:03 baoyiluo 阅读(179) 评论(0) 推荐(0) 编辑
2015年11月13日

Linux终端杀手、程序员利器-Tmux

摘要: Send article asPDFSA、Coder、经常远程、还在开一堆终端?试试 Tmux 吧,一个窗口就搞定。目录0.0.0.1Tmux ? Tmux 是一个终端复用器,类似0.0.0.2安装 Tmux0.0.0.3配置 Tmux 安装完 Tmux 默认没有配置文件,需手动生成。/etc/tm... 阅读全文
posted @ 2015-11-13 15:51 baoyiluo 阅读(969) 评论(0) 推荐(0) 编辑
2015年4月27日

vpn

摘要: 免费VPN推荐:二师兄VPN (没有流量限制的免费美国VPN)2015年01月30日⁄vpn代理,免费VPN,台湾VPN,在线代理,收费VPN,美国VPN,韩国VPN,香港VPN⁄ 共 1466字 ⁄ 字号小中大⁄评论关闭⁄ 阅读 3,282 views 次今天再来推荐一个VPN.名字叫二师兄,呵呵... 阅读全文
posted @ 2015-04-27 18:24 baoyiluo 阅读(143) 评论(0) 推荐(0) 编辑
2014年12月10日

vim 配置

摘要: backspace有几种工作方式,默认是vi兼容的。对新手来说很不习惯。对老vi 不那么熟悉的人也都挺困扰的。可以用set backspace=indent,eol,start来解决。 indent: 如果用了:set indent,:set ai 等自动缩进,想用退格键将字段缩进的删掉,必须设置这 阅读全文
posted @ 2014-12-10 17:26 baoyiluo 阅读(240) 评论(3) 推荐(0) 编辑
2014年8月7日

chrome浏览器root用户运行

摘要: vim /usr/bin/google-chrome 58 exec -a "$0" "$HERE/chrome" "$PROFILE_DIRECTORY_FLAG" \ 59 "$@" --user-data-dir $HOME 阅读全文
posted @ 2014-08-07 23:06 baoyiluo 阅读(476) 评论(0) 推荐(0) 编辑
2014年7月31日

git 证书错误

摘要: git clone https://github.com/openstack-dev/devstack.gitCloning into 'devstack'...error: server certificate verification failed. CAfile: /etc/ssl/certs... 阅读全文
posted @ 2014-07-31 11:34 baoyiluo 阅读(2656) 评论(0) 推荐(0) 编辑
2014年7月30日

PyQt4学习资料汇总

摘要: 一个月前研究了下PyQt4,感觉比较不错。相比wxpython,界面美观了很多,并且将界面设计与代码逻辑很好的分离了开来。关于PyQt4的资料也不少,这里我将我找到的资料汇总一下,以防自己以后忘得一干二净。1.PyQt4资料链接http://www.riverbankcomputing.comhtt... 阅读全文
posted @ 2014-07-30 16:14 baoyiluo 阅读(247) 评论(0) 推荐(0) 编辑

Django模板系统——过滤器

摘要: 过滤器,变量的显示形式的改变一、形式:小写{{ name | lower }}二、串联:先转义文本到HTML,再转换每行到 标签{{ my_text|escape|linebreaks }}三、过滤器的参数显示前30个字{{ bio | truncatewords:"30" }}格式化{{ pub... 阅读全文
posted @ 2014-07-30 13:43 baoyiluo 阅读(247) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 10 下一页