Siddharthsiddharthqs.com·Feb 4, 2025ImmutabilityImmutability is a cool concept in programming that C++ questions with "why?" It means that once you create a variable or object, you can't change its state. This idea somewhat opposes object-oriented concepts, yet it's crucial for writing clean, main...RustRust
ravindra kambleravindra05.hashnode.dev·Jan 28, 2025JavaScript Data Types in Web Technology for BegginersAs we all know, data is the backbone of everything. Data can exist in various forms, and with the help of programming languages, we can perform multiple operations on it. The behavior and structure of these operations may vary depending on the type o...JavaScript
Subhanshu Mohan Guptablogs.subhanshumg.com·Dec 21, 2024The 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...10 likes·55 readsAI 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...PythonPython
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