tantan的博客

Notes, ideas, and observations

#基本使用

  1. 修改程序源码,在合适的地方插入符号值

#编译项目,插桩

1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

export CC=afl-clang-fast
export CXX=afl-clang-fast++

./configure --enable-shared=no --enable-static=yes
make -j 32

#成为 CA

1
2
3
4
5
# Generate private key
openssl genrsa -des3 -out myCA.key 2048
# Generate root certificate
openssl req -x509 -new -nodes -key myCA.key -sha256 -days 825 -out myCA.pem \
-subj "/C=CN/ST=Shanghai/L=Shanghai/O=/OU=/CN=My first CA"

#What’s it

2013 年,Google 开源的,用于词向量计算的工具

#基本概念

随机试验
可以在相同的条件下重复进行,并且每次试验的结果不确定,但试验前可以明确试验的所有可能结果。
样本空间
随机试验EE 的所有可能结果组成的集合,记为SS
样本点
样本空间中的元素,记为ω\omega
事件
样本空间SS 的子集称为随机事件,简称事件,通常用大写字母A,B,C,...A, B, C, ... 表示。
基本事件
只包含一个样本点的随机事件。

#访问 https://www.kernel.org/ 查看最新的内核版本,获取下载链接

Just Monika!

位运算

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
class Solution {
public:
unsigned to_uword(const string &word) {
unsigned res = 0;
for (auto &&c: word) {
res |= 1 << (c - 'a');
}
return res;
}

int maxProduct(vector<string>& words) {
vector<unsigned> uwords;
uwords.reserve(words.size());
for (auto &&w: words) {
uwords.push_back(to_uword(w));
}

int m = 0;
int n = words.size();
for (int i = 0; i < n; i++) {
for (int j = i; j < n; j++) {
auto &s1 = uwords[i];
auto &s2 = uwords[j];
if (s1 & s2) continue;
if (int r = words[i].size() * words[j].size(); r > m) m = r;
}
}
return m;
}
};
0%