Niklasblog.niklas.tech·Aug 6, 2023IntelliJ and Java on Immutable LinuxImmutable Linux Distributions are the future of the Linux Desktop. Simply deploying an image and keeping the core filesystem read-only has many advantages, including increased reliability and decreased breakage from system packages. It also presents ...Discuss·88 readsIntelliJ IDEA for linux
Hooman PegahmehrforApplication Supportappsupport.academy·Aug 1, 2023Tiny PowerShell Project 1 - Arrays are immutableUsing PowerShell, I am sure you've found yourself in situations where you need to use an array, but did you know that arrays are immutable? When we say that something is "immutable" in programming, we mean that its state or value cannot be changed af...DiscussTiny PowerShell ProjectsPowershell
Corina Murgcorina.hashnode.dev·Jul 24, 2023Immutability in ReactLet's dive into the world of React and unravel the following mystery: why updating state feels like we're constantly moving into a new home instead of just rearranging our old furniture. 🏠 In this post, I will focus on two things: ✅ What it means to...DiscussReact
Eresh Ktecheresh.hashnode.dev·Jul 13, 2023How to Create Immutable class in JavaIntroduction We will learn about how to create immutable classes in Java. Immutable means once we create the object is created and initialized the state of the object cant be changed. For example in the Java world String class is an immutable object ...DiscussJava
Husain Shahid Raohusain3012.hashnode.dev·Jun 10, 2023Getting Started with Functional Programming Using ElixirI recently had a project where I had to use Elixir for embedding programming. That's a really odd choice for embedding programming, but nonetheless, it helps me understand the power of functional programming and the multithreading capabilities of Eli...Discuss·11 likes·51 readsElixir
CS Toracstora.hashnode.dev·Mar 22, 2023Functional Programming In JavaScript for BeginnersThis is the first of a five-part series What is Functional Programming? Functional programming is a style of creating programs that: Encourages the use of functions that are self-dependent and do not modify or depend on external values outside of th...Discuss·3 likes·144 readsJavaScript
Dwaipayan Sardardsardar.hashnode.dev·Feb 18, 2023Is spread operator for object cloning in javascript always immutable?We all use spread operator in javascript to create clone(shallow copy) of object or array. As we create shallow copy using spread operator, any change in cloned copy must not change in the original copy of the data. Let us understand with one example...Discuss·91 readsJavaScript
RareSkillsrareskills.hashnode.dev·Feb 14, 2023What makes blockchain immutable?What makes blockchain immutable? Note: This article is intended to be understandable by non-technical readers, to gain a very technical understanding, refer to our blockchain bootcamp after reading this article. Contrary to popular belief, blockchain...Discuss·27 readsBlockchain
OneUttershijklmnop.hashnode.dev·Dec 24, 2022An introduction to functional programmingFunctional programming is a programming paradigm that focuses on the use of functions to solve problems. In contrast to imperative programming, which relies on changes to mutable states, functional programming emphasizes the use of immutable data and...Discuss·119 readsGeneral Programming
Paul-Sebastian Manolepaulsebastian.codes·Nov 13, 2022Immutable TypeScriptI'm mainly a C# programmer at the moment, and when records were introduced in C# 9 (and then record structs and record classes, later in C# 10) I was ecstatic. Finally, a simple way to declare immutable objects! But now I am learning TypeScript since...Discuss·52 likes·3.5K readsLearning TypeScriptDesign Patterns in TypeScript