PinnedDocker Image Building , Tagging And Publishing With Github ActionsHi guys, let's talk about how to automate the process of building and deploying Docker images, you can utilize GitHub Actions. This workflow allows you to: Build a Docker image from your code. Tag the image with a version number, following semantic...Mar 26, 2024·4 min read
Useful VS Code ExtensionsHi all, most of the developers use VS Code as their IDE. Today let’s see some useful extensions for VS Code. Highlight Matching Tag The first extension is the Highlight Matching Tag. When you are writing HTML code, sometimes you want to find the c...Mar 31, 2024·4 min read
Logitech G502 With WebStormLogitech G502 Hero is a high-performance gaming mouse with 11 programmable buttons. Logitech G HUB software is used to program these buttons as per our needs. If you’re a developer, you can use this mouse to improve your productivity. Today, I am goi...Mar 30, 2024·4 min read
How To Choose The Right UI Component LibraryWe use UI Component Libraries in our projects to give a nice look to the user interface. Rather than developing everything from scratch, it is very efficient to use a UI component library. It will speed up our development and also help to keep the co...Mar 29, 2024·4 min read
PII Masking With Python Using Machine Learning ModelPII (Personally Identifiable Information) masking is a technique used to hide sensitive data from the public. We can employ a machine learning model for this purpose. Once, in my project, I had to send a text to an LLM (Language Model) and retrieve t...Mar 28, 2024·5 min read
FastAPI Role Based Access Control With JWTFastAPI is a modern, high-performance, web framework used to build APIs with Python 3.8+. It is one of the fastest Python frameworks available. In every framework, authentication and authorization are important sections of an API. In this article let...Mar 28, 2024·8 min read
Entity Framework Core Audit Trial With Audit.NetWhat is Audit Trail? Audit trail is a record of all user activities within an application. It captures details like who accessed the application, what changes were made, and when they occurred. By maintaining an audit trail, developers can track data...Mar 27, 2024·3 min read