About Me

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

All Blog Posts

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...

Linux, Server Management

How to setup HTTPS on Ubuntu Server running Nginx for Free

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

 Introduction These days browsers are taking up security more seriously and they actually should. Using a bad browser is as good as inviting a hacker into your home. A great step which most big companies like google are taking is...

Linux, Server Management

Connect to AWS Ec2 Instance using Terminal on Mac

Posted on July 1, 2022  - By Kaustav Halder - 0 Comments

One of the best things I love about the MAC is the number of tools that are inbuild. One of them is the Terminal. Ya windows also have the Power Shell but if you have used the terminal on the...