Hardware How I brought my 15 year old laptop back to life! How I brought a 15 year old laptop back to life to use as an educational tool for my son.
Development Building & Running the New Windows Terminal I recently learnt about the new Windows Terminal. This combined with the new Windows Subsystem for Linux, I got excited to try it out. However, it’s currently not available for download. You need…
Go How To Initialize a Go Struct With a Lot of Pointers I’ve been working on a project using Go Swagger. It can generate your models as golang structs for you. However, if you have a lot of nullable fields, you will end up with…
Go Performance Benchmarking Your Coding Ideas in Go I recently switched to working with Go as one of the primary languages that I work with on a day to day basis. I’m still getting the hang of it, but so far…
Mobile How To See Free Movies & TV Shows From Google Play Store I’ve been watching free movies and TV shows form the Google Play store, now and then, for over a year. The method requires some effort and you won’t get to see movies too…
Programing Parsing & Evaluating Reverse Polish Notation in Python The Reverse Polish Noation (RPN) is a mathematical notation to define a sequence of steps where the operator follows the operand. This post will show you how to parse and evaluate them in…
OS How To Clean Install OS X Yosemite The Easy Way Whenever a new version of OS X is released, I use it as an excuse to rejuvenate my system by doing a clean install. This has become harder as Apple has started to…
Technology How To Never Loose Your Files Again Our lives are becoming increasingly digital. Not only do we socialize digitally, most of our information related to our lives is fast becoming digital. Pictures, Videos, Songs, Documents, Bills, Receipts are all available…
Python How To Convert MRI Scans To PNG Images If you get an MRI scan done, they provide you a CD with the images. However, these images are in a binary format and can only be viewed using the Windows based software…
Python Basic Sorting Algorithms Implemented In Python This post includes Python based implementation of some of the classic basic sorting algorithms. Although Python already includes the excellent Timsort algorithm implementation, this was done more as an academic exercise to not…