AWS Neuron SDK is Amazon’s powerful tool for optimizing and running deep learning models on AWS Inferentia and Trainium chips. These chips are custom-built to deliver high performance and cost efficiency for machine learning workloads. Whether you’re training a model or deploying it to production, it simplifies the process and provides robust tools to get […]
Different cloud concepts you should know if you’re a developer
As a developer navigating the ever-expanding world of cloud computing, understanding key cloud concepts is vital to leveraging the full potential of cloud services. Whether you’re new to the cloud or looking to deepen your knowledge, let’s explore essential cloud concepts that every developer should be familiar with: Instances / Machines Instances, also known as […]
Unleash the Power of AWS: AWS Lambda vs ECS Fargate
When developing applications that require uninterrupted data consumption, choosing the right infrastructure is paramount for achieving optimal performance and efficient resource management. In the realm of cloud services, Amazon Web Services (AWS) offers two prominent options: AWS Lambda and ECS Fargate. In this article, we’ll delve into a comprehensive comparison of these services, helping you […]
What is the Differences Between API Gateway And CloudFront
When it comes to building scalable and reliable web applications, API Gateway and CloudFront are two of the most powerful tools at your disposal. Both of these services are part of the Amazon Web Services (AWS) ecosystem, and while they share some similarities, they are designed to solve different problems
How I built a GhostScript Layer in AWS Lambda
Welcome to Ghostscript, a powerful tool for compressing, editing, and manipulating PDF files! With Ghostscript, you can easily build a Dockerfile from source to create the binary you need. Let us help you optimize your PDF files with Ghostscript’s robust features. The Dockerfile Whether you’re a developer looking to integrate Ghostscript into your application or […]
“Unlocking the Power of Serverless Computing: Top AWS Lambda Design Patterns”
AWS Lambda is a serverless computing service that lets you run code without provisioning or managing servers. It is a highly scalable and cost-effective solution for running functions in response to events. With AWS Lambda, you can design and build applications that are event-driven, and can run and scale automatically.Design patterns are a way to […]
Build your RESTful API with AWS right NOW
Hello everyone, I am so happy to introduce you today the coolest way to create an endpoint! Whatever you want to save files or data in a Database, this post will show you how to easily make a Restful API quickly and why not a full project. But first, let’s introduce you some important points […]
Files in S3 AWS Python Lambda, how to handle them?
Do you know that Lambdas are made to process files? So, reading and writing, compressing and extracting data from s3 Bucket are the main uses. So, handling files with python lambda is really easy and helpful to handle files in s3
How to hash a file in a bucket S3 using AWS Lambda
Calculating the file hash of an uploaded file in an S3 bucket, it’s a big deal. Especially, when it passes through an API Gateway, this will encode the file to base64. We can get the ETag generated by AWS to check file integrity, but this is not a secure solution, because AWS may change hashing […]