CoderBear's Blog
Sep 15, 2017
I recently had the chance of watching Coldplay perform live in concert as a part of their A Head Full of Dreams tour at the FedExField in Maryland, USA. Below are my thoughts on how they do a brilliant job of connecting with their fans.

Nov 12, 2016
For my design class, I assessed the usability of Twitter's search bar for its mobile app as well as the desktop site. The post is a summary of my findings and ways in which to tackle this problem.

Aug 18, 2015
In this series of posts, I shall be taking a simple (hopefully) library that I've used often in the past, and play around with its source code and eventually get a fair idea of how it works.

July 6, 2015
There are a number of ways in which circular references can be broken, depending on what is suitable for a particular use case....

July 1, 2015
A very naive garbage collection alogrithm is Reference Counting. In this method, the number of references to each object is tracked. If this number ....

June 22, 2015
Failing to release a block of memory that is no longer required for a program to function correctly is known as a memory leak. Over time, they pile up and start using more resources. Depending on ....

June 5, 2015
Let us try and better understand how scoping works in javascript. Scope in JS is functional, which means that a variable declared within the scope of a function is accessible only ....