Miscellaneous tips
This passage is to log miscellaneous tips.
- Internet’s icon library and toolkit
- Use HEU_KMS for Windows Activation
- How to give a technical presentation
- Chatbot Arena: Benchmarking LLMs in the Wild
- display information about ELF files
readelf
https://www.man7.org/linux/man-pages/man1/readelf.1.html - Install Shadowsocks windows client
- Install Shadowsocks libev on Debian/Ubuntu (https://teddysun.com/358.html)
1
2
3wget --no-check-certificate -O shadowsocks-libev-debian.sh https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks-libev-debian.sh
chmod +x shadowsocks-libev-debian.sh
./shadowsocks-libev-debian.sh 2>&1 | tee shadowsocks-libev-debian.log - list symbols in binary using
nm
https://www.man7.org/linux/man-pages/man1/nm.1.html - Search paper : https://dblp.org/ Search conf : https://dblp.org/db/conf/hpca
- mirror for huggingface hf-mirror
- mirror for github ghproxy (
https://mirror.ghproxy.com/
) - Comparison between source and assembly instruction
- C alternative tokens : use
and
to replace&&
etc. - compilation flags
- -E : Only run the preprocessor
- -S : Only run preprocess and compilation steps (=> .s .ll)
- -c : Only run preprocess, compile, and assemble steps (=> .o)
- -nostdlib
- view system INFO :
cat /proc/version
(kernel) orcat /etc/issue
(system) - view cpu INFO :
cat /proc/cpuinfo
- make -n : only print inst not execute
- compress :
tar -cf *.tar path-to-file(dir)
uncompress :tar -xf *.tar
- ls
- /etc/passwd
- How to use ssh
- kown_hosts : log the public key of the host you have visited
- How to change default shell :
chsh
Miscellaneous tips