Add a script retrieving the Youtube channel ID from its name.

This commit is contained in:
ASR
2022-05-31 08:19:44 +02:00
commit f847654602
4 changed files with 88 additions and 0 deletions

8
.dir-locals.el Normal file
View File

@@ -0,0 +1,8 @@
((nil . ((eval . (set (make-local-variable 'project-root-dir) (replace-regexp-in-string "~" (getenv "HOME") (locate-dominating-file default-directory ".dir-locals.el"))))))
;; TODO: Disable hicpp-no-array-decay/cppcoreguidelines-pro-bounds-array-to-pointer-decay once c++20.
(c++-mode . ((c-basic-offset . 4)
(eval . (set 'lsp-clients-clangd-args (list "-j=4" "-background-index" "--clang-tidy"
(format "--compile-commands-dir=%s" project-root-dir)
"--clang-tidy-checks=*,-llvmlibc-callee-namespace,-fuchsia-default-arguments-calls,-fuchsia-default-arguments-declarations,-llvmlibc-restrict-system-libc-headers,-cppcoreguidelines-pro-type-vararg,-hicpp-vararg,-hicpp-no-array-decay,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-cppcoreguidelines-pro-bounds-pointer-arithmetic,-google-runtime-int,-google-readability-todo"
"--limit-results=0")))))
)