Category: Projects

  • Maze Generation in React

    Maze Generation in React

    Play with it A few months ago I read an article on maze generation and it sparked my interest. Since then I began working little by little on a project to create a maze generator. I took the time to make it visually show the steps the algorithm takes. You can see it generating cell…

  • Boilerplate: Webpack + React + Redux

    Boilerplate: Webpack + React + Redux

    A boilerplate for playing around with react, redux and react-router with the help of webpack. Contains: a working example of a filterable table which you can play around with (look below). ES6 – 7 Support with Babel Redux dev tools to help you keep track of the app’s state hot module replacement support so you…

  • League of Legends Best Match

    League of Legends Best Match

    A league of legends fan application I created. It searches the last 10 ranked matches played by the player searched and orders them by best match to worst. The application is made with: MongoDB to save searched matches temporarily, Nodejs with Express in the back end, Riot Games RESTful API to search data about the…

  • League of Legends Team Stats

    League of Legends Team Stats  is a web app I made for the game with the same name. I made it to quickly build teams and check out general stats for each player.

  • Pascal’s Triangle in Javascript 6 (ES6)

    So I was reading a post on reddit where it was mentioned that on a interview for javascript developer they asked to write a function that returns n lines of Pascal’s Triangle. My first reaction was of course: What is a Pascal Triangle? After reading wikipedia I said, ok let’s give it a try. At…