Radhakrishnan Selvarajtech.radhakrishnan-s.co.uk·Nov 21, 2024Swift - Combine - combineLatestWhat is it? CombineLatest is an operator that combines more than one publishers, then provides a tuple of the latest value from each publisher. The combined publisher doesn’t produce elements until each of its upstream publishers publishes at least o...DiscussSwift
Urvish Suhagiyaurvishsuhagiya.hashnode.dev·Oct 30, 2024A Step-by-Step Guide to Jenkins Declarative Pipeline for BeginnersIntroduction In the realm of DevOps and Continuous Integration/Continuous Deployment (CI/CD), Jenkins plays a pivotal role. One of the most essential features of Jenkins is its pipeline capabilities, which allow for the automation of the software dev...Discuss·2 likesJenkins
Anand Ravalanandraval.hashnode.dev·Aug 24, 2024Day 27 Task: Jenkins Declarative Pipeline with Docker 🚀Day 26 was all about a Declarative pipeline, now its time to level up things, let's integrate Docker and your Jenkins declarative pipeline Use your Docker Build and Run Knowledge docker build - you can use sh 'docker build . -t <tag>' in your pipelin...Discuss90DaysOfDevopsDevops
Anand Ravalanandraval.hashnode.dev·Aug 23, 2024Day 26 Task: Jenkins Declarative Pipeline 🚀Some terms for your Knowledge What is Pipeline - A pipeline is a collection of steps or jobs interlinked in a sequence. Declarative: Declarative is a more recent and advanced implementation of a pipeline as a code. Scripted: Scripted was the first an...Discuss90DaysOfDevopsDevops
Rajat Chauhanchauhanrajatwork.hashnode.dev·Aug 10, 2024Jenkins Declarative Pipeline1. What is a Pipeline? A pipeline in Jenkins is a collection of steps or jobs that are interlinked in a sequence to automate the process of building, testing, and deploying software. Pipelines provide a robust way to manage continuous integration and...Discuss·27 readsJenkinsJenkins
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
Romman Sabbirrommansabbir.com·May 27, 2024TypeSafe Navigation or Traditional Intent Passing?Introduction Navigating between screens is a fundamental aspect of mobile app development. In the Android ecosystem, there are two primary methods for handling navigation: the traditional intent passing and the modern TypeSafe navigation in Jetpack C...Discuss·112 readsAndroid Application Developmenttypesafenavigation
Prathmesh Vibhuteprathmeshh.hashnode.dev·May 21, 2024Day 81 : Project 2 - Jenkins Declarative PipelineIn today's fast-paced software development environment, the need for robust and efficient deployment pipelines is more critical than ever. Automation not only accelerates the release process but also minimizes errors and enhances consistency across e...Discuss·108 reads#DAY81
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·154 readsJavaScript