用于记录一些简短的想法
All problems in computer science can be solved by another level of indirection
git clone --recurse-submodules https://github.com/google/leveldb.git# 或者# git submodule init# git submodule updatemkdir -p build && cd buildcmake -DCMAKE_BUILD_TYPE=Release ..# 或者# cmake -DSNAPPY_BUILD_TESTS=false -DLEVELDB_BUILD_TESTS=false -DLEVELDB_BUILD_BENCHMARKS=false -DCMAKE_BUILD_TYPE=Release ..make leveldb
docker create --name container_name from_REPOSITORY_namedocker export container_name -o abc.tar
« [1][2][3][4][5][6][7][8][9] » 1/45
作为IT人士, 你的投资方式?
查看结果
std::thread th(&Task::execute, task_ptr, "arg"); Reply
https://en.wikipedia.org/wiki/Indirection
checksum, check point(commit point) 也是该理论的应用, 用于解决数据(操作)的完整性(原子性, Atomicity)问题.
checksum 用于解决一条记录的完整性, check point 用于解决多条记录(多个操作的组合)的原子性.
check point 依赖有序性.
Reply
Reply
Reply
ioreg -lw0 | grep "EDID" | sed "/[^<]*</s///" | xxd -p -r | strings -6 Reply
for i in `ls` 无法处理空格,应该使用
ls | while read i; do echo $i; done Reply