Subhanshu Mohan Guptablogs.subhanshumg.com·20 hours agoThe Future of DevSecOpsIn today’s hyper-connected world, building software often involves diverse, distributed teams collaborating across multiple organizations. Traditional DevSecOps pipelines rely on centralized tools and services, which can introduce single points of fa...AI powered DevOpsDevSecOps
Lim Woojaejaylog.hashnode.dev·Dec 15, 2024[Python] How to Create Immutable Dictionaries & Sets in Python?What are Immutable Dictionaries & Sets? Before reading this article, you should have an understanding of mutable and immutable types in python. You can look at my article that explains them pretty easy: [CS fundamentals] Mutable vs. Immutable. Dictot...Python
Lim Woojaejaylog.hashnode.dev·Dec 1, 2024[CS Fundamentals] Mutable vs. ImmutableIntroduction This article introduces concepts of mutability and immutability in computer science. It’s very important to understand it because it’s going to help you to solve errors in the future. Especially, beginners often face situations such that...CS fundamentalsimmutable
Oluwatosin Oghenewaire Thompsongoninja.hashnode.dev·Nov 18, 2024Part 2: Understanding Basic Data Types in Go - Working with Strings in Go: Manipulation, Concatenation, and Unicode SupportStrings are a fundamental data type in Go, and they are crucial for any programming language as they allow you to work with text data. In Go, strings are immutable sequences of bytes, meaning that once a string is created, it cannot be modified. Howe...Beginner's Guide to Golang: Start Coding with Confidence Go string
Darshit Anjariadarshitanjaria.hashnode.dev·Nov 1, 2024Immutable Data Structures in JavaScript: Unlocking Consistency and PerformanceIntroduction In modern JavaScript development, especially in large-scale applications, data consistency and reliability are essential. One way to achieve this is by using immutable data structures, which prevent changes to data once it has been creat...JavaScript
Sourabh Mishratecharchnotes.hashnode.dev·Oct 5, 2024Implementing Ledger Database using SQL Server 2022Have you ever wondered - how you can you be absolutely sure that no one has tampered with your data after it's been stored? Or how you can create a database that provides an unchangeable history of every update, insert, or delete operation? With SQL ...ledger database
Atul Bansalatulbansalk.hashnode.dev·Oct 3, 2024🚀 Transforming Mutable Objects to Immutable in JavaScript 🚀In JavaScript, the ability to control the mutability of objects can be a game-changer. Let's explore three methods to make objects immutable, ensuring they remain unchangeable: const person = { firstName: "atul", lastName: "bansal"}; 🔒 Object.se...immutable
고라니드로koranidro.hashnode.dev·Aug 28, 2024[React] useState === 상태?React의 함수형 컴포넌트에서 상태를 사용하는 방법이라고 하면 무엇이 먼저 떠오르시나요? 아마 많은 분이 useState를 가장 먼저 떠올리실 것 같습니다. useState는 이름에서도 알 수 있듯이 상태를 관리하는 대표적인 방법입니다. 하지만 이것이 유일한 방법은 아닙니다. 이야기를 진행하기에 앞서 우선 상태에 대해 이해할 필요가 있어 보입니다. 상태란 무엇인가 상태는 특정 지점에 위치한 정보를 말합니다. 감이 잘 안 오시나요? 울타리를 예...React
Merge Simpsonblog.letsdev.me·Aug 26, 2024Java의 상수 필드는 꼭 static final로 선언할까?라는 제목서론 ✅ 자바에서 상수 필드를 선언할 때 static final을 세트처럼 자주 사용합니다. 이 조합은 워낙 빈번하게 등장해서 마치 관례로 보일 정도입니다. // 어느 클래스의 static 멤버 public static final String EXAMPLE = SomeClass.getPropertyValue("example"); ✅ 자바 인류는 어쩌다 이 표기를 습관적으로 쓰게 되었을까요? 자바 인류가 어쩌다 이 표기를 습관적으...1 like·31 readsJava
Adedeji Agunbiadeluccithedev.hashnode.dev·Aug 24, 2024Deep Dive into Functional Programming in JavaScript: Higher Order Functions and ImmutabilityFunctional programming has gained significant traction in the JavaScript world. Well Known for improving readability, reducing bugs, and making code more predictable, functional programming centers around pure functions, immutability, and avoiding sh...Functional Programming