These are solutions to some of the challenges/problems in https://www.reddit.com/r/dailyprogrammer subreddit. Additionally, I will also host other mini-projects here (such as Minesweeper which you can find below) that may not have been listed in the subreddit but I want to do anyway.
172 - Output a pbm format that represents a given string https://github.com/quanhuynh/DailyProgrammer/tree/master/easy/172-pbm-image
193 - Calculate optimal dimensions of a 3D shape given a volume https://github.com/quanhuynh/DailyProgrammer/tree/master/easy/193-cube-ball-cylinder-cone
210 - Using 32-bit binary, return the compatibility of two numbers (how well they match) https://github.com/quanhuynh/DailyProgrammer/tree/master/easy/210-intHarmony
212 - Turn a string into Rövarspråket https://github.com/quanhuynh/DailyProgrammer/tree/master/easy/212-r%C3%B6varspr%C3%A5ket
215 - Return a b-sad cycle starting at a given number n https://github.com/quanhuynh/DailyProgrammer/tree/master/easy/215-sad-cycles
218 - Convert a number into a palindrome by adding its reverse, and return number of steps https://github.com/quanhuynh/DailyProgrammer/tree/master/easy/218-palindromic-converter
163 - Simulate the Fallout 3 hacking game https://github.com/quanhuynh/DailyProgrammer/tree/master/intermediate/163-fallout-hacker
173 - Langton's Ant Simulator. Check out the cool pics https://github.com/quanhuynh/DailyProgrammer/tree/master/intermediate/173-langtons-ant
200 - Evaluate a text file of 'character tiles', returning the dimensions and starting position of the character (refer to data.txt in the link) https://github.com/quanhuynh/DailyProgrammer/tree/master/intermediate/200-metro-tile
205 - Converts a given mathematical expression to Reverse Polish Notation (supports correct orders of operations) https://github.com/quanhuynh/DailyProgrammer/tree/master/intermediate/205-reverse-polish-notation
213 - Output 'hunt & peck' typing instructions for a string https://github.com/quanhuynh/DailyProgrammer/tree/master/intermediate/213-lazy-typist
246 - Using A->1, B->2, ..., Z->26 mapping, print out possible combinations of letters from an integer https://github.com/quanhuynh/DailyProgrammer/tree/master/intermediate/246-letter-splits
82 - Program to simulate a bowling game given data and calculate all individual round scores and total score https://github.com/quanhuynh/DailyProgrammer/tree/master/hard/82-bowling-score
157 - ASCII Bird - a more shitty version of Flappy Bird; play on command line https://github.com/quanhuynh/DailyProgrammer/tree/master/hard/157-ascii-bird
Minesweeper Game - Recreated the game of Minesweeper using the TkInter GUI module on Python https://github.com/quanhuynh/DailyProgrammer/tree/master/other/minesweeper
Interactive Conway's Game of Life - Simulated Conway's Game of Life with the interactive option of reviving or killing cells https://github.com/quanhuynh/DailyProgrammer/tree/master/other/conways-game-of-life