淋浴洗头时练习张嘴呼气(可带泳镜)
- 嘴吸气,闭嘴下水,憋起,上来再呼气
- 嘴吸气,闭嘴下水,嘴呼气,嘴边呼边出水
Beijing Institute of Technology | |
Beijing Jiaotong University | |
Beijing University of Posts and Telecommunications | |
Central South University | |
Dalian University of Technology | |
East China Normal University | |
Fudan University | |
Harbin Institute of Technology | |
Huazhong University of Science and Technology | |
Jilin University |
/* | |
* Toy Fuzzer | |
* | |
* gcc exercise.c -o exercise | |
* | |
* Check a specific key: | |
* ./exercise "KEY" | |
* | |
* Fuzz the key-checker: | |
* ./exercise |
#!/bin/bash | |
cd build | |
cmake -G Ninja -DCMAKE_INSTALL_PREFIX=~/.local -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DBUILD_SHARED_LIBS=ON \ | |
-DLLVM_USE_SPLIT_DWARF=ON -DLLVM_USE_LINKER=gold -DLLVM_TARGETS_TO_BUILD="X86" -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra" ../llvm/ |
import fontTools | |
from fontTools.ttLib import TTFont | |
from fontTools.ttLib import TTCollection | |
# modify every font in ttc, to make '上' shown as '北', '海' shown as '京' | |
# ttc = TTCollection('fonts/NotoSansCJK-Regular.ttc') | |
def modify_cmap_and_save_ttc(input_ttc_path, output_ttc_path): | |
# Load the original TTC file |