influxDB 安装 下载 https://portal.influxdata.com/downloads/ 这里需要注意因为这个网站引用了google的api所以国内点页面的按钮是没反应的,怎么办呢? 按照下图所示,按F12打开浏览器的控制台,然后点击Elements,按下Ctrl/Comman ...
分类:
数据库 时间:
2020-02-22 15:29:38
阅读次数:
765
摘自:http://libusb.sourceforge.net/api-1.0/group__libusb__dev.html#gaf2718609d50c8ded2704e4051b3d2925 uint8_t libusb_get_bus_number ( libusb_device * de ...
分类:
其他好文 时间:
2020-02-21 20:10:59
阅读次数:
351
1 """ 2 Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which giv ...
分类:
其他好文 时间:
2020-02-20 13:06:07
阅读次数:
65
## DOM * 概念:Document Object Model 文档对象模型 * 将标记语言文档的各个部分,封装为对象,可以使用这些对象,对标记语言文档进行CRUD的动态操作 * W3C DOM 标准被分为3个不同的部分: 核心 DOM:针对任何结构化文档的标准模型 * Document:文档对 ...
分类:
编程语言 时间:
2020-02-19 00:33:22
阅读次数:
98
typedef struct HeapStruct *MaxHeap; struct HeapStruct{ int *Elements;/* 存储堆元素的数组 */ int Size;/* 堆的当前元素个数 */ int Capacity;/* 堆的最大容量 */ }; MaxHeap Creat ...
分类:
其他好文 时间:
2020-02-18 17:56:58
阅读次数:
83
要JS获取某段JS,必须考虑就是获取HTML这个对象,实际很简单极端代码就实现。 页面中存在动态增加的数据,不能直接用HTML获取输入等标签的动态增加值。垃圾桶是用Ajax在当前页面上请求当前页面并返回整个页面的HTML。。。因为它是整个页面,它还包括文档声明垃圾桶唯一需要注意的是:InnerTex ...
分类:
Web程序 时间:
2020-02-18 16:27:48
阅读次数:
75
Array.forEach() arr.forEach(callback(currentValue [, index [, array]])[, thisArg]); forEach() 方法对数组的每个元素执行一次提供的函数。 注意: 除了抛出异常以外,没有办法中止或跳出 forEach() 循环 ...
分类:
编程语言 时间:
2020-02-17 20:03:13
阅读次数:
85
@Injectable({ providedIn: "root" | "any" | "platform" }) export class MyService {} More ProvidedIn: root Every service defined with 'root' will be pro ...
分类:
其他好文 时间:
2020-02-17 17:58:30
阅读次数:
70
1.题目描述 英文版: Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which ...
分类:
其他好文 时间:
2020-02-17 00:47:28
阅读次数:
51
Given a non-empty array of integers, return the k most frequent elements. Example 1: Input: nums = [1,1,1,2,2,3], k = 2 Output: [1,2] Example 2: Input ...
分类:
其他好文 时间:
2020-02-16 01:07:50
阅读次数:
63