This is my portfolio site, which contains a description of my web development skills and projects. You can visit the site here.
The site was created with Astro and TailwindCSS. The website formsubmit.co handles the contact form.
Currently, I am showcasing the following projects:
- An app called Retrieve Jobs, which fetches job output from mainframes. This project actively serves 100+ users.
- An ecommerce store that I made for a client, called Lightspeed Triggers.
- An Othello AI, which uses the minimax algorithm.
- A Sudoku puzzle generator and solver, which uses recursive backtracking to generate random Sudoku puzzles and solve them. The user can also play through the puzzles, if they choose.
Make sure that you have NodeJS (and thus npm) installed. You can then use npm to install pnpm, which this project uses for development and package management:
npm install -g pnpmAfter ensuring that you have pnpm installed, you can then install all required dependencies:
pnpm installFinally, run the development server:
pnpm run dev