Feb 6 · 5 min read · Nix is a concept known for its steep learning curve. It is hard to understand, harder to explain and nearly impossible to master - even for the nerdiest Linux enthusiasts. In this post, I would like to share my journey of embracing Nix as a long-time...
Join discussion
Nov 22, 2024 · 48 min read · Why Reactive Programming? Imagine a web server under heavy load, handling thousands of incoming requests. In a traditional imperative setup, every request might spawn a new thread or tie up an existing one, waiting for I/O operations like database re...
Join discussionNov 22, 2024 · 32 min read · Programming is as much about solving problems as it is about communicating our intent clearly. When writing code, one must ask: are we telling the computer how to perform each step, or are we expressing what needs to be achieved? The distinction betw...
Join discussionSep 30, 2024 · 4 min read · Imagine you're building a house. You could tell a construction crew exactly how to lay each brick, where to place every window, and how to connect the plumbing – a very detailed and potentially messy approach! This is how building mobile apps used ...
Join discussion
Aug 5, 2024 · 17 min read · Repositorio de GitHub Significado de Haskell Haskell es un lenguaje de programación estandarizado, multipropósito, funcionalmente puro, con evaluación no estricta y tipificación fuerte estática. Su nombre se debe al lógico estadounidense Haskell Cur...
Join discussion
May 29, 2024 · 3 min read · 위키피디아에 따르면, In computing, reactive programming is a declarative programming paradigm concerned with data streams and the propagation of change. With this paradigm, it is possible to express static (e.g., arrays) or dynamic (e.g., event emitters) d...
Join discussion
Oct 7, 2023 · 7 min read · Object Oriented Programming (or OOP in short) is a programming paradigm that emphasizes the reusability of code. In this article, we take a look at what the various programming paradigms are and develop our understanding of how OOP is used to write c...
SShreyas commentedSep 22, 2023 · 5 min read · There are two main paradigms in programming: imperative and declarative. Every other paradigm, such as reactive, functional, and procedural, is just a subset of one of these two. Often, you hear that declarative code is better than imperative code an...
Join discussionSep 6, 2023 · 3 min read · Introduction Hello and welcome to my inaugural blog post! Today, I'm diving headfirst into a topic that's a cornerstone of modern programming: the ongoing dialogue between declarative and imperative paradigms. As a professional well-versed in Angular...
Join discussion