Jyotiprakash Mishrablog.jyotiprakash.org·Nov 19, 2024Introduction to Functional Programming in JavaFunctional Programming and Its Growing Popularity Over the years, software development has continuously evolved, with each paradigm addressing specific challenges. Functional programming, an approach that treats computation as the evaluation of mathe...Discussmethod reference
Gedion Danielblog.gediondaniel.dev·Nov 16, 2024Building APIs with AWS Lambda: My Journey from Traditional Servers to Serverlesslet me tell you something interesting! Remember those days when setting up an API meant renting a whole server, installing everything manually, and praying your server doesn't crash? Chai! Those days were not funny at all. But today, I want to share ...DiscussAWS
Aditya Gadhaveadityag7678.hashnode.dev·Nov 15, 2024Understanding Lambda: A Step-by-Step Guide to ImplementationWhat is Lambda? Lambda is used to encapsulate Data centres, Hardware, Assembly code/Protocols, high-level languages, operating systems, AWS APIs. Lambda is a compute service where you can upload your code and create the Lambda function. Lambda tak...DiscussAWS
Sadra Yahyapourblog.imsadra.me·Aug 10, 2024Lambda: The Single-line FunctionLambda functions are an essential feature in Python, allowing developers to create small, anonymous functions without formally defining them using the def keyword. These functions are typically used in situations where a small, throwaway function is ...Discuss·316 readsPython
Francisco Gutierrezfreefrancisco.hashnode.dev·Aug 9, 2024Function Composition and Currying In PythonComposition and currying are features of functional programming languages that can be very convenient in some situations. Haskell supports composition and currying directly, so as a spoiled Haskeller, I don't want to do without those luxuries when I ...Discuss·780 readsPython
RAKESH DUTTAdailydoseindevops.hashnode.dev·Jul 9, 2024Start with AWS 📈 📉 LAMBDA !!AWS Lambda is a serverless service that allows us to run code without managing servers. It responds to events like HTTP requests or file uploads, scales automatically, and charges us only for the compute time used. First thing that when we remember o...DiscussAWS Buddy to BroLambda Expression
Emeron Marcelleemerondomain.hashnode.dev·Jun 16, 2024Mastering Python Lambda Expressions: A Guide with ExamplesPython is a versatile programming language known for its readability and simplicity. One of its powerful features is the lambda function, an anonymous function expressed as a single statement. In this blog post, we'll delve into what lambda functions...Discussfilter() python
André Felipe Costa Bentobentodev.hashnode.dev·Jun 7, 2024Java Streams and Lambda Expressions: An In-Depth ExplorationWe have already talked about Streams and Lambda expressions in JAVA on other posts, but on this one, I'd like to talk about it again on more specific topics related to some more common features and functions used by our community. In this article, we...DiscussJava
Chetan Dattachetan77.hashnode.dev·May 23, 202412 Java - Interfaces (Functional & Lambda)What is Functional Interface? If an interface contains only 1 abstract method, that is known as Functional Interface. Alos known as SAM interface (Single Abstract Method). @ FunctionalInterface keyword can be used at top of the interface(But its o...Discuss·58 readsJavafunctional interfaces
André Felipe Costa Bentobentodev.hashnode.dev·May 20, 2024Lambda Expressions in JavaIntroduction Lambda expressions were introduced in Java 8, released in March 2014, to support functional programming by enabling the creation of anonymous functions. They simplify the implementation of interfaces with a single abstract method, known ...DiscussLambda Expressions in Java