I was working on an application called Will it sell? which will eventually allow users to upload a T-shirt design and determine how well it well sell. So far, I've learnt and written a Tkinter application and barely got some web scraping to get data working. Here's the repository: github.com/akshatk-khurana/Will-it-sell
I finally finished my pathfinding visualiser in Unity! It allows you to make your own little maze by clicking and dragging on tiles and lets you solve it using either breadth first search, depth first search or A* search. I'm quite happy with it and I've learnt a bunch of stuff about Unity UI and how these algorithms work while making this project. Here's the github repository: github.com/akshatk-khurana/Pathfinding-Visualiser
As I mentioned, I did a bunch of art using marker pens as well, and I couldn't fit all of them in the above scrapbook post so this post is just for those artworks. They are all in the same repository as well: github.com/akshatk-khurana/Drawings-and-Sketches-For-Arcade
For the past few days, I decided to take a break from coding and hence decided to do some drawings instead. I've done a bunch of pencil and colour pencil sketching as well as some illusion art using marker pens. I've put photos of each of my sketches and drawings here: github.com/akshatk-khurana/Drawings-and-Sketches-For-Arcade
I'm currently working on building a pathfinding visualiser on Unity to showcase the speeds and processes of the BFS, DFS and A* search algorithms. So as to not surpass the scrapbook post hours limit, here is a video of what I have done so far and also the link to the Github repository: github.com/akshatk-khurana/Pathfinding-Visualiser
I made my own game for Sprig called 'Sprig Dash' and it combines the looks of geometry dash (the player and the triangle obstacles) as well as the game play of the chrome dino game. Heres the link to the repository: github.com/akshatk-khurana/Sprig-Game
I made a fairly basic endless runner game in Unity. Like I said, its pretty basic, but it has taught me how to deal with UI, score saving and physics in the engine. Here is the link to the repository: github.com/akshatk-khurana/Endless-Runner
I built a Monkeytype clone in vanilla Javascript and it was a decently challenging project as I tried to replicate the Monkeytype typing to the best of my ability and make it look and feel just like the actual website. It still doesn't come close to the original website, but while building the clone I learnt quite a lot and improved my Javascript skills significantly. Here is the link to the repository: github.com/akshatk-khurana/Monkeytype-Clone. I've also attached a small screen recording of me testing it out.
I have done some more work on implementing greedy and prefix sum algorithms in C++, and I have added/modified somes scripts to problems that have taught me these topics. These scripts are in this repository: github.com/akshatk-khurana/Learning-Cpp-and-Algorithms
I have finished my sudoku solver and made a simple website for it with Flask. The user can type in an incomplete sudoku into the interface and after clicking a button, they will get back a completed sudoku. Here is the link to the repository: github.com/akshatk-khurana/Sudoku-Solver
I made a four numbers game solver which gives a solution to reach the given target with the given four numbers (using +, -, * or /). It does not have interface, it just needs to be run and input needs to be given when prompted. The repository for it is here: github.com/akshatk-khurana/Four-Numbers-Solver
I built a bi-gram Markov test generator which can be trained based on given text. It calculates the frequencies of words appearing after particular words and uses this knowledge to construct realistic looking text. I also built an API for it, so it can be used in future projects. Both the training code and API is in this repository: github.com/akshatk-khurana/Markov-Bigram-Text-Generator
So far I have been working on implementing greedy algorithms, prefix sums and sliding window techniques to programming problems. My C++ scripts are solutions to some problems that have taught me about the above topics. These scripts are in this repository: github.com/akshatk-khurana/Learning-Cpp-and-Algorithms