- Screen Lock :Super + L
- Logout : Ctrl + Alt + Del
- VS Code: multi line keybindings
- keybindings.json
{
"key": "cmd+shift+f7",
"command": "editor.action.insertSnippet",
"args": {
"snippet": "<< \" ${TM_SELECTED_TEXT}:\" << ${TM_SELECTED_TEXT} "
},
- Markdown Viewer
- Click Markdown Viewer
- Goto advanced option
- Set file access - Allow all
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I compiled and installed googletest-release-1.12.1 in my macos. | |
# I want to remove the installed files clearly. | |
# find install_manifest.txt | |
googletest-release-1.12.1 % ls | |
BUILD.bazel CMakeLists.txt CTestTestfile.cmake README.md ci googlemock lib | |
CMakeCache.txt CONTRIBUTING.md LICENSE WORKSPACE cmake_install.cmake googletest | |
CMakeFiles CONTRIBUTORS Makefile bin docs install_manifest.txt | |
# remove it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tested in macOS Sonoma 14.5 | |
# Reference : https://johngrib.github.io/wiki/mac/terminal-guide/03/#-i-%EC%98%B5%EC%85%98%EA%B3%BC-placeholder | |
% echo $SHELL | |
/bin/zsh | |
% seq 10 | xargs -I {} echo {} | |
1 | |
2 | |
3 | |
4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* original source : https://github.com/sunkyoo/opencv4cvml/blob/master/ch03/BasicOp/main.cpp | |
* Cargo.toml | |
*. opencv = "0.82.0" | |
*/ | |
use opencv::core::*; | |
/* Point : https://docs.rs/opencv/0.83.0/opencv/core/struct.Point_.html | |
*/ | |
fn point_op() { |
NewerOlder