Posts

  1. Elke Kahr, gratuliere zur Bürgermeisterin des Jahres ('23) Jan 30, 2024

    Elke Kahr, gratuliere zur Bürgermeisterin des Jahres (‘23) Wahrlich eine verdiente Auszeichnung!

    www.derstandard.at/story/300000

    Elke Kahr, gratuliere zur Bürgermeisterin des Jahres (‘23)

  2. Welcome at bluesky 🙂. Dec 7, 2023

    Welcome! I’m happy leaving that old mess and start a new and clean ‘life’ here at bluesky 🙂.

    Have a nice and pleasant Christmas season!

    Welcome! I’m happy leaving that old mess and start a new and clean ‘life’ here at bluesky 🙂.

  3. ex_roman: A Roman Numeral Converter in Elixir Sep 27, 2015

    I’m excited to share another one of my open-source projects: ex_roman. It’s a small Elixir library for converting integers to and from Roman numerals.

    The project was born as a fun exercise in Test-Driven Development (TDD) and a way to explore the power of pattern matching in Elixir. The core of the library is a set of functions that use pattern matching to handle the conversion logic, which makes the code concise and easy to understand.

  4. Traffic Light Simulation with Ruby Sep 26, 2015

    Today, I want to share an interesting project I found on GitHub: traffic_light. It’s a simulation of a traffic light controller, implemented in Ruby.

    The project uses Ruby’s Fibers for concurrency and the Curses library for a terminal-based graphical interface. It’s a great example of how to use these technologies to create a simple simulation.

    The core of the simulation is a state machine that defines the different states of the traffic lights (red, green, yellow). The state transitions are managed by the Fibers, which are lightweight concurrency primitives in Ruby.