使用arange创建数组 随机数 随机整数 randint中参数dtype的使用 正态分布 以上是标准的正态分布:期望为0,方差为1 创建指定期望和方差值的正态分布 ndarray对象属性 zeros创建数组 ones创建数组 empty linspace 创建等差数列 logspace创建等比数列 ...
分类:
其他好文 时间:
2020-12-14 13:18:31
阅读次数:
2
###基础介绍 作用:用来设定某种扩展名文件的打开方式 组成:由类型与子类型两个字符串中间用/分隔而组成。不允许空格存在 注意:MIME类型对大小写不敏感,但是传统写法都是小写。 | 类型 | 描述 | 例子 | | | | | | text | 表明文件是普通文本,理论上是人类可读 | text/ ...
分类:
其他好文 时间:
2020-12-14 12:53:33
阅读次数:
2
###数据湖技术 数据湖(Data Lake) 开源的数据湖技术: delta、hudi、iceberg ###存储--数据组织的管理 逻辑上存储通常分为块存储 文件存储 对象存储 文件存储 阿里云 文件存储 CPFS(Cloud Paralleled File System) 腾讯 文件存储 CF ...
分类:
其他好文 时间:
2020-12-11 12:39:44
阅读次数:
22
写业务时,我们经常需要抽象一些使用频率较高的逻辑,但是除了高阶组件可以抽象逻辑,RenderProps也是一种比较好的方法。 RenderProps,顾名思义就是将组件的props渲染出来。实际上是让组件的props接收函数,由函数来渲染内容。将通用的逻辑抽象在该组件的内部,然后依据业务逻辑来调用函 ...
分类:
其他好文 时间:
2020-12-10 11:24:37
阅读次数:
6
###Hole-in-the-wall café goes viral A Shanghai coffee shop called Hinichijou has gone viral among netizens because of its quirky concept which involve ...
分类:
其他好文 时间:
2020-12-09 12:19:14
阅读次数:
4
这篇讲解Spock自带的mock功能如何和power mock组合使用,发挥更强大的作用 动态Mock静态方法 (Spock Where + Power Mock) 在上一篇的例子中使用power mock让静态方法返回一个指定的值,那能不能每次返回不同的值呢? 我们先看下什么场景需要这样做: /* ...
分类:
其他好文 时间:
2020-12-08 12:36:48
阅读次数:
7
#include<iostream> #include<cstring> using namespace std; int len; void getNext(char *s, int *nex) { nex[0] = -1; int i = 0, j = -1; while(i < len) { ...
分类:
其他好文 时间:
2020-12-01 12:21:17
阅读次数:
7
背景 在分析Linux内核驱动的时候,有时候会看到一些acpi字样的接口。 之前一直没搞明白ACPI是什么,现在知道了。 ACPI Advanced Configuration and Power Management Interface : 用于配置与电源管理的接口,是让OS使用的。用在x86架构 ...
分类:
其他好文 时间:
2020-11-25 12:39:07
阅读次数:
6
Transfer data from Hospital to Regional System Microsoft provides you the following solutions for emergency response: The Hospital Emergency Response ...
分类:
移动开发 时间:
2020-11-23 12:41:15
阅读次数:
24
NGINX and the "Power of Two Choices" Load-Balancing Algorithm - NGINX https://www.nginx.com/blog/nginx-power-of-two-choices-load-balancing-algorithm/ ...
分类:
其他好文 时间:
2020-11-23 11:48:43
阅读次数:
4