How to Rate Limit HTTP Requests in Go application
There is a library like Tollbooth has a good range of rate limit features. But if you want something simple and lightweight – or just want to learn – it's…
Favourite tutorials for developers
There is a library like Tollbooth has a good range of rate limit features. But if you want something simple and lightweight – or just want to learn – it's…
In this article, we’ll explore the fundamentals of rate limiting, different types of rate limiting algorithms, and several techniques and libraries for implementing rate limiting in Go applications. By the…
Building a great application begins with its structure. An app’s structure sets the tone for the development of the application, and it is important to get it right from the…
This article will explain for you how the GOROOT and GOPATH works before and after the version 1.11. It will show how GOPATH and GO111MODULE works.
Often we need a different version of go according to specific projects. There are different options we have like we can use Docker for our specific project’s need(we can talk…
Gathering large amounts of data from websites manually is inefficient and unfeasible but you can use appropriate tools to help you. Let's learn how to use Playwright in Python to…
Logging is a crucial component in the software life cycle. It allows you to take a peek inside your application and understand what is happening, which helps you address the…
Are you ready to take your AI skills to the next level? This blog post is your roadmap to building your own GPT (Generative Pre-trained Transformer) using OpenAI’s Assistants API.…
Decorators are an extremely useful feature in Python language that allows programmers to change the behaviour of a function without changing the function. In this post, we are going to…
Managing your Python application’s environment variables can be a challenge, especially if you’re dealing with sensitive information like API keys or database credentials. This is where python-dotenv comes into play.…