Pravesh Sudhapraveshstwt.hashnode.dev·an hour agoDeploying a Voting App with ArgoCD and Kubernetes: A Beginner-Friendly Guide💡 Introduction: Welcome to the world of DevOps! In this blog, we’ll embark on an exciting journey to build a full-fledged CI/CD project from scratch. We’ll start by creating an EC2 instance to serve as our working environment. From there, we’ll clon...Discuss·1 likeDocker
Abhishek Sharmaabhisheksharmacodes.hashnode.dev·5 hours agoAre developers not that much happy?The 2024 Stack Overflow Developer Survey has revealed a startling statistic: only 20% of developers are happy in their current roles. This alarming figure underscores a growing issue within the tech industry, prompting a deeper look into the factors ...DiscussDevops
Vishal Singhvishalsingh.hashnode.dev·6 hours agoReact Context vs Redux: Are They the Same?Building modern web applications, and managing and sharing state across components is a common challenge. React Context and Redux are two widely used tools for state management. At first glance, they might seem similar, but their purposes, use cases,...DiscussReactJs TutorialReact
esProc Desktopesproc-desktop.hashnode.dev·10 hours ago#101 - Deduplication of Row-Based Data - by Whole RowProblem description & analysis: There is a data table: Task: Find out the whole-row data that are not duplicate and the first duplicate whole-row data. Solution: Use SPL XLL and enter the following formula: =spl("=E(?1).group(ID,Name,Gender,Birthday...Discuss·10 likesexcel
gayatri kumargeekee.hashnode.dev·Nov 19, 2024Unlocking the Vault: Mastering Encapsulation in JavaScript!Imagine you have a vault where you keep all your valuable belongings. Only you have the key to open it, and nobody can see or access its contents unless you allow it. In JavaScript, encapsulation works in a similar way—it’s a technique that allows yo...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·30 likesWeb Developmentencapsulation
Samihan Chatterjeesamihan.hashnode.dev·Nov 20, 2024Web3: A Deep Dive into the Internet’s Decentralized FutureIntroduction: Web3: A Deep Dive into the Internet’s Decentralized Future The transition to Web3 marks a pivotal evolution in the internet, introducing a decentralized, blockchain-driven ecosystem aimed at addressing the shortcomings of Web 2.0. As th...Discusswebdev
Tim Bailey-Jonestimcod.es·Nov 20, 2024Keeping on top of changes across multiple git repositoriesThis is a classic "I scratched my itch, hope it helps" story. I made a Github Gist out of it. I sometimes lose track of unpushed/uncommitted changes, across multiple projects / clients. To get a handle on this, I wrote this script called git-dirty an...Discuss·80 readsGitHub
esProc Desktopesproc-desktop.hashnode.dev·Nov 20, 2024#100 — Deduplication of Row-Based Data — by Key ColumnProblem description & analysis: There is a data table: Task: Find out the data that are not duplicates and the first duplicate data in the Name column. Solution: Use SPL XLL and enter the following code: =spl("=E(?1).group(Name).(~(1))",A1:D7) The ...Discuss·10 likesexcel
Salawu Ahmedasally.hashnode.dev·Nov 20, 2024Understanding the Filter Method in JavaScript: A Simple GuideHello everyone, Welcome to code invasion, In this tutorial we will learn how the filter method in JavaScript works, The filter method in JavaScript is an array method that creates a sub array of elements that satisfies a given condition from an origi...Discusscoding
gayatri kumargeekee.hashnode.dev·Nov 18, 2024Shape Shifters: Understanding Polymorphism in JavaScript!Imagine a world where beings can take on multiple forms, like a shape shifter that can change its appearance but still retain its core identity. In JavaScript, polymorphism allows objects to behave similarly—taking on different forms (methods) while ...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·30 likesWeb Developmentjs