Package Management (link)
- leaf-keywords
- el-get
- hydra
- package-utils
| theme = Catppuccin Mocha | |
| adjust-cell-height = 0% | |
| command = /bin/zsh -c "tmux new -A -s work" | |
| copy-on-select = true | |
| font-family = "BlexMono Nerd Font Mono" | |
| font-size = 16 | |
| font-thicken = true | |
| mouse-hide-while-typing = true | |
| macos-non-native-fullscreen=visible-menu |
| # From https://stackoverflow.com/a/68876046/1319998, which is itself inspired by https://stackoverflow.com/a/68814418/1319998 | |
| from contextlib import contextmanager | |
| from collections import namedtuple | |
| from ctypes import cdll, byref, string_at, c_char_p, c_int, c_double, c_int64, c_void_p | |
| from ctypes.util import find_library | |
| from sys import platform | |
| def query(db_file, sql, params=()): |
| REGEDIT4 | |
| [HKEY_CLASSES_ROOT\org-protocol] | |
| @="URL:Org Protocol" | |
| "URL Protocol"="" | |
| [HKEY_CLASSES_ROOT\org-protocol\shell] | |
| [HKEY_CLASSES_ROOT\org-protocol\shell\open] | |
| [HKEY_CLASSES_ROOT\org-protocol\shell\open\command] | |
| @="\"C:\\BIN\\org-protocol-to-wsl-helper.bat\" \"%1\"" |
| cmake_minimum_required(VERSION 2.8.11) | |
| project(cmake_wrapper) | |
| include(conanbuildinfo.cmake) | |
| conan_basic_setup() | |
| if (CONAN_COMPILE_DEFINITIONS_FLANN MATCHES "FLANN_STATIC") | |
| set(FLANN_USE_STATIC ON) | |
| endif() |
| # References: | |
| # https://cmake.org/cmake/help/latest/command/add_custom_target.html | |
| # https://samthursfield.wordpress.com/2015/11/21/cmake-dependencies-between-targets-and-files-and-custom-commands/ | |
| # https://gist.github.com/socantre/7ee63133a0a3a08f3990 | |
| # https://stackoverflow.com/questions/24163778/how-to-add-custom-target-that-depends-on-make-install | |
| # https://stackoverflow.com/questions/30719275/add-custom-command-is-not-generating-a-target | |
| # https://stackoverflow.com/questions/26024235/how-to-call-a-cmake-function-from-add-custom-target-command | |
| # https://blog.csdn.net/gubenpeiyuan/article/details/51096777 | |
| cmake_minimum_required(VERSION 3.10) |
| #!/bin/bash | |
| # git pre-commit hook that runs an clang-format stylecheck. | |
| # Features: | |
| # - abort commit when commit does not comply with the style guidelines | |
| # - create a patch of the proposed style changes | |
| # modifications for clang-format by [email protected] | |
| # This file is part of a set of unofficial pre-commit hooks available | |
| # at github. |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.