Welcome to my Arcade

Here I have a collection of games I've made for practice, to demonstrate my coding skills and for plain fun. Feel free to play them. I hope to update this site semi-regularly.

You can use the arrow keys to navigate.

Changelog

  • Initial version - 2024-11-15
    • First release of the Arcade.

Minesweeper

In this game you have a board with tiles. Your objective is to open all the tiles without mines, opening a tile with a mine will lose the game. Opened tiles will display a number on them that corresponds to the number of mines next to them, open tiles without numbers do not have mines nearby. Use this as a hint to figure out where the mines are. You can right click on a closed tile to mark it, to prevent yourself from opening known or suspected mined tiles accidentally.

Scoring is based on the time it took you to open all empty tiles. The first tile is always an empty tile no matter where you pick. Tiles with no mines next to them will automatically also reveal all neighboring tiles.

Under Construction

I will implement more games in the future.

Minesweeper

The classic time waster.

Play

Under Construction

I will implement more games in the future.

Minesweeper

Currently the scoring system does not work as I haven't implemented a backend for my games yet. Enjoy this fake scoreboard instead ;P

Rank
Name
Time
1
John Doe
00:01:00
2
Jane Doe
00:02:00
3
Elvis
00:03:00
4
Mixi Rat
00:04:00
5
Player
00:05:00

Under Construction

I will implement more games in the future.

Frontend Source Code

Here you can find the source code for the website and the frontend for the games. These are all done in vanilla HTML, SCSS, JavaScript. So there aren't any extra dependencies to worry about.

View on GitHub

Minesweeper

Currently working on creating a PHP backend for the Minesweeper game. This will have an API that connects the frontend to a SQL database that manages the game state and scoring. Most of the game logic will also move serverside once finished.

Under Construction

I will implement more games in the future.