Skip to content

Instantly share code, notes, and snippets.

View chinggg's full-sized avatar
😱

chinggg

😱
  • Max Planck Institute
  • Germany
View GitHub Profile
@chinggg
chinggg / Goog-Universities.txt
Last active March 28, 2021 02:30
Universities in China that are not classified as "others" by Google
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
@chinggg
chinggg / toyfuzzer.c
Created July 11, 2022 06:58
Toy Fuzzer
/*
* Toy Fuzzer
*
* gcc exercise.c -o exercise
*
* Check a specific key:
* ./exercise "KEY"
*
* Fuzz the key-checker:
* ./exercise
@chinggg
chinggg / build-clang.sh
Last active February 21, 2023 05:20
Build Scripts
#!/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/
@chinggg
chinggg / 游泳入门.md
Created March 8, 2024 07:23
游泳入门

游泳入门

怕水怎么办

淋浴洗头时练习张嘴呼气(可带泳镜)

换气练习

  1. 嘴吸气,闭嘴下水,憋起,上来再呼气
  2. 嘴吸气,闭嘴下水,嘴呼气,嘴边呼边出水
@chinggg
chinggg / ttf_mod.py
Created March 8, 2024 07:47
Modify Font Display
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