Notes
Largely a list of FYI to myself. You may read along if you like, but these notes are just an uncategorized list of things I've found useful to keep around for future ref.
Tag Search
List of Notes
- * Virtual memory and page faultsBasic overview about virtual memory, page faults and how that matters for innodb and `innodb_buffer_pool_size` config
- * Big o notationA short note on understanding Big O notation
- * Basic networking referenceBasic networking reference
- * Terraform intro notesA set of simple notes about terraform, covers core concepts, HCL basics and a docker example. Not intended as a learning resource, written to solidify my own understanding.
- * Exploring a simple deployment with terraformLearning Terraform through a MariaDB deployment
- * Terraform modulesShort note on what terraform modules are
- * Mongodb condensed notesCondensed operational notes about MongoDB, from a MySQL/MariaDB point of view
- * Mariadb vs postgresql basic differencesBasic overview of PostgreSQL from a MySQL/MariaDB point of view, not intended as an educational resource
- * Postgresql vacuum basicsBasic TL:DR on VACUUM in PostgreSQL
- * Postgresql explain notes mariadb povSet of notes about reading PostgreSQL EXPLAIN. Very basic.
- * Basic query patterns for fast recallA short collection of basic SQL patterns for fast recall, not intended as an educational resource
- * InodesBasic overview of what inodes are
- * Basic data structures in cReference notes on structs, linked lists, stacks, and queues with working C examples
- * C pointers and arraysQuick reference notes on C pointers and arrays. Not intended as a complete learning resource.