Problem My Windows desktop is messy with many files of different types here and there, therefore I thought of writing […]
Tag: beginner
Shuffle array elements by rearranging the key value associations
Problem PHP’s shuffle() function destroys the array keys, so I decided to write a shuffle function that doesn’t do that […]
Beginner’s attempt for Project Euler problem 12 (highly divisible triangle number)
Problem I’m a couple weeks into learning Python and I’m working through the Project Euler problems. Problem 12 asks: What […]
Automated Java fighting and battling simulation
Problem This is my second post since I’ve started coding/joined this site so be ready for some bad code and […]
Rock, Paper, Scissors game in Python with OOP
Problem I am still practising object oriented programming and I decided to do the rock-paper-scissors game as a project. I […]
JavaScript flood fill
Problem I tried to implement a very simple color flood fill to experiment a bit with Javascript. All comments about […]
Static single page app with routing
Problem I’m currently trying to write an app with Cordova and ReactJS. I haven’t used ReactJS before, so I’m very […]
Small text-based RPG (v2)
Problem This is my first text-based game I made. It’s very small because I just learned Python and wanted to […]
Roast my C# birthday code
Problem So this is a pretty simple code, I think it was? It asks for the user’s birth day and […]
Self-made Linked List
Problem I was tasked by my teacher with making a linked list by myself, so I could understand the concept […]