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…Dec 25, 2024Dec 25, 2024
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 15, 2024Dec 15, 2024
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 7, 2024Dec 7, 2024
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 6, 2024Dec 6, 2024
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 9, 2024Nov 9, 2024
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 7, 2024Nov 7, 2024
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 5, 2024Nov 5, 2024
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 22, 2024Oct 22, 2024
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 20, 2024Oct 20, 2024
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