You can easily find GUI to accomplish following operations these days but here are some of the…
SQL Merge Statement & UPSERT Operation
The MERGE statement in Microsoft SQL Server allows you to perform multiple actions (such as insert, update,…
CTE (Common Table Expression) in SQL
CTE (Common Table Expression) is a feature in SQL that allows you to define a temporary result…
SQL Window Functions
SQL Window Functions are a feature of SQL that allow you to perform calculations across rows within…
How to implement TOTP to Laravel
To implement TOTP in Laravel, you can use a library such as "Google Authenticator" or "TOTP". Here…
Logic behind 2FA
Two-factor authentication (2FA) codes provide an extra layer of security for login systems by requiring the user…
How to access local MongoDB server from a Docker Environment
It is actually pretty easy. In my case I needed to reach from Laravel Sail to my…
How to use MongoDB with Laravel?
To use MongoDB as the database for a Laravel project, you can use a package called "jenssegers/mongodb".…
What is LINQ?
LINQ (Language Integrated Query) is a set of language extensions in C# and Visual Basic .NET (VB.NET)…
What is Gitflow?
Gitflow is a branching model for Git, a version control system used for software development. It's a…