MAADA Loukmaneloukmanemaada.hashnode.dev·15 hours agoUnlocking Java's Strategy Pattern: Streamline with Lambda ExpressionsIntroduction Hey there! Let's dive into design patterns—specifically, the Strategy Pattern. Once you get the hang of it, you'll start seeing it everywhere. The Strategy Pattern is all about defining a group of algorithms, wrapping each one up, and ma...20 likesJava
Florian Fuchsblog.flofuchs.com·16 hours agoAdding Custom Rate Limiting to Your AWS Lambda API Using a MiddlewareRate limiting an API or service is a common use case. But how can you do this for your AWS Lambda? API Gateway offers usage planes and quotas, so you can put a API in front of the lambda, but quotas have some downsides there: Usage plan throttling a...AWS
Andrew Dassandrewdass.hashnode.dev·Jan 22, 2025Python: How to use the Lambda FunctionOverview This article will explain what a Lambda function is in Python, the syntax for it and how to use it. What is the Lambda Function The Lambda function is an expression that can be customized to take the keyword “lambda”, variables and a stateme...Python
Abdulmateen Pitodiablog.abdulpitodia.com·Jan 22, 2025Part 3: Video transcoding using FFmpeg and AWS LambdaIn my previous article, I discussed in depth about the backend architecture which is hosted entirely on AWS, Part-2. In this article, I will talk more about the video transcoding process itself, how the videos are converted to a different format, for...Serverless Video TranscoderAWS
Dileep Kumar Nagamaws-insights-for-newbies.hashnode.dev·Jan 19, 2025Hosting a Static Website on AWS with S3 and CloudFrontIntroduction🌐 Hosting a static website has never been easier, thanks to AWS. With Amazon S3 for secure and scalable file storage and CloudFront for blazing-fast global delivery, you can create a robust website setup with minimal effort and cost. In ...aws lambda
Georgiana Gorganbitmaker.cloud·Jan 19, 2025Serverless Application with AWS Lambda and API GatewayProject Description This project involves developing a serverless application using AWS Lambda for backend logic, API Gateway for creating a RESTful API, and DynamoDB for data storage. Terraform scripts are used to manage the serverless infrastructur...My ProjectsAPIs
Morolakemorolakeanifowose.com·Jan 18, 2025NBA Game Day Notifications: Real-time Alerting System using AWS ServicesThis project from Ifeanyi Otuonye focuses on creating an alerting system to deliver scores from sports games. I decided to go with NBA games since I enjoy watching Jokic in Denver. The services used include AWS SNS, AWS Lambda, AWS Event Bridge, IAM ...29 readslambda
Shivam Sonishivtrent.hashnode.dev·Jan 16, 2025Building a GenAI Blog Generator with AWS Bedrock, Amazon S3, Lambda, API Gateway, and PostmanCreating a blog generator using AWS Bedrock, Amazon S3, AWS Lambda, API Gateway, and Postman combines the power of generative AI with serverless architecture. Follow this step-by-step guide to set up the system. Step 1: Create the Lambda Function La...AWS
Vishesh Ghulevisheshblog.hashnode.dev·Jan 15, 2025Day 47: AWS Lambda (Automatically Stopping EC2 Instances With AWS Lambda and EventBridge)🚀 Introduction Managing cloud costs efficiently is crucial for businesses, especially those with dynamic workloads. One of the simplest ways to optimize AWS spending is by automatically stopping EC2 instances during off-hours or non-peak times. Man...Devops
Vedant Gargandroidguide.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 for AndroidKotlin