摘要: 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 阅读全文
posted @ 2022-07-30 22:42 fndefbwefsowpvqfx 阅读(50) 评论(0) 推荐(0) 编辑
摘要: http://www.gnu.org/software/ http://www.gnu.org/software/coreutils/manual/coreutils.html https://github.com/renchunxiao/awk-sed https://github.com/cod 阅读全文
posted @ 2020-08-07 23:25 fndefbwefsowpvqfx 阅读(169) 评论(0) 推荐(0) 编辑
摘要: winiter wininter toyjar foojar gnu vsc pape jrep lant nrt cpp 阅读全文
posted @ 2019-07-16 23:55 fndefbwefsowpvqfx 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Chart http://asciiflow.com/ GL http://docs.gl/ https://developer.arm.com/solutions/graphics-and-gaming/apis/opengl-es https://developer.apple.com/libr 阅读全文
posted @ 2016-06-24 16:59 fndefbwefsowpvqfx 阅读(324) 评论(0) 推荐(0) 编辑
摘要: https://www.elastic.co/guide/en/elasticsearch/reference/current/important-settings.html `elasticsearch.yml` for configuring Elasticsearch ```yml path: 阅读全文
posted @ 2023-09-07 16:55 fndefbwefsowpvqfx 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://fscrawler.readthedocs.io/en/latest/user/tutorial.html ```bash bin/fscrawler resumes ``` ```bash .fscrawler/resumes/_settings.yaml ``` ```bash 阅读全文
posted @ 2023-09-07 16:28 fndefbwefsowpvqfx 阅读(23) 评论(0) 推荐(0) 编辑
摘要: # compiler * find definition * find reference in current file * find reference in project * search all occurrence # git * first time the function is a 阅读全文
posted @ 2023-09-06 14:33 fndefbwefsowpvqfx 阅读(6) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-09-06 14:22 fndefbwefsowpvqfx 阅读(2) 评论(0) 推荐(0) 编辑
摘要: # [gg] Git Graph - all branch ![](https://img2023.cnblogs.com/blog/859364/202309/859364-20230905162948031-1928929762.png) # [ggc] Git Graph - Change - 阅读全文
posted @ 2023-09-05 16:40 fndefbwefsowpvqfx 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ```bash .config/powershell/Microsoft.PowerShell_profile.ps1 ``` ```bash .tmux.conf ``` ```bash .zshrc ``` 阅读全文
posted @ 2023-09-04 19:06 fndefbwefsowpvqfx 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ```bash --raw --numstat --shortstat --dirstat --summary --name-only --name-status --check ``` ```bash git log --pretty=format:'%C(yellow)%h %Cred%ad % 阅读全文
posted @ 2023-09-04 18:55 fndefbwefsowpvqfx 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ```bash git diff HEAD HEAD~1 git diff main feature/abc git diff main feature/abc hello.cpp ``` 比较分支的提交差异 ```bash | dev | 存在 | | master | 不存在 | git log 阅读全文
posted @ 2023-09-04 18:52 fndefbwefsowpvqfx 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/859364/202309/859364-20230901134342456-1088384759.png) ![](https://img2023.cnblogs.com/blog/859364/202309/859364- 阅读全文
posted @ 2023-09-01 13:46 fndefbwefsowpvqfx 阅读(9) 评论(0) 推荐(0) 编辑
摘要: # 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 阅读全文
posted @ 2023-09-01 10:44 fndefbwefsowpvqfx 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2023-08-31 19:18 fndefbwefsowpvqfx 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ```bash ps -ef | grep 'chrome' | grep -v grep | awk '{print $2}' | xargs -r kill -9 ``` 阅读全文
posted @ 2023-08-31 17:18 fndefbwefsowpvqfx 阅读(2) 评论(0) 推荐(0) 编辑
摘要: `EGLContext` is an opaque type representing a client API context. The definition of contexts depends on the client API, but usually represents the sta 阅读全文
posted @ 2023-08-30 17:23 fndefbwefsowpvqfx 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/859364/202308/859364-20230830165443431-1313477148.png) ![](https://img2023.cnblogs.com/blog/859364/202308/859364- 阅读全文
posted @ 2023-08-30 16:55 fndefbwefsowpvqfx 阅读(4) 评论(0) 推荐(0) 编辑
摘要: By providing an abstraction of the current execution state in the current thread, including: * the stack (with local variables) * stack pointer * all 阅读全文
posted @ 2023-08-29 19:10 fndefbwefsowpvqfx 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 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 ` 阅读全文
posted @ 2023-08-29 13:19 fndefbwefsowpvqfx 阅读(3) 评论(0) 推荐(0) 编辑
摘要: # From angle (OpenGL ES 3.0) to Dawn (WebGPU -> Vulkan). https://github.com/google/angle https://github.com/gpuweb/gpuweb # https://developer.chrome.c 阅读全文
posted @ 2023-08-29 10:41 fndefbwefsowpvqfx 阅读(23) 评论(0) 推荐(0) 编辑
摘要: # Terminal ```bash $ sha256sum -t ``` Enter the text and press `ctrl+d` when you are finished. # Algorithm ```bash $ shasum -a 256 file.txt ``` # Chec 阅读全文
posted @ 2023-08-28 11:36 fndefbwefsowpvqfx 阅读(24) 评论(0) 推荐(0) 编辑
摘要: ```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 阅读全文
posted @ 2023-08-28 11:11 fndefbwefsowpvqfx 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://wiki.debian.org/VirtualBox # guest Addition ```bash sudo apt install build-essential dkms linux-headers-$(uname -r) ``` ```bash cd /media/cdro 阅读全文
posted @ 2023-08-25 13:57 fndefbwefsowpvqfx 阅读(4) 评论(0) 推荐(0) 编辑