VirtualTam's bookmarks
474 bookmarks found
-
Subclassing in Python Redux
2023-06-11 The conflict between subclassing and composition is as old as object-oriented programming. The latest crop of languages like Go or Rust prove that you don’t need subclassing to successfully write code. But what’s a pragmatic approach to subclassing in Python, specifically?
-
- Blocking TCP port 53 traffic leads to very strange failures. Don't.
- The source you're looking at is not the code running in production.
- "Prod" is just another name for "staging".
-
Visual Studio Code Key Bindings
2022-12-17 - https://code.visualstudio.com/shortcuts/keyboard-shortcuts-linux.pdf
- https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf
- https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf
- https://stackoverflow.com/questions/34316156/how-to-comment-multiple-lines-in-visual-studio-code
-
- https://stackoverflow.com/questions/35773299/how-can-you-export-the-visual-studio-code-extension-list
- https://stackoverflow.com/questions/55310734/how-to-add-more-indentation-in-the-visual-studio-code-explorer-file-tree-structu/55315106#55315106
- https://github.com/microsoft/vscode/issues/1027 - Suppress display of end-of-file newline as blank line
- https://stackoverflow.com/questions/30140112/how-do-i-hide-certain-files-from-the-sidebar-in-visual-studio-code
- https://stackoverflow.com/questions/29973619/how-to-make-vs-code-treat-a-file-extensions-as-a-certain-language
- https://stackoverflow.com/questions/44774709/removing-the-file-preview-on-the-right-side-of-the-editor-in-vs-code
-
Signing Git Commits with Your SSH Key
2022-09-15 -
The JSON License
2022-03-23 The Software shall be used for Good, not Evil.
-
Git helpers for shared commit authoring
2022-03-07 - https://tuple.app/pair-programming-guide/template
- https://github.com/kejadlen/git-together
- https://github.com/git-duet/git-duet
- https://github.com/chrisk/git-pair
- https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors
-
Git Source Code Review | Fabien Sanglard
2022-01-30 -
Melatonin - When to write tests for DSP code
2022-01-23 -
Vim: Function copy
2022-01-05 va{Vy
- Place the cursor somewhere in my method,
va{
to visually select the the code block,V
to turn the selection from character-wise to line-wise,y
to yank