Creations

A duplicate of the game Flappy Bird using pygame

Flappy Bird is a mobile game where you embody a flying bird. You have to avoid the incoming pipes. In the computer version I made, the mechanism is simple. You just have to press SPACE to go up.

Read more..

Pokedex web app

This app will allow you to read, create, update and delete pokemons.

  • Each pokemon is defined by a key, a name, a type and an ability (talent).
  • Types and abilities are stored in the given files : abilities.json and types.json. A user who would modify/create a pokemon is able to pick a type and an ability issued from those files.
  • An abstraction layer is implemented in the file functions.js The Model itself will is implemented with the use of Arrays.
  • The persistence of the data is implemented with a simple text file on the server side.

Read more..