Vedant Garghackkotlin.hashnode.dev·Jan 12, 2025Exploring Kotlin Functions: Key Concepts and ExamplesIntroduction Functions are a set of statements designed to perform a specific task and are clubbed under one block for easier usage, and improved code readability. Functions are declared using the fun keyword in Kotlin : fun hello1(){ //keywo...1 likeKotlin
Indrajeet Giramcodewords.hashnode.dev·Jan 10, 2025Exploring Different Types of Programming ParadigmsProgramming paradigms are fundamental approaches to designing and structuring code. They define the way programs are written, structured, and organized. These paradigms help developers think about and solve problems in different ways. Understanding t...Definition's SimplifiedFunctional Programming
Daniel Beskinblog.daniel-beskin.com·Jan 7, 2025Random Scala Tip #697: Avoid Anonymous Functions as DependenciesThe Problem Imagine that you're building an app and somewhere in your code you write something like this: class DoFinanceStuff(cc: CreditCardService) def grabClientMoney(card: CardData) = val amount = // ... // ... cc.processPayment(...1.0K readsRandom Scala TipsFunctional Programming
Amin Khansariakhansari.tech·Jan 7, 2025F# features I loveFrom 2018 to 2023, I worked full-time with F#, contributing to companies with revenues up to $3 billion and working on critical codebases reaching 100k lines of code. Here’s my feedback on why I enjoy this language so much. Each F# code example is pa...1 like·497 readsprogramming languages
Kevin DenverforSoftware Engineering Cornersoftware-engineering-corner.zuehlke.com·Jan 6, 2025Refactoring Legacy Code using Tiny Types and Data Oriented Programming in JavaLegacy systems are often procedural and rely heavily on mutable state, which makes them difficult to maintain and extend. This reliance on mutable data structures can lead to issues like unintended side effects and bugs, especially when several parts...69 readsFunctional Programming
Siddhesh Agarwalsiddhesh2003.hashnode.dev·Jan 5, 2025The Pointlessness of FP vs OOP DiscussionsIn the world of software engineering, discussions about different programming styles are pretty common. The clash between Object-Oriented Programming (OOP) and Functional Programming (FP) often takes centre stage. Each camp claims its approach is the...Object Oriented Programming
Sumantprovick.hashnode.dev·Jan 5, 2025How to start Full StackWhat you should know before starting full stack The only thing which you require is the time to learn and patience to sit and study If you are even a complete beginner you can follow and start this course Where to Post our learning: The platform w...1 likeHTML5
Avez Qureshiavezqureshi14.hashnode.dev·Jan 4, 202510 Python functions you must knowYou might already be familiar with some Python functions listed here, but you're sure to discover more useful details about them as you read on. Function 1: print() Function The print() function is often the first function you learn in Python, and it...Python
Arijit Sarkararijit83sarkar.hashnode.dev·Jan 1, 2025Java Lambda Expressions: Write Less, Do MoreLambda Expressions Lambda expressions, introduced in Java 8, are a concise way of expressing anonymous functions. Lambda expressions allow you to treat behavior as data, making it easier to pass it as arguments to methods or store it in variables. Th...Java
the_OldSchool_coderthe-os-coder420.hashnode.dev·Jan 1, 2025C++ Pattern Party: 22 Cool Designs by The_OS_Coder.Description: Dive into the fascinating world of pattern printing with C++! In this blog, we explore 22 diverse and creative patterns, ranging from basic shapes to intricate designs. Whether you're a beginner looking to strengthen your programming fun...DSA