码迷,mamicode.com
首页 >  
搜索关键字:wo    ( 480个结果
Python入门
节选自Python核心编程(第二版) 注释 和大部分脚本及Unix-shell语言一样,Python也使用#符号标示注释,从#开始,直到一行结束的内容都是注释。 >>> # one comment ... print 'Hello World!' # another comment Hello Wo ...
分类:编程语言   时间:2017-09-06 20:18:49    阅读次数:291
css学习笔记四
css权重: css3新增属性: 文字阴影 p{ text-shadow:5px 5px 5px #333; 水平位移、垂直位移、模糊半径、颜色 } 文字缩进 p{ text-indent:10px; 可以被继承 } 文字溢出处理 p{ word-wrap:break-word; 断单词,默认 wo ...
分类:Web程序   时间:2017-09-03 15:42:54    阅读次数:288
mysql事务(二)——控制语句使用
事务控制 一般来说,mysql默认开启了事务自动提交功能,每条sql执行都会提交事务。可以使用如下语句关闭事务自动提交功能。 1、 事务开始 begin或start transaction; 2、 事务提交 commit或commit work; 3、 回滚 rollback或rollback wo ...
分类:数据库   时间:2017-08-29 23:01:44    阅读次数:223
atitit.html编辑器的设计要点与框架选型 attilax总结
atitit.html编辑器的设计要点与框架选型 attilax总结 1. html编辑器的设计要求1 1.1. 障碍訪问 1 1.2. 强大Ajax上传 1 1.3. Word完美支持 2 1.4. 安全的UBB 2 1.5. 自己主动获取远程文件2 1.6. 文字水印/图片水印2 1.7. Wo ...
分类:Web程序   时间:2017-08-17 10:46:42    阅读次数:197
nginx   Binary热更新
1、更新Binary#cp/usr/loca/nginx/sbin/nginx/usr/loca/nginx/sbin/nginxbak//备份 #cp/usr/local/nginx-12.1/sbin/nginx//usr/loca/sbin/nginx//跟新新文件2、给原来的nginxmaster进程发送USR2信号#kill-USR2`cat/var/run/nginx.pid`2.1此时会生成两个nginx的master进程及其wo..
分类:其他好文   时间:2017-08-15 14:23:17    阅读次数:225
[LeetCode]Palindrome Pairs
题目:Palindrome Pairs Given a list of unique words, find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two wo ...
分类:其他好文   时间:2017-08-10 23:36:23    阅读次数:162
python for else
>>> for i in range(0,10): if i > 10: break; else: print "hello world"; 输出:hello world >>> for i in range(0,10): if i > 5: break; else: print "hello wo ...
分类:编程语言   时间:2017-08-05 17:48:37    阅读次数:147
Spring Cloud 入门教程(五): Ribbon实现客户端的负载均衡
接上节,假如我们的Hello world服务的访问量剧增,用一个服务已经无法承载, 我们可以把Hello World服务做成一个集群。 很简单,我们只需要复制Hello world服务,同时将原来的端口8762修改为8763。然后启动这两个Spring Boot应用, 就可以得到两个Hello Wo ...
分类:编程语言   时间:2017-07-31 20:09:00    阅读次数:2832
js序列化封装成一个对象,以键值对的方式
js序列化封装成一个对象,以键值对的方式 类似:Object {ni: "1", wo: "2", ta: "3", huge: "4", jindong: "5"…} jquery的serialize()方法,得到等值的方式 类似:"ni=1&wo=2&ta=3&huge=4&jindong=5& ...
分类:Web程序   时间:2017-07-26 01:40:37    阅读次数:508
oracle11g 安装错误汇总
oracle11g安装错误总结: 1,运行./runInstaller报错例如以下: You are atempting to install 64-bit Oracle on a 32-bit operating system,this is not support and will not wo ...
分类:数据库   时间:2017-07-19 23:32:12    阅读次数:205
480条   上一页 1 ... 16 17 18 19 20 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!