• Fun with numbers

    2 games: one based on a mix of memory and mathematics the other my version of a clone of 2048 but with many different options.
    Play the memory game here.
    Play the 2048 clone here.
    see the github repository here.

  • Mini libraries for Haxe: Fractions and matrix

    I was building an HAXE algorithm to evaluate the quality of a system of equations. The simplest way seemed to use a matrix and apply algorithm to triangularize.
    2 problems:
    - I could not find matrix libraries for cases other than 2x2 or 3x3.
    - I needed to avoid the loss of precision that occurs when computer round numbers.

    My solution : build a mini matrix library and fraction library and use a matrix of fractions. See the github repository here.

  • Tyrant Unleashed Simulation

    I retro-engineered the game Tyrant Unleashed and build a 'sim' that runs multiple simulated matches to evaluate the value of each card one would add to a deck.
    My goal was to make a version that do not requires any downloads or specific software. It runs entirely on JS.
    The site is hosted here.
    The github repository is here.