cmake
cmakewindows: 1234567cmake -G “MinGW Makefiles” // mingw32-makecmake -G Ninja // ninjacmake -G “Unix Makefiles” // clangcmake -G "MinGW Makefiles" -S .. -B . -DCMAKE_C_COMPILER=<path to gcc.exe> -DCMAKE_CXX_COMPILER=<path to g++.exe> command lines homepageclick here to come back to command line homepage.
conda
condacreate and delete env: 123conda create -n <envname> python=3.10conda remove --name <envname> --all do not auto-use base: 1conda config --set auto_activate_base false enter/quit env: 1conda activate <envname> / deactivate env package: 12345(pip install conda-pack)conda package -n <envname>tar -xzvf <envname>.tar.gz -C path/to/store.tar.gz export/import(in env): 123conda env export > environment.ymlconda env create -f environment.yml also...
disk
diskon windows : 123456diskpartlist diskselect disk xcleandiskmgmt.msc command lines homepageclick here to come back to command line homepage.
docker
dockernormally use NVIDIA DRIVER modify saving mirrorlists command lines homepageclick here to come back to command line homepage.
git
gitget ssh key: 1234567ssh-keygen -t rsa -C "[xxx@xxx.com](mailto:xxx@xxx.com)"<enter until ...>cd ~/.sshcat id_rsa.pub git initialize: 123git config --global user.name "username"git config --global user.email "<email>" for proxy: 123456789git config --global http.proxy http://127.0.0.1:7897git config --global https.proxy http://127.0.0.1:7897# and we can test with:git config --global --get http.proxygit config --global --get https.proxy firewall...
lists
liststo export your requirements as a txt. 12345678910pacman -Qqe > pacman_installed.txtyay -Qqe > yay_installed.txt//reusme// sudo pacman -S --needed - < pacman_installed.txt// yay -S --needed - < yay_installed.txtpip3 freeze > pip_installed.txt// resume : pip3 install -r pip_installed.txt command lines homepageclick here to come back to command line homepage.
xmake
xmakeprotal:https://xmake.io/#/zh-cn/ command lines homepageclick here to come back to command line homepage.
FPGA on arch
FPGA on archall the tool-chain we should have is : 1234567chisel # for generate verilog code , optionaliverilog # for compile the verilog filegtkwave # for observe the chartsyosys # for synthsissymbiflow # for synthsis, placement and routing, generate bitstreamsF4PGA # new version of symbiflowopenocd # for uploading to board during these tools, we can pull the docker iamge of symbiflow: 1docker pull daverichmond/fpga-symbiflow:latest and we can use vivado: after download for AMD website...
label together
go on labeling togetherCVAT is a tool that can support many people to collaborate together to prepare the dataset of computer vision. how to install CVAT or you can use roboflow… side occupation homepageclick here to come back to side occupationhomepage.
ollama
ollamait is a way super easy to deploy AI to local machine. 1234567yay -S ollama# modify .bashrcif ! pgrep -f "ollama serve" > /dev/null; then ollama serve & disownfi 12345#useollama pull deepseek-coder:6.7bollama pull deepseek-coder(latest) side occupation homepageclick here to come back to side occupationhomepage.





