2016年4月29日

Introduction to Haskell

摘要: "I know why you're here. ...why you hardly sleep, why night after night, you sit by your computer." Features of Haskell Purely functional Statical typ 阅读全文

posted @ 2016-04-29 13:48 fqzhang 阅读(177) 评论(0) 推荐(0) 编辑

2016年3月16日

urllib3 ProxyManager

摘要: ProxyManager is an HTTP proxy-aware subclass of PoolManager. It produces a singleHTTPConnectionPool instance for all HTTP connections and individual p 阅读全文

posted @ 2016-03-16 17:26 fqzhang 阅读(1410) 评论(0) 推荐(0) 编辑

urllib3 PoolManager

摘要: A pool manager is an abstraction for a collection of ConnectionPools.If you need to make requests to multiple hosts, then you can use a PoolManager, w 阅读全文

posted @ 2016-03-16 14:16 fqzhang 阅读(1842) 评论(0) 推荐(0) 编辑

urllib3 ConnectionPools

摘要: A connection pool is a container for a collection of connections to a specific host.If you need to make requests to the same host repeatedly, then you 阅读全文

posted @ 2016-03-16 13:16 fqzhang 阅读(839) 评论(0) 推荐(0) 编辑

A taste of urllib3

摘要: My favourite way to express my thoughts or ideas is writing code. 阅读全文

posted @ 2016-03-16 11:04 fqzhang 阅读(168) 评论(0) 推荐(0) 编辑

2014年9月24日

Linux中profile、bashrc、bash_profile之间的区别和联系

摘要: /etc/profile:此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行.并从/etc/profile.d目录的配置文件中搜集shell的设置. 英文描述为: # /etc/profile # System wide environment and startup programs, for login setup # Functions and aliases ... 阅读全文

posted @ 2014-09-24 19:46 fqzhang 阅读(178) 评论(0) 推荐(0) 编辑

2014年6月20日

5个SQL核心

摘要: -FROM子句: 处理联结语句的顺序 -GROUP BY子句 -HAVING子句 2.INSERT语句 -单表插入 4.DELETE语句 5.MERGE语句 [LOG ERRORS <long_errors_clause><reject limit<integer | unlimited>]; 阅读全文

posted @ 2014-06-20 23:14 fqzhang 阅读(531) 评论(0) 推荐(0) 编辑

2014年6月7日

ASCII Table

摘要: ASCII Table ASCII值 控制字符 ASCII值 控制字符 ASCII值 控制字符 ASCII值 控制字符 0 NUT 32 (space) 64 @ 96 、 1 SOH 33 ! 65 A 97 a 2 STX 34 ” 66 B 98 b 3 ETX 35 # 67 C 9... 阅读全文

posted @ 2014-06-07 17:53 fqzhang 阅读(643) 评论(0) 推荐(0) 编辑

2014年5月20日

ASCII Table

摘要: 二进制十进制十六进制缩写Unicode表示法脫出字元表示法名称/意义00000000000NUL␀^@空字符(Null)00000001101SOH␁^A标题开始00000010202STX␂^B本文开始00000011303ETX␃^C本文结束00000100404EOT␄^D傳輸结束00000101505ENQ␅^E请求00000110606ACK␆^F確認回應00000111707BEL␇... 阅读全文

posted @ 2014-05-20 19:27 fqzhang 阅读(223) 评论(0) 推荐(0) 编辑

2014年5月13日

数据库 行转列 列转行详解

摘要: 目录结构如下: [一]、行转列 1.1、初始测试数据 表结构:TEST_TB_GRADE 初始数据如下图: 1.2、 如果需要实现如下的查询效果图: 这就是最常见的行转列,主要原理是利用decode函数、聚集函数(sum),结合group by分组实现的,具体的sql如下: 1.3、延伸 如果要实现 阅读全文

posted @ 2014-05-13 20:48 fqzhang 阅读(3473) 评论(0) 推荐(0) 编辑

导航