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
Navya Anavyadevops.hashnode.dev·Jul 17, 2024Automate Docker Builds and Pushes with Jenkins: A Step-by-Step GuidePre-requisites: Jenkins Master is up and running. Jenkins slave is set up with Docker installed. Docker and Docker Pipeline plugins are installed in Jenkins. Docker Hub account is set up at Docker Cloud. Step 1: Validate Jenkins Docker Setup E...Discuss·98 readsJenkins
Mido Sayedmidosayed.hashnode.dev·Jul 11, 2024The Evolution from Imperative to Declarative Programming: A Deep Dive into Modern Software ParadigmsIn the ever-evolving landscape of software development, the shift from imperative to declarative programming paradigms marks a significant milestone in how we approach problem-solving in code. This transition is not merely a change in coding style; i...Discussprogramming paradigm
Sanjit Gawadesanjit.hashnode.dev·Mar 20, 2024Imperative vs. Declarative UI Development: A Tale of Two ApproachesIn the world of web development, building user interfaces (UIs) involves handling user interactions and keeping the UI in sync with the underlying data. Two main approaches dominate this landscape: imperative and declarative. Today, we'll dive into t...Discuss·1 likeUI
Jieun Leezeunny.hashnode.dev·Mar 6, 2024선언형 프로그래밍(Declarative Programming)React는 상호작용이 많은 UI를 만들 때 생기는 어려움을 줄여줍니다. 애플리케이션의 각 상태에 대한 간단한 뷰만 설계하세요. 그럼 React는 데이터가 변경됨에 따라 적절한 컴포넌트만 효율적으로 갱신하고 렌더링합니다. 선언형 뷰는 코드를 예측 가능하고 디버그하기 쉽게 만들어 줍니다. - React(https://ko.legacy.reactjs.org/) SwiftUI uses a declarative syntax, so you can...Discuss·161 readsJavaScript
Opabode Abdulmujeebdimejii.hashnode.dev·Jan 13, 2024The declarativeness of ReactReact, a JavaScript library developed by Facebook around 2013 in response to the increasing complexity and scale of Facebook’s own product, the Facebook Ads app, has gained widespread adoption due to its innovative approach to managing code complexit...Discuss·1 likeReact
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
Darsh Pateldarsh-patel.hashnode.dev·Sep 10, 2023Imperative vs Declarative Query LanguagesWhat are query languages and why do they matter? Query languages are special-purpose languages that allow users to interact with databases and retrieve data that matches certain criteria. Query languages are essential for data analysis, reporting, an...Discuss·90 readsDBMS
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
Harpalharpalonsoftware.com·Sep 3, 2023Functional Programming Made Easy with AnalogiesIntroduction Imagine you are a detective trying to solve a crime. You have a list of suspects, each with different characteristics like age, hair color, height, past criminal records, and so on. Your task is to find the criminal who fits the profile....Discuss·3 likes·406 readsFunctional Programming