Thomas BurkhartProblog.burkharts.net·Sep 22, 2024Understanding the Problems with Dogmatic Programming AdviceOkay, this will be a pretty opinionated article, but it's a topic I feel strongly about. I grew up with Object-Oriented Programming (OOP), and since then, I've thought of objects when designing software systems. At the core of OOP is the idea that ob...Discuss·4 likes·307 readswatch_it
Subhanshu Mohan Guptablogs.subhanshumg.com·Sep 16, 2024FeaturedRansomware Resilience: DevSecOps Strategies for Preventing and Recovering from Cyber ExtortionIntroduction: The Ransomware Threat Ransomware attacks have evolved into one of the most significant threats to digital infrastructures worldwide. With high-profile incidents such as the Colonial Pipeline hack, the devastating consequences of ransomw...Discuss·44 likes·107 readsAI powered DevOpsDevSecOps
Moniquectrlaltmonique.hashnode.dev·Sep 11, 2024Creating Immutable Objects in JavaScriptEver copied an object, tweaked a property, and then realized both the OG and the copy got changed? Yeah, same. Objects stand as the cornerstone of JavaScript, forming one of its six primary types. By default, objects are mutable — their properties an...Discussimmutable objects
Akshat Soniakshatsoni.hashnode.dev·Sep 8, 2024Understanding Array Mutation in Redux: A Common Pitfall with useSelectorWhat is the Problem? When working with Redux, we often deal with immutable data structures to maintain the predictability of the application state. However, recently I encounter issue is unintentionally mutating the state, especially when handling ar...Discusslearning
Piyush kantforByte by Byte Learningbytebybytelearning.hashnode.dev·Sep 8, 2024Write Cleaner JavaScript with Functional Programming & ImmutabilityIntroductionWriting clean, maintainable code is one of the most important skills for any developer, and functional programming (FP) in JavaScript offers an elegant way to achieve this. By embracing core functional programming principles and leveragin...DiscussJavaScript
Merge Simpsonblog.letsdev.me·Aug 26, 2024Java의 상수 필드는 꼭 static final로 선언할까?라는 제목서론 ✅ 자바에서 상수 필드를 선언할 때 static final을 세트처럼 자주 사용합니다. 이 조합은 워낙 빈번하게 등장해서 마치 관례로 보일 정도입니다. // 어느 클래스의 static 멤버 public static final String EXAMPLE = SomeClass.getPropertyValue("example"); ✅ 자바 인류는 어쩌다 이 표기를 습관적으로 쓰게 되었을까요? 자바 인류가 어쩌다 이 표기를 습관적으...Discuss·1 like·30 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...DiscussFunctional Programming
Daniel Donspillcode.hashnode.dev·Aug 15, 2024Immutable Data Structures in JavaScript: Embracing Change Without Changing the PastIn this universe of JavaScript, immutability is a concept that plays a critical role in writing predictable and bug-free code. Often times, these are concepts that shows how attentive you are as a software engineer that strives to write great code wh...Discuss·11 likes·53 readsJavaScript
Zeeshan Safdarzeeshansafdar.hashnode.dev·Aug 15, 2024JavaScript Interview Questions: Mutability vs. ImmutabilityToday I want to share some interview questions that were asked to me related to immutable and mutability concepts in javascript. If you're prepping for a JavaScript interview, this might be helpful! 💡 1 - Question: What is mutable and immutable in J...Discuss·2 likesJavaScript
Pratik Upretiblog.pratikupreti.tech·Aug 2, 2024Understanding String Immutability in Java: A Comprehensive GuideIn Java, strings play a crucial role in most applications, ranging from simple text manipulation to complex data processing. One of the fundamental characteristics of strings in Java is their immutability. This blog delves into what immutability mean...DiscussA Comprehensive Guide to Javastring