PinnedHow to Write Clean Code….Have you ever suffered from the bad code? If you are a programmer you definitely have felt so.You may have totally messed up by your own bad code… The only valid measurement of code quality is WTFs/minute. Writing just only a well functioning code is not enough. It should be…Programming6 min readProgramming6 min read
PinnedHow to Change a Commit Message in Git…By this article , let’s see how to change a commit message in Git ..Sometimes due to the incorrect commit messages, you may have found yourself in a situation where you want to edit a commit message. 😩 Your commit may be a most recent or a very old one…Git4 min readGit4 min read
Apr 10, 2022Set up multiple Firebase environments in FlutterWhen building a mobile app, it is a good practice to configure our application for different development environments or release types. Most developers use separate environments such as, Dev environment — for development purposes. QA environment — for testing purposes. Production environment — for end-users. If you’re using Firebase in…Flutter8 min readFlutter8 min read
May 11, 2020Basic Operations on Images using OpenCVBy my previous article, I explained how to setup the environment to work with OpenCV ( link). So, now I will explain some basic operations we can do on images using OpenCV. First we will see how to load an image.Opencv Python5 min readOpencv Python5 min read
May 11, 2020Getting Started with OpenCVHow to setup the working environment OpenCV is a library of programming functions mainly aimed at real-time computer vision. It is a library used for Image Processing and mainly used to do all the operations related to Images. OpenCv can be used to : 1. Read and Write Images. 2…Opencv Python3 min readOpencv Python3 min read
Apr 20, 2020Managing HTTP Cookies in BallerinaBy this article, I am going to explain you how to manage HTTP Cookies using Ballerina language. If you are interested in using Ballerina language into your project and need to use HTTP Cookies in it, then I hope this article will help you for it in the best way. …6 min read6 min read
Feb 21, 2020HTTP State Management using Cookies…..All you need to know about HTTP cookies….. — What are HTTP Cookies..? As you all know, HTTP is a stateless protocol which means that the client-server connection is lost once the transaction ends between them. So, HTTP server does not save details about each client. …Http Cookie5 min readHttp Cookie5 min read
Feb 12, 2020Understanding Git Basics -Part-2In this article , I’m focusing on basic Git commands , which would be helpful for you when working with Git. From my previous article you can get a basic idea about working with git repositories :- link Initialize a local repository From my previous article I described how to set up a Git…Git4 min readGit4 min read
Feb 12, 2020Understanding Git Basics- Part-1In this article , I’m focusing on working with Git repositories, which would be needed for you if you are a programmer and still haven’t used Git as the version control system. First, you need to understand the git working flow. …Git5 min readGit5 min read