Star Wars Timeline

Two amazing links to understand the timeline of Star Wars. https://screenrant.com/star-wars-republic-eras-differences-explained/ https://starwars.fandom.com/wiki/Galactic_Empire [Read More]
Tags: trivia

Squashing Git Commits

If last X commits need to be squashed, then the git command will be git rebase -i head~X. So, for squashing 2 commits: git rebase -i head~2 [Read More]
Tags: git

Disk Stacking Problem

Given a set of rectangular 3D disks, stack the disks on top of one another to achieve the max height subject to the constraint that the disk that goes above another disk has a strictly smaller length and a strictly smaller breadth. In other words, Labove < Lbelow and Babove... [Read More]