Debby Nirwan·Jun 24, 2023How is C++ Map implemented?Understand the underlying data structure of the map and compare it to a hash table.
Debby Nirwan·May 6, 2023C++ Hash Table PerformanceUnderstand behaviors of hash tables in C++ so we can use them more correctly.
Debby Nirwan·May 1, 2023How to Implement Hash Tables in C++Get a deeper understanding of how hash tables work under the hood by implementing them in C++.
InBetter ProgrammingbyDebby Nirwan·Mar 10, 2023Pac-Man AI CPP — A Software FrameworkA software framework to learn and test AI algorithms
InBetter ProgrammingbyDebby Nirwan·Mar 8, 2022C++ constexpr: What It Really Is?Avoid beginner’s mistakes by understanding what is constexpr and how it differs from const in C++A response icon1A response icon1
InBetter ProgrammingbyDebby Nirwan·Feb 22, 2022Understanding All the Details of C++ ConstIt is very important to understand the details of const qualifiers to help improve the quality of your code and the efficiency of your codinA response icon1A response icon1
InBetter ProgrammingbyDebby Nirwan·Jan 13, 2022When Should We Use Static Local Variables in C++?Understanding what actually happens when we use static local variables and when we should use themA response icon4A response icon4
InBetter ProgrammingbyDebby Nirwan·Jan 4, 2022Writing Common Functionality With CRTP Idiom in C++Curiously recurring template pattern can help us write common functionality by combining templates and inheritanceA response icon2A response icon2
InBetter ProgrammingbyDebby Nirwan·Dec 14, 2021C++ Framework for Inter-Process Message PassingWriting Inter-Process Message Passing Framework to improve the expressiveness of our code and make our code more elegant.A response icon2A response icon2
Debby Nirwan·Dec 11, 2021Ways to Stay Sane during Quarantine in a Hotel RoomFighting boredom in a hotel room.