evince test.pdf
xdg-open test.pdf
搭配一: 思源宋体 Heavy
搭 微软雅黑 light
。
适合用在一些党政风的 PPT 上面。
也适合用在一些凸显人文精神的 PPT 上面。
搭配二: 喜鹊在山林体
搭 思源黑体 CN Light
。
适合用在一些时尚类的 PPT 上面,或者综艺类的 PPT 上面。
搭配三: 字魂龙吟手书
搭 微软雅黑
。
适合用在一些比较大气的封面上面。
搭配四: 思源黑体 CN Bold
搭 思源黑体 CN Light
。
很多科技类公司的 PPT 都是用这样的搭配。
字体如果没有嵌入 PPT 的话,PPT 发送给别人了,字体就丢了。
解决方案一:PPT 和字体一起打包。
解决方案二:把特殊字体复制粘贴为图片。
解决方案三:(推荐)直接把字体嵌入 PPT 中。
下面推荐 3 个免费图库:
Microsoft PPT: Smart Art 功能,文字一键排版。
Microsoft PPT: Smart Art 功能,图片一键排版。
图表中每列的图片替换。
百度网盘 链接:https://pan.baidu.com/s/1xMmrbG_bqBHwxuE-2ZvS1A 提取码:89i9
iperf 是常用的带宽测试工具,ubuntu 可以直接用 apt 安装。
sudo apt-get install iperf
现在电脑 1 上以服务端模式启动 iperf。
# iperf -s
然后在另一台电脑上以客户端模式启动 iperf。
# iperf -c 192.168.1.100 -t 60 -i 1
192.168.1.100 这里是电脑 1 的 IP 地址。
-t 60 测试60s
-i 1 1秒打印一次结果
console.log(Math.PI); // 3.141592653589793
console.log(Math.abs(-10.123)); // 10.123
console.log(Math.ceil(10.01)); // 11
console.log(Math.floor(10.01)); // 10
console.log(Math.round(10.01)); // 10
console.log(Math.round(10.9)); // 11
console.log(Math.max(1, 2, 3, 4)); // 4
console.log(Math.min(1, 2, 3, 4)); // 1
console.log(Math.random()); // 0.0626044010373974
console.log(Math.pow(2, 3)); // 8
console.log(Math.sqrt(9)); // 3
console.log(Number.EPSILON); // 2.220446049250313e-16
console.log(Number.MAX_VALUE); // 1.7976931348623157e+308
console.log(Number.MIN_VALUE); // 5e-324
console.log(Number.MAX_SAFE_INTEGER); // 9007199254740991
console.log(Number.MIN_SAFE_INTEGER); // -9007199254740991
console.log(Number.POSITIVE_INFINITY); // Infinity
console.log(Number.NEGATIVE_INFINITY); // -Infinity
console.log(Number.NaN); // NaN
-MAX_VALUE
。-MIN_VALUE
。(2^53 - 1)
。(-(2^53 - 1))
。https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Math
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Number
const mySet = new Set();
// add
mySet.add(1);
mySet.add(5);
mySet.add(5);
mySet.add('some text');
const o = {a: 1, b: 2};
mySet.add(o);
console.log(mySet); // Set { 1, 5, 'some text', { a: 1, b: 2 } }
// has
console.log(mySet.has(1)); // true
console.log(mySet.has(3)); // false
console.log(mySet.has(5)); // true
console.log(mySet.has(Math.sqrt(25))); // true
console.log(mySet.has('Some Text'.toLowerCase())); // true
console.log(mySet.has(o)); // true
console.log(mySet.has({a: 1, b: 2})); // false, 这是一个新的对象
// size
console.log(mySet.size); // 4
// delete
mySet.delete(5);
console.log(mySet.has(5)); // false
console.log(mySet.size); // 3
console.log(mySet); // Set { 1, 'some text', { a: 1, b: 2 } }
// clear
mySet.clear();
console.log(mySet); // Set {}
const mySet = new Set();
mySet.add(1);
mySet.add(5);
mySet.add('some text');
// 1 5 some text
for (let item of mySet) {
console.log(item);
}
// 1 5 some text
for (let item of mySet.keys()) {
console.log(item);
}
// 1 5 some text
for (let item of mySet.values()) {
console.log(item);
}
// 1 1
// 5 5
// some text some text
for (let [key, value] of mySet.entries()) {
console.log(key, value);
}
// [ 1, 1 ]
// [ 5, 5 ]
// [ 'some text', 'some text' ]
for (let item of mySet.entries()) {
console.log(item);
}
// 利用 Set 给数组去重
const arr = [1, 1, 1, 2, 2, 3, 3, 3, 3];
const mySet = new Set(arr);
const newArray = Array.from(mySet);
console.log(newArray); // [ 1, 2, 3 ]
const newArray2 = [...new Set(arr)];
console.log(newArray2); // [ 1, 2, 3 ]
function isSuperSet(set, subset) {
for (let elem of subset) {
if (!set.has(elem)) {
return false;
}
}
return true;
}
function union(setA, setB) {
const _union = new Set(setA);
for (let elem of setB) {
_union.add(elem);
}
return _union;
}
function intersection(setA, setB) {
const _intersection = new Set();
for (let elem of setB) {
if (setA.has(elem)) {
_intersection.add(elem);
}
}
return _intersection;
}
function difference(setA, setB) {
const _difference = new Set(setA);
for (let elem of setB) {
_difference.delete(elem);
}
return _difference;
}
const setA = new Set([1, 2, 3, 4]);
const setB = new Set([2, 3]);
const setC = new Set([3, 4, 5, 6]);
console.log(isSuperSet(setA, setB)); // true
console.log(union(setA, setC)); // Set { 1, 2, 3, 4, 5, 6 }
console.log(intersection(setA, setC)); // Set { 3, 4 }
console.log(difference(setA, setC)); // Set { 1, 2 }
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Set
const obj = {};
// set
obj.name = 'huangjian';
obj['age'] = 1024;
// get
console.log(`obj.name = ${obj.name}`); // huangjian
console.log(`obj['name'] = ${obj['name']}`); // huangjian
// delete
obj['willBeDeleted'] = true;
delete obj['willBeDeleted']; // method one
delete obj.willBeDeleted; // method two
// update
obj['name'] = 'huangping';
obj.age = 512;
console.log(obj); // { name: 'huangping', age: 512 }
// 遍历 object
// for in 会遍历整个原型链,所以只能加上 hasOwnProperty()
//
// 输出:
// name huangping
// age 512
var hasOwnProperty = Object.prototype.hasOwnProperty;
for (let key in obj) {
if (hasOwnProperty.call(obj, key)) {
console.log(key, obj[key]);
}
}
// get all keys
// Object.prototype.bar = 1; 这行代码可以测试 Object.keys(obj) 是否会遍历原型链
const keys = Object.keys(obj);
console.log(keys); // [ 'name', 'age' ]
// 访问属性,[] 和 . 的两个区别
// 属性名不是一个有效的变量名
// obj.1234 = true; // SyntaxError
obj['1234'] = true; // valid
// 变量作为 key
const key = 'editor';
obj[key] = 'vim';