machine learning

Beautifull jumps and falls

Radu Angelescu
MIUIII

Play the puzzle!

The Goal: Given a starting “sentence” (string) reach the goal “sentence” (string) by only applying the rules below.

Rule Example
Mx → Mxx: MIIU → MIIUIIU
xI → xIU: MIIUI → MIIUIU
xIIIy → xy: MUIUIIIU → MUIUUU
xUUy → xy: MUIUUIIIU → MUIIIIU
  • x and y represent any character strings and M, U, I represent the actual letters, the arrow may be read as “becomes”.

  • For example the first rule can be read: Any string that ends in M becomes M and two times the reminder.

Try it, I will be waiting here :).

Differential Evolution

Radu Angelescu

This weekend I was looking into d3js. I saw a lot of cool visualizations on the web that used d3js and was actively searching for something good for rendering data in javascript.

I started learning the basics and while doing this I said to myself I should actually do something to express an algorithm, not just random art.