Pandas杂项 2020-03-29 358 words 1 min read 常用代码片段 %matplotlib inline import matplotlib as mpl import matplotlib.pyplot as plt import numpy as np import pandas as pd import seaborn as sns sns.set() plt.rcParams['font.sans-serif'] Read more..
Jq学习 2020-03-22 139 words 1 min read json 对象过虑 # 如果不存在, 则为 null .foo.bar 等同于 .foo|.bar # 如果 key 包含特殊字符 Read more..
Matplotlib学习 2020-03-16 3479 words 7 mins read 概念 figure 在一个图形输出窗口中, 底层就是一个 Figure , 通常称为画布. Axes Read more..
<SwiftUI for Absolute Beginners>读书 2020-01-07 2120 words 5 mins read SwiftUI 原则 四大原则 声明式( declarative ) 自动化 ( automatic ) 组合 ( composition ) 一致 ( consistent ) #SwiftUI Read more..
<Swift编程权威指南>读书 2020-01-06 2412 words 5 mins read 基础注意 常量和变量 // 变量声明 var //常量声明 let 比较 要特别注意浮 Read more..
<Curl 必知必会>读书 2019-12-27 2976 words 6 mins read curl 项目 Daniel Stenberg, 1996 发现 HttpGet (巴西人 Rafael Sagula). 接管并维护. 1997年 4 月 8 号 Read more..
OpenResty学习 2019-11-14 55 words 1 min read 组件 LuaJIT http://luajit.org/luajit.html 从 openResty 1.5.8.1 版本起, 默认开启. 之前的版本需要在编译时, 显式 Read more..
Nginx与OpenResty资料整理 2019-11-13 2841 words 6 mins read 编译所需依赖库 GCC : 编译器 PCRE : 用于正则表达式处理 zlib : 用于 gzip 处理 Read more..
AsyncRabbitTemplate使用 2019-11-01 383 words 1 min read 逻辑 Producer 发送数据, 并获取异步 Future 对象, 并设置回调对象 AsyncRabbitTemplate.RabbitConverterFuture<Object> future = asyncRabbitTemplate.convertSendAndReceive("hello", "world " Read more..
IO模型资料整理 2019-10-31 2582 words 6 mins read 图片和资料来自自己购买的电子书 <Netty, Redis, Zookeeper 高并发实战> 四种 IO Read more..
Dubbo学习 2019-10-17 263 words 1 min read 配置 provider 典型配置 pom.xml <properties> <dubbo.version>2.7.3</dubbo.version> <spring-boot.version>2.1.9.RELEASE</spring-boot.version> <java.version>1.8</java.version> </properties> <dependencyManagement> <dependencies> <!-- Spring Boot --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <!-- Apache Dubbo --> Read more..
Disruptor学习 2019-10-12 4073 words 9 mins read 简介-翻译 原文 https://github.com/LMAX-Exchange/disruptor/wiki/Introduction 理解 Disruptor 是什么的最好方式是与相似的众所周知的东 Read more..