A warm welcome! on my pages

I am a 32 year old guy from Stuttgart, Germany, living in the Netherlands right now, and i am using this page to showcase stuff i did in the past as well as current projects. Feel free to drop by at the Browsergame i am helping with (HiddenEmpire), or visit Liquipedia, where i am staff.

I like coding, and whilst i mostly do stuff on the web with homepages (i.e. html, CSS, js, php, SQL, python), i can also code desktop applications with Java, C++ or Python. If you see code in my GitHub account you cannot understand, feel free to contact me on GitHub and i will happily help you with it.

Follow me

GitHubTwitterLiquipedia

Tools

About conway

The pagebanner is a running Conway's Game of Life. It is a 200x40 grid and implements the whole game in javascript. The script modifies a Scalable Vector Graphic (SVG) that is entirely styled with CSS.

Rules of the game according to the Wikipedia article linked above:

  • Any live cell with less than two live neighbours dies, as if caused by under-population.
  • Any live cell with two or three live neighbours lives on to the next generation.
  • Any live cell with more than three live neighbours dies, as if by overcrowding.
  • Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.