cover.png

Unleash Your Chess Genius: The Bishop Exchange Puzzle Game! Introduction Dive into the thrilling world of chess challenges with a game that I crafted in Unity! I recently stumbled upon a unique puzzle that couldn’t be found anywhere else on the internet. So, naturally, I turned it into a game that’s bound to electrify...

Bard-Shell: A Tool for Sending Linux Command Outputs to Bard. Introduction I recently created a software called Bard-Shell, which allows me to send the output of Linux commands to Bard for debugging and other purposes. Bard-Shell is a simple Python script that takes a Linux command as input and pipes the output to...

Recursive Backtracking Algorithm Basic Idea This is a simple depth-first search Algorithm, which can generate mazes by carving walls between adjacent cells randomly, and Backtracking when it reaches a dead end. Making the grid The grid was the easiest part, a 1D list that contained a Cell object grid = [] for i in...

MicroMouse Context So I saw this awesome video on Veritasium’s channel today and was totally fascinated by the different techniques used by the MicroMouse competition winners to make you solve this simple yet awesome problem. It got me thinking, can I implement this game in a language I’m not that good in, c++?. The...

So I recently came across this website called Advent Of Code (github), and its awesome!! It provides you with 2 part puzzles everyday till Christmas, and of course it is Christmas themed. The questions are structured in a way, where most of the question is related to the premise, and the part gives you an example of a...

cover.jpg

What is Newsboat I Recently came across a program called newsboat , which is an rss feed reader. For those who do not know, rss feeds are updates posted to any website and you can subscribe to them to know what is up. It also works on reddit sites, and youtube (tho youtube limits to the latest 15 videos upoaded) This...

The problem Whenever I need to make a blog, i need to go in the hugo directory, make a new file with hugo new , and also update the repo after that. I want a script that makes a blog every day (just a file in the blogs folder) and then gives the name and the title of the date. The Script #!/bin/sh hugo_project=$1...

What I learned today Today I came across a fantastic tool called pup. From github: Pup is “a command line tool for processing HTML. It reads from stdin, prints to stdout, and allows the user to filter parts of the page using CSS selectors.” It is basically a html parser, and makes web scraping from websites dead...