Connect with me

Winter Arc is your last hope to win this year
Do you remember your new year resolution? Are you dissapointed that you failed to accomplish your goals yet again!? Brace yourself because Winter Arc is your only hope to crush them.
Connect with me
Do you remember your new year resolution? Are you dissapointed that you failed to accomplish your goals yet again!? Brace yourself because Winter Arc is your only hope to crush them.
Learn how to design a simple yet scalable architecture for your next hobby app. This article covers best practices, key design decisions, and strategies to ensure flexibility and maintainability as your app grows.
Memory management is crucial in programming. While garbage collection prevents leaks, it adds performance overhead. Rust avoids this by enforcing strict ownership rules, ensuring efficiency without GC. Future models may blend both approaches for optimal performance.
The Model-View-Presenter (MVP) pattern refines the classic Model-View-Controller (MVC) approach by improving separation of concerns and testability. This article explores how MVP enhances UI development and why it might be a better choice for your next project.
Ever wondered how Unix, BSD, Minix, and Linux are connected? This article unpacks their history, key differences, and how they shaped modern operating systems.
Last week I watched some videos and read article from experts in computer science academia and software industry. I have skimmed some great programming wisdom and aggregated them in this article.
Running a program without tests is like using a mathematical formula without proof. We “hope” program will work as expected for every input. Learn why we need tests and create them using Mocha Library.