上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: MAC 中自定义环境变量 打开:nano .bash_profile 查看:cat text 保存退出:Ctrl+C,Y #在.bash_profile 中添加tree alias tree="find . -print |sed -e 's;[^/]*/;|___;g;s;___|;|;g'" # 阅读全文
posted @ 2016-02-17 10:43 南湖鹄 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 正则表达式是由普通字符(例如字符 a 到 z)以及特殊字符(称为"元字符")组成的文字模式。 参考:http://www.runoob.com/regexp/regexp-syntax.html 普通字符 包括没有显式指定为元字符的所有可打印和不可打印字符。这包括所有大写和小写字母、所有数字、所有标 阅读全文
posted @ 2016-02-17 10:36 南湖鹄 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 增删改查 --增加 create INSERT INTO table_name (列1, 列2,...) VALUES (值1, 值2,....) --删除 delete DELETE FROM 表名称 WHERE 列名称 = 值 --删除所有行 DELETE FROM table_name dro 阅读全文
posted @ 2016-02-17 10:27 南湖鹄 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 变量 常量 PI 阅读全文
posted @ 2016-02-17 10:00 南湖鹄 阅读(357) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: UTF-8 -*- #Version: V1.0 #Author:lynclynn #CreateDate:20160214 #UpdateDate: #Description:operate the txt,select the context 阅读全文
posted @ 2016-02-17 09:58 南湖鹄 阅读(141) 评论(0) 推荐(0) 编辑
摘要: #整数 1,100,-8080,0 0xff00,0xa54b #浮点数 1.23,3.14 1.23e9,12,3e8,1.23e-5 #字符串 "xyz",'abc' #转义字符\: 'I\'m\"ok"' #转义字符 \n 换行 \t制表符 \\ :\ r’’默认不转义 '''...''' # 阅读全文
posted @ 2016-02-17 09:55 南湖鹄 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 语法注释 输入输出 #语法缩进,4个空格 #注释 #冒号:结尾,缩进的预计视为代码块 #大小写敏感 #输出 print 300 print 'hello','world' #输入 a=raw_input() name=raw_input() print 'hello',name name=raw_i 阅读全文
posted @ 2016-02-17 09:38 南湖鹄 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 专业数据: 软件测试: 硬件测试: 公共数据: 普查数据:国家数据 http://data.stats.gov.cn/ 企业信息:http://gsxt.saic.gov.cn/ 上海市政府数据 http://www.datashanghai.gov.cn/home!toHomePage.actio 阅读全文
posted @ 2016-02-16 17:53 南湖鹄 阅读(152) 评论(0) 推荐(0) 编辑
摘要: \userpackage{listings} \usepackage{color} \@?( J_\alpha(x)=\sum\limits_{m=0}^\infty \frac{(-1)^m}{m!\Gamma(m+\alpha+1)}{\left({\frac{x}{2}}\right)}^{2 阅读全文
posted @ 2016-02-16 16:44 南湖鹄 阅读(3337) 评论(0) 推荐(0) 编辑
摘要: Product table:产品型号,销售国别 MemberList:对应的窗口 Weekly Report: con-call 需求-设计-开发-测试-验收 文档,代码 例会,周报 需求文档:原型 概要设计:界面 详细设计:接口表,数据字典,定时任务 工具 SVN 测试用例 UT,SIT,FIT, 阅读全文
posted @ 2016-02-14 12:54 南湖鹄 阅读(117) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页