Category: Programming

  • Blog Post Rewrite using ChatGPT

    So just use ChatGPT to get my first blog post rewritten. Here is outcome: Welcome to my blog! My name is Sumit Gupta and I am a computer software professional. You can find more information about me on my website: www.sumitgupta.net. Thank you for visiting my blog. I change URL to new one now. I…

  • Tip: ToString() for your custom Class

    While writing code and then debugging with step by step debugger you often just roll over a variable to see what it contain. With custom class it shows the class name/namespace path by default. And it makes debugging harder. A simple solution to this is to add a override to the ToString function in your…

  • Automate Testing: Gitlab, Dotnet

    I always want to test my .NET based application on my personal Gitlab based repo. But since, my old project is too much a mess to do the effort for. So, when we got to rewrite the whole project, I was happy to get my experience on Unit Testing with automation of CI. I still…

  • Extensions Method in .NET

    Recently I use extension method in C# project. I knew those for years, but really never get a chance to use them where they are most effect. I have couple of extension method in my project, such as ToInteger(), for a string to convert a String to Integer, which I used more frequently in my…

  • Experience with BitBucket CI

    I have been using bitbucket for quite sometime, and really like their service. Recently, I come to know that they have Beta of CI through pipeline, that can run any docker from Docker hub. I thought to give it a try though I have my own build setup on my local machine and really don’t…

  • Linux Upgrade from 12.04 to 14.04: Save the day

    So, this fine sunday, I think I wake with “lets spoil the day” mood. I start by checking my server to see how it is doing. A regular log view and updates I perform on my VPS. all was good, until I realise an update is available for my billing software. I decide to purchase…

  • Dropzone.js: A great plugin

    I recently try Dropzone JavaScript library to ease the upload process. It is really a lightweight and good library. I have a existing PHP form that take multiple images, and transfer/upgrading it to dropzone was as easy as include it’s library. I have little to mention, but a link to site is what I want…