Blog

2026

Topological Sort

3 minute read

Topological Sort is linear ordering of vertices in a directed graph such that for every directed edge from vertex u to vertex v, u comes before v in the orde...

Traversing Graphs

2 minute read

There are two main ways to traverse a graph: Add a vertex to stack/queue, and pop from it and add the neighbors to the stack/queue. Stack will result in D...

Back to top ↑

2022

Building GitHub Pages using Docker

1 minute read

This website is built using Jekyll with Minimal Mistakes theme and hosted on GitHub Pages. To run the website locally, one needs Ruby, RubyGems and Jekyll. R...

Back to top ↑

2019

Writing on Github

1 minute read

It’s a template post presenting different writing styles/features that can be used in github repositories and pages. Most of the examples are from Github - B...

Back to top ↑