ananto.hashnode.devCreate your own blazing fast mock server with just a JSON file!TLDR; https://github.com/Ananto30/mocker The idea is really simple. Just create high-performing 🚀 mock servers using a json file that maps path to status code and response body. This can be used to benchmark your microservices, that are dependant on...May 29, 2021·1 min read
ananto.hashnode.devMongoDB Atlas Search: Super Simple, Very PowerfulSearch functionality is really important to modern web apps. It is also important that the search results should be relevant and deliver the user’s query. But it’s hard to make such a search working and also none of the Databases support that kind of...Nov 4, 2020·8 min read
ananto.hashnode.devHow to add some badges in your git readme (GitHub, Gitlab etc.)While I published this repo I was looking for some badges to add in my readme. And found some interesting services worth sharing. The most amazing place to make your badges is the https://shields.io. But I will explain each category to use them in th...Jun 4, 2020·3 min read
ananto.hashnode.devSingleton in PythonThis will be the easiest of all creational patterns. The concept is to create an instance of a class only once (regardless of how many times we call the class) and use that instance whenever we want. Let’s implement is fast on Python — class Singlet...Mar 22, 2020·2 min read
ananto.hashnode.devFactory Pattern & Abstraction in PythonPython seems a very interesting language, where everything is on your hand. You can write code that works or write beautiful code with the popular and beloved concepts like SOLID, clean code and design patterns. I won’t make this post long and I will...Mar 20, 2020·4 min read