Building a Simple CLI Task Tracker in Python
Although my expertise is mostly in Java, I’ve worked with Python for AWS lambda development and I have spent some time learning the fundamentals and building some utility scripts for practice. But...
Although my expertise is mostly in Java, I’ve worked with Python for AWS lambda development and I have spent some time learning the fundamentals and building some utility scripts for practice. But...
I’ve been using claude code for development on side projects for a while and I started experimenting with claude’s mobile app. There are two ways I’ve followed to develop with claude code from the ...
Use case You have a large number of files, and you’re asked to rename them in some sort of order or naming scheme. The larger the number of files, the more time and effort required to achieve the e...
HTTP (Hypertext Transfer Protocol) is the foundation of web communication between client and server. It follows a request-response model where the web browser (chrome, firefox, etc.) - acting as th...
A module in python can refer to a file containing reusable code. A library is a collection of modules. It can either be imported from an external provider or pre-packaged with Python installation. ...
Using Python for everyday uses is very useful as it’s one of the easiest programming languages to work with, not only because of the clear, readable syntax but also of the wide range of available l...
Requests library or module is one of python’s most widely used libraries for making HTTP requests. It provides an intuitive API that supports all major HTTP methods like GET, POST, PUT, DELETE, wit...
Deep focus is one important subject I’ve been interested in since I learned about the ‘Deep Work’ book. I’ve read the book (haven’t finished it though) and my interest grew as I agree with the prem...
Photo by Bernd 📷 Dittrich on Unsplash String is one of the most widely used classes in Java. It’s used with user input, logging, communication and so on. As a way to optimization, Java introduced ...
Photo by Kevin Ku on Unsplash Imagine working on one or multiple java projects on the same machine, each requiring a different Java version. Typically, you would need to manually download installe...