Implementing Zero Trust Architecture on AWS: Best Practices for Enhanced SecuritySep 16, 2024·5 min read
From JSON to Lean: The Power of TOON for LLMsIntroduction In LLM applications, token usage = cost. Traditional JSON is verbose — it repeats keys, uses braces and quotes, and adds a lot of syntactic noise. TOON (Token-Oriented Object Notation) solves this by providing a compact, schema-aware for...Nov 20, 2025·5 min read
Serverless WebSocket Communication on AWSIntroduction WebSocket communication enables real-time, bidirectional communication between clients and servers over a single, long-lived connection. AWS API Gateway, combined with AWS Lambda, provides a powerful serverless solution for managing WebS...Apr 8, 2024·8 min read
Streamlining AWS Lambda Functions with DockerIntroduction In computer stuff where you don't need to worry about managing servers, AWS Lambda is super strong. But to make it work really well, you often have to package your code in a certain way that Lambda likes. That's where Docker comes in. Do...Mar 11, 2024·3 min read
Monitoring Memory Utilization on AWS EC2 InstancesIntroduction Understanding and monitoring memory utilization is crucial for maintaining optimal performance and stability in your AWS EC2 instances. While AWS provides various default metrics through CloudWatch, memory utilization is not among them. ...Dec 17, 2023·3 min read
Choosing the Right Messaging Service for Your Architecture: AWS SQS, AWS Kinesis and Apache KafkaChoosing the right messaging service is a critical decision that can significantly impact the performance, scalability, and cost effectiveness of your applications. In this blog post, we'll explore three popular messaging services: AWS SQS, AWS Kines...Nov 20, 2023·3 min read
Building Efficient AWS Lambda Functions: Tips and TricksIn today's serverless world, AWS Lambda has become a widely used solution for building scalable and cost-effective applications. By leveraging the power of AWS Lambda, developers can focus on writing code without worrying about infrastructure managem...Jul 17, 2023·7 min read
Best way to create and utilize python project structureOver the past few years python language has been steadily growing in popularity and its use in data science and automation has been on the rise. Before deep diving into the development of python application, let's understand the project structure. Wh...Apr 4, 2023·4 min read