MMarkinmarksmunchies.hashnode.dev·Dec 27, 2023 · 5 min readInspecting an SRAM CellThe above shows a static random access memory cell. Let's try understanding how this functions. Beginning with a brief description of the annotations: M1 - M6: these label each of the 6 transistors Vdd: voltage supplyy for the cell WL: word line, ...00
MMarkinmarksmunchies.hashnode.dev·Mar 13, 2023 · 5 min readInstalling My First Linux Operating System - Part 01To gain a deeper understanding of Linux and the boot process, I was advised by a coworker to go through the installation process of GentooOS. I do have an old laptop that I can dust off and use, so here I am giving this a try and documenting my learn...00
MMarkinmarksmunchies.hashnode.dev·Sep 23, 2022 · 5 min readThoughts on some programming languagesToday is September 22 2022, and it's been half a year since I've updated my blog. Both life and work has been busy, but I think it's a good idea to carve out some time now and then to do some writing. As of today, I have been a professional developer...00
MMarkinmarksmunchies.hashnode.dev·Feb 27, 2022 · 2 min readJava - Prioritizing Differently with PriorityQueueAs I continue my data structures and algorithms learning, the importance of heaps are very apparent. Heaps allow us to efficiently sort and allows us to implement a priority queue. As its name suggests, a priority acts like a regular queue, but proce...00
MMarkinmarksmunchies.hashnode.dev·Feb 27, 2022 · 1 min readJava - Iterating Through a HashMapSince I began programming in Java, this is how I would iterate through a HashMap: //Map of people's names and ages Map<String, Integer> map = new HashMap<>(); map.put("Bob", 24); map.put("Sally", 33); map.put("Klee", 12); for(String name : map...00