While browsing my Evernote I found a scrapbook which I have made while learning Python some years back. Thought to…
Another Microsoft misery This time, I am struggling to handle the bullets in SVG output of my drawing. What…
Again one more Microsoft problem 😢 😢 Yesterday, I suddenly observed that one part of my newly developed feature was not…
While doing routine cleaning of my personal library I was surprised to see the Perl book collection I have made…
I’ve found that a big difference between new coders and experienced coders is faith: faith that things are going wrong…
Book Predictive analytics, The Power to Predict Who will Click, Buy, or DieEric Segelhttps://www.predictiveanalyticsworld.com/book/ Theme This book deals with quantitative…
Sorting dates could be tricky because of various date and time format used. Fortunately there is awsome js lib called…
Sometimes we need to change the commit message of already committed/committed-pushed files. See below some of the scenarios might arise..…
a small imple of jQuery accordion (show/hide blocks) Accordions (extend/collapse) are useful when you want to toggle between hiding and…
Since long I was thinking to write down my recommendation of the books I have read recently or in past…
As a Vim user for nearly 2 decades, recently I got an opportunity to explore SpaceVim a new Vim distribution.…
Think Perl 6How to Think Like a Computer Scientist Very well written. Must read for Perl developers. https://greenteapress.com/wp/think-perl-6/
Sometimes you want to do experiment work or wants to patch the git master branch with some experimental code, in…
Over the years I have extensively used map and grep in Perl, JavaScript, Python, Linux. I am sure most of…
A couple of months back I have completed Deep Learning Specialization taught by AI guru Andrew NG. During the learning process,…
Graph Implementation – Adjacency list We’ve used dictionaries to implement the adjacency list in Python which is the easiest way.…
Bubble Sort Implementation The bubble sort makes multiple passes through a list. It compares adjacent items and exchanges those that…
Computes the cumulative sum – Recursion Aim is to write a recursive function which takes an integer and computes the…
Contd.. from last post Array Pair SumArray Pair Sum Given an integer array, output all the unique pairs that sum…
Recently I have started using Python in a lot of places including writing algorithms for MI/data science, so I thought…