JWT vs Opaque Token: Key Differences and Use CasesIn distributed systems, web apps, and APIs, tokens are frequently used for authorisation and authentication. JWT (JSON Web Token) and…2d ago2d ago
Generate the SQL query from SQLAlchemy objectsThere are simple ways to generate the SQL query from SQLAlchemy objects without executing it by using the str() function or the…Dec 15Dec 15
Laravel Collections: Uses of transform() function with real-life examplesIn Laravel, the transform() function is part of the Collection class. It allows you to modify each item in a collection. This function is…Dec 7Dec 7
Published inDev GeniusA simple program to check all elements of a list exists in another list in PythonThere are various methods to determine whether every entry in one list is present in another. This Python program determines if every entry…Dec 6Dec 6
Understanding the Error: DetachedInstanceError in SQLAlchemyThe DetachedInstanceError in SQLAlchemy often occurs when trying to access or update an attribute on an object that’s not currently bound…Nov 9Nov 9
Cultivating a Fearless MindsetFear is an almost universal experience, affecting us from childhood to every facet of adult life. This fear covers everything from personal…Nov 7Nov 7
Log requests and responses to a file in FastAPILogging requests and responses of an API is a good practice that benefits both development and production environments in numerous ways.Nov 5Nov 5
The ways of using multiple conditions with filter() in SQLAlchemyThe filter() method in SQLAlchemy can be used with several conditions to execute queries that choose data according to several criteria. In…Oct 22Oct 22
Reducing overstimulation and rebalancing the brain’s dopamine systemWe live in a fast-paced, technologically-driven society where distractions surround us. These diversionary activities offer us instant…Oct 20Oct 20
Different ways of calling API in JavaScriptJavaScript helps developers for both frontend and backend work and calling API in JavaScript is one of the main ways for interacting with…Mar 18, 2022Mar 18, 2022