About Me

I have decades of experience is software development using .Net Technologies, PHP and wordpress. I love coding and discovering new tech.

Author: Kaustav Halder

AI, Code Improvement, Coding

GitHub Codespaces: Making Coding Accessible, But Beware of the Limitations

Posted on June 27, 2024  - By Kaustav Halder - 0 Comments

GitHub Codespaces is a cloud-based development environment that has taken the coding world by storm. By providing a preconfigured, containerized environment, it allows developers to start coding within seconds, irrespective of the machine they are using. But as with all...

Database Management

De-Dupe Your Database: Mastering MySQL’s Tools for Duplicate Removal

Posted on May 10, 2024  - By Kaustav Halder - 0 Comments

Welcome, fellow data enthusiasts! Today, we’re going to tackle a common yet pesky problem that plagues many a database: duplicate records. Fear not, for I shall guide you through the process of removing these unwelcome guests from your MySQL tables...

Server Management

Fix Ubuntu Terminal Tab Completion Not Working (Easy Guide)

Posted on April 23, 2024  - By Kaustav Halder - 0 Comments

Feeling frustrated with missing tab completion suggestions in your Ubuntu terminal? Don’t worry, this guide will walk you through a series of troubleshooting steps to get things back on track. 1. Install or Reinstall the bash-completion Package Tab completion functionality...

AI, Code Improvement

The Secret Weapon of Top Developers: It’s Not What You Think (Hint: It’s AI)

Posted on April 15, 2024  - By Kaustav Halder - 0 Comments

The coding landscape is changing. Discover the powerful AI tools that streamline your development process and give you an edge in the industry.

Javascript

Understanding let and var in JavaScript: A Guide to Modern Variable Declaration

Posted on April 8, 2024  - By Kaustav Halder - 0 Comments

In the ever-evolving world of JavaScript, how we declare variables has undergone a significant shift. The traditional var keyword has been joined by the more refined let (and its companion const). Understanding the distinctions between these keywords is crucial for...

Linux, Nginx, Wordpress

Increasing WordPress File Upload Size by Updating php.ini File for PHP-FPM on Nginx Server

Posted on April 3, 2024  - By Kaustav Halder - 0 Comments

Many WordPress users encounter frustration when trying to upload large files to their websites, only to find that they exceed the default file upload size limit. However, fear not! There’s a straightforward solution to this problem: updating the php.ini file...

AI, Code Improvement

AI Coding Assistant GitHub Copilot – Supercharge Your C# Coding

Posted on March 28, 2024  - By Kaustav Halder - 0 Comments

If you’re a C# developer, I’ve got something that’s going to blow your mind: GitHub Copilot. This amazing AI-powered tool is like having a coding wizard sitting right next to you, whispering brilliant ideas and code snippets directly into your...

Javascript, Wordpress

Fix WordPress Contact Form 7 on Elementor Popup

Posted on June 16, 2023  - By Kaustav Halder - 0 Comments

Elementor is a popular editor solution for Workpress. But one difficulty that I have faced is for some reason, Contact Form 7 Ajax does not work on Elementor Popups. Below is the fix for this. <script type=”text/javascript”> $(document).on( ‘elementor/popup/show’, function()...

Coding, Javascript

Saving data to browser local storage using javascript

Posted on September 14, 2022  - By Kaustav Halder - 0 Comments

How to save data on browser local storage for your HTML Website? Overview As website developers, every now and then we come across instances when we need to store some information and want it to persist through out the site....

AWS

How to enable Global CORS on AWS S3

Posted on August 8, 2022  - By Kaustav Halder - 0 Comments

Introduction AWS S3 is the cloud storage service awailable on AWS. You can store almost any file on S3 and have the option to keep it private or publicly accessible. You can even store a static website on it and have...