课上内容(Lesson) New York = The Big Apple 词汇(Key Word ) tourist attraction 观光胜地 scenic spots 旅游景点 high seaso 旺季 off season 淡季 shoulder season 平季 pay top f ...
分类:
其他好文 时间:
2020-01-16 10:47:36
阅读次数:
93
How can I manually create a authentication cookie instead of the default method? Here you go. ASP.NET takes care of this for you when you use the high ...
分类:
其他好文 时间:
2020-01-13 19:40:44
阅读次数:
85
1.简介 RocketMQ is a distributed messaging and streaming platform with low latency, high performance and reliability, trillion level capacity and flexib ...
分类:
其他好文 时间:
2020-01-12 21:41:26
阅读次数:
105
查找一个元素的下标二分查找使用于已经排好序的数组,定义两个变量, 一个low和一个high, 则mid = (low+high)/2;如果 value == arr[mid],返回mid;如果 value > arr[mid] 在高位查找 low = mid +1;如果 value < arr[mi ...
分类:
其他好文 时间:
2020-01-10 22:30:38
阅读次数:
89
lvs基础 lvs基础原理及实现 Linux Cluster: Cluster:计算机集合,为解决某个特定问题组合起来形成的单个系统 LB:Load Balancing,负载均衡 HA: High Availiablity,高可用 HP:High Performance,高性能 lvs集群的类型: ...
分类:
其他好文 时间:
2020-01-10 18:47:33
阅读次数:
179
CAP理论概述 CAP理论概述 1998 年来自柏克莱加州大学的计算机科学家 埃里克.布鲁尔(Eric Brewer) 提出分布式系统的三个基本指标:Consistency(一致性)、Availability(可用性) 、Partition tolerance(分区容错),简称:CAP。 1998 ...
分类:
其他好文 时间:
2020-01-10 17:12:53
阅读次数:
125
Code: 1 #include <vector> 2 using namespace std; 3 4 struct NPC 5 { 6 char * name; 7 int age; 8 float high; 9 }; 10 int main(){ 11 12 //练习使用vector数组 1 ...
分类:
编程语言 时间:
2020-01-09 18:57:32
阅读次数:
66
Data Guard 的三种保护模式 官方文档链接 http://docs.oracle.com/cd/E11882_01/server.112/e41134/protection.htm#SBYDB02000 最大可用模式(Maximum Availability) 这种保护模式在不影响主库可用性 ...
分类:
其他好文 时间:
2020-01-09 01:15:10
阅读次数:
77
void setup() { pinMode(D6, OUTPUT); digitalWrite(D6,HIGH); Serial.begin(9600); } void loop() { String state = Serial.readString(); if (state == "off") ...
分类:
其他好文 时间:
2020-01-08 14:33:13
阅读次数:
87
事情的发生: 某日工作中有个需求是将不同的数值存到char的前4位和后4位中。 恰好同事中有同样取得32位int的前8位当成一个数值的代码: //取得32位中的高八位组成的值 #define U32_HIGH_8(val) ((val >> 24) & 0X000000FF) 好奇心就来了,在右移2 ...
分类:
编程语言 时间:
2020-01-06 22:32:05
阅读次数:
374