Jyotiprakash Mishrablog.jyotiprakash.org·Nov 22, 2024Reactive Programming in JavaWhy 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...DiscussReactive Programming
Jyotiprakash Mishrablog.jyotiprakash.org·Nov 22, 2024Do you know Java Streams?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...Discuss·1 likeno loop
Mukund Jogimukundjogi.hashnode.dev·Sep 30, 20243 Frameworks, 1 Simple Idea: Declarative UIImagine 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 ...DiscussMagic of Declarative UIFlutter
leynierdevblog.leynier.dev·Aug 5, 2024Implementación y Generación de Hidato con HaskellRepositorio 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...Discuss·1 likepuzzle
Keunyoung Songmapotofu.hashnode.dev·May 29, 2024Reactive Programming(반응형 프로그래밍)이란?위키피디아에 따르면, 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...DiscussTILReactive Programming
Dhruv Uniyaldhruv12.hashnode.dev·Oct 7, 2023Introduction to Object Oriented Programming (1/3)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...Discuss·3 likes·40 readsObject Oriented Programming
Pavel Romanovpavel-romanov.com·Sep 22, 2023Differences between declarative and imperative programmingThere 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...Discuss·122 readsDeclarative vs. Imperative Programming
Selelo Mogapiangular-to-bedtime.hashnode.dev·Sep 6, 2023The Tale of Declarative vs. Imperative ProgrammingIntroduction 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...DiscussAngular
Phakorn Kiongblog.phakorn.com·Aug 19, 2023Bringing Pattern Matching to GoIn the realm of software development, the concept of declarative code branching emerges as a powerful approach to managing complexity and conditional logic. Declarative branching shifts the focus from intricate, imperative if-else constructs to a mor...Discuss·10 likes·334 readsGo Language
Shivam Maggublog.shivammaggu.com·Feb 20, 2023Understanding SwiftUI - What is SwiftUI? 🧐Requirements The minimum deployment target version is iOS 13 and above. SwiftUI development is supported by Xcode version 11 and above. The basics SwiftUI is a UI Design Framework just like its predecessor, the UIKit. It uses the Declarative pr...Discuss·98 readsUnderstanding SwiftUISwiftUI