Bits and Paradoxes


All about programming, algorithms, technology, philosophy and life.

The Void Podcast #002

All the references mentioned in The Void episode 002

Read More...


The Void Podcast #001

All the references mentioned in The Void episode 001

Read More...


Brain Dump: The Pleasure of Finding Things Out

This is just my brain dump at the moment. I might get back to this write-up later, at some point in my life. Anyway, it's always a 'pleasure' to listen to Feynman's lectures!

Read More...


About Time, Life and Values

We are so used to with the 'linear' perception of time that we think we have plenty of time. However, the sensation of time that it's almost 'logarithmic' grows over time. By the time you are 27ish years old, you might realize that a lot of early years were just a filler arc in your life. That your current “self” has a lot of things to squeeze in a short period of time, especially when you have crossed the quarter-life milestone.

Read More...


Life: Struggle, Absurdity and Happiness

I turned 26. So, this is an exhaustive review of my life: finance, relationships, happines and absurdities.

Read More...


Newsletter: Bits and Paradoxes - 00

This is the very first newsletter I have been meaning to start for a very long time. Here I share contents I loved consuming ranging from articles to podcasts to discussion forums to music to everything.

Read More...


Understanding Object Detection using YOLO

Object classfication, detection and segmentation has been an active research area for deep learning. Different architectures such as YOLO make it possible to perform such action without going down much into the rabbit hole.

Read More...


Semantic Similarity using Universal Sentence Encoder

Universal Sentence Encoder is the model for encoding sentences into embedding vectors.

Read More...


Voronoi Diagram

Create voronoi diagrams using numpy.

Read More...


AOC-2018-Day-3: No Matter How You Slice It.

I have tried solving the problem using numpy and its vectorization task.

Read More...


A Boring Analysis of My Thoughts

I have analyzed all of my blog posts from medium

Read More...


Accuracy Is a No-Brainer: Precision and Recall

Accuracy is not always a good metric to evaluate a system/model.

Read More...


Let's learn perceptron the noob way - Part 2

The Weights are updated by using the error/deviation in predicted values.

Read More...


Let's learn perceptron the noob way

A perceptron is a decision maker. It outputs certain number which can be interpreted as yes/no or 0/1 or similar range of decision.

Read More...


Decorator in Python

A python decorator is just a wrapper to an existing function to add more functionality to it.

Read More...