摘要:
Ordered struct node{ int price; int weight; node(int p, int w):price(p), weight(w) {} //Note //1 define as Member function //2 const reference paramet 阅读全文
摘要:
http://www.gnu.org/software/ http://www.gnu.org/software/coreutils/manual/coreutils.html https://github.com/renchunxiao/awk-sed https://github.com/cod 阅读全文
摘要:
winiter wininter toyjar foojar gnu vsc pape jrep lant nrt cpp 阅读全文
摘要:
Chart http://asciiflow.com/ GL http://docs.gl/ https://developer.arm.com/solutions/graphics-and-gaming/apis/opengl-es https://developer.apple.com/libr 阅读全文
摘要:
https://www.elastic.co/guide/en/elasticsearch/reference/current/important-settings.html `elasticsearch.yml` for configuring Elasticsearch ```yml path: 阅读全文
摘要:
https://fscrawler.readthedocs.io/en/latest/user/tutorial.html ```bash bin/fscrawler resumes ``` ```bash .fscrawler/resumes/_settings.yaml ``` ```bash 阅读全文
摘要:
# compiler * find definition * find reference in current file * find reference in project * search all occurrence # git * first time the function is a 阅读全文
该文被密码保护。 阅读全文
摘要:
# [gg] Git Graph - all branch ![](https://img2023.cnblogs.com/blog/859364/202309/859364-20230905162948031-1928929762.png) # [ggc] Git Graph - Change - 阅读全文
摘要:
```bash .config/powershell/Microsoft.PowerShell_profile.ps1 ``` ```bash .tmux.conf ``` ```bash .zshrc ``` 阅读全文
摘要:
```bash --raw --numstat --shortstat --dirstat --summary --name-only --name-status --check ``` ```bash git log --pretty=format:'%C(yellow)%h %Cred%ad % 阅读全文
摘要:
```bash git diff HEAD HEAD~1 git diff main feature/abc git diff main feature/abc hello.cpp ``` 比较分支的提交差异 ```bash | dev | 存在 | | master | 不存在 | git log 阅读全文
摘要:
![](https://img2023.cnblogs.com/blog/859364/202309/859364-20230901134342456-1088384759.png) ![](https://img2023.cnblogs.com/blog/859364/202309/859364- 阅读全文
摘要:
# Download https://support.apple.com/en-us/HT211683 # Create a bootable installer for macOS Plug in the USB flash drive or other volume that you're us 阅读全文
摘要:
https://apple.stackexchange.com/questions/98123/what-is-the-applescript-command-to-show-or-hide-iterm2-window Here are several options (none of them h 阅读全文
摘要:
```bash ps -ef | grep 'chrome' | grep -v grep | awk '{print $2}' | xargs -r kill -9 ``` 阅读全文
摘要:
`EGLContext` is an opaque type representing a client API context. The definition of contexts depends on the client API, but usually represents the sta 阅读全文
摘要:
![](https://img2023.cnblogs.com/blog/859364/202308/859364-20230830165443431-1313477148.png) ![](https://img2023.cnblogs.com/blog/859364/202308/859364- 阅读全文
摘要:
By providing an abstraction of the current execution state in the current thread, including: * the stack (with local variables) * stack pointer * all 阅读全文
摘要:
OpenGL ES is a set of commands that affect the operation of graphics hardware. We distinguish two types of state. The first type of state, called GL ` 阅读全文
摘要:
# From angle (OpenGL ES 3.0) to Dawn (WebGPU -> Vulkan). https://github.com/google/angle https://github.com/gpuweb/gpuweb # https://developer.chrome.c 阅读全文
摘要:
# Terminal ```bash $ sha256sum -t ``` Enter the text and press `ctrl+d` when you are finished. # Algorithm ```bash $ shasum -a 256 file.txt ``` # Chec 阅读全文
摘要:
```bash sudo dpkg -i /path/to/deb/file sudo apt-get install -f ``` ```bash -f, --fix-broken Fix; attempt to correct a system with broken dependencies 阅读全文
摘要:
https://wiki.debian.org/VirtualBox # guest Addition ```bash sudo apt install build-essential dkms linux-headers-$(uname -r) ``` ```bash cd /media/cdro 阅读全文