Credits to https://www.pexels.com/@minan1398/ Python How to measure requests per second with locust in python? There are quite simple to use tools that allow us to audit the number of requests per second (rps) that a website …
Credits to https://www.pexels.com/es-es/@jorge-jesus-137537/ Javascript Facebook's plugin chat how to decrease its impact? The facebook chat plugin allows you to add a page button that connects to the chat of a facebook fanpage. But, as you …
credits https://www.pexels.com/@cottonbro/ Python Artificial intelligence OCR with tesseract, python and pytesseract Python is super versatile, it has a giant community with libraries that allow you to create neural networks from …
credits https://www.pexels.com/@nguy-n-lam-196145/ Fastapi Databases Python tortoise ORM integration with FastAPI One of the things I like most about Django is its ORM; one of the reasons why this framework is so popular . On the …
Credits to https://www.pexels.com/@nic-livefeedpro/ Django The django admin panel and its customization One of the best features of django is that it has the django admin panel, a ready-to-use administration panel, with …
Credits https://www.pexels.com/es-es/@airamdphoto/ Django Caching in Django REST Framework using memcached To use the cache in django, just follow three simple steps: Install a caching system, be it redis, memcached, etc. Set …
Credits to https://www.pexels.com/@cottonbro/ Django Periodic Tasks with Celery and Django In addition to creating asynchronous tasks, celery also allows you to create periodic tasks, which are executed from …
Credits to https://www.pexels.com/@cottonbro/ Django How to use Django Framework asynchronously using Celery Celery, in combination with Django serve to solve a problem: the lack of asynchrony in our application. Sending an …
credits https://www.pexels.com/es-es/@sean-manning-214956/ Django Login using Django Rest Framework DRF Almost all complex Django applications need views for Login, Logout, reboot and password change, as well as user …
Credits https://www.pexels.com/es-es/@khoa-vo-2347168/ React React memo, useMemo and useCallback to avoid React renderings We can use react memo and useCallback to prevent a component from being rendered, uselessly, multiple times by …