I’ve been hearing the term “ChatGPT agents” buzzing around a lot lately. It sounds like something straight out of a sci-fi movie, and I’ve decided it’s time to figure out what all the fuss is about. So, I’m documenting my…
I was speaker at the Pregrad Cloud Computing event, my talk was about how you can utilise Cloud in your development lifecycle. How you can build and deploy your app in few step. Often developers varies, how this works? how…
Hi, Recently I was a speaker at “Pieces of Memory” hosted by Ali Mustafa. We talk about a lot of things realted to Large Language Models. We talked about how we can fine tune LLM models as per our needs,…
If you’re developing an Android app, you might have encountered a warning from the Google Play Console stating that your app must target Android 15 (API level 35) or higher. This is a standard requirement from Google to ensure that…
So, I did a thing. I went ahead and force-upgraded my machine to the developer preview of macOS 26. 🤪 My friends think I’m crazy for risking my stable setup, and honestly, a part of me agrees. But two specific…
Ever found yourself in a coding jam where you have a std::map<Key, Value> and you think, “This is great, I can find a Value from a Key super fast! 👌” But then, a moment later, you realize you need to…
Embarking on a mobile app journey with React Native, Expo, and Firebase is a common path for many developers, promising rapid development and powerful features. However, this journey can sometimes be stalled by cryptic errors. One of the most common…
You’re running a script, perhaps to update files in a SharePoint document library, and suddenly, your process grinds to a halt with the frustrating message: “Error: The file A has been modified by A on A.” This error is a…
You’ve encountered the frustrating TypeError: Missing parameter name at ${i}: ${DEBUG_URL} error in your Express.js application, and despite your best efforts, it persists. This often indicates an issue with how routes, particularly those with wildcards or parameters, are defined, especially…
You’re deep in a debugging session in Visual Studio, you stop the debugger, and suddenly all your open Chrome or Edge browser windows vanish. Not just the one your web app was running in, but every single one. Frustrating, right?…
The way developers access .vsix files for Visual Studio Code extensions has changed. Previously, downloading these files directly from the VS Code Marketplace website was straightforward. However, this option is no longer readily available, causing a hurdle for those needing…
When working with Natural Language Processing (NLP) models, particularly transformers like BERT, tokenization is a fundamental step. The “tokenizer.encode_plus” method from the Hugging Face “transformers” library is a popular choice for this. However, you might encounter errors, and this guide…
When building dynamic web applications with Angular, a frequent task is communicating with backend APIs. A common stumbling block developers encounter is attempting to send a JSON payload within the body of an HTTP GET request. This practice often leads…