Skip to content
View danutchindris's full-sized avatar
💭
Working on a new Elixir project
💭
Working on a new Elixir project

Block or report danutchindris

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. fp-in-java fp-in-java Public

    Functional Programming in Java

    Java 5

  2. airports-demo airports-demo Public

    Java

  3. elixir-workshop elixir-workshop Public

    Elixir Workshop

    Elixir 1

  4. real-world-java-programming real-world-java-programming Public

    Main repository for my course Real-World Java Programming

    Java

  5. romanian_airports romanian_airports Public

    Demo project for my workshop at PeakIT 003 (Real-time user experiences with Elixir and Phoenix LiveView)

    Elixir 2

  6. tail_recursion.erl tail_recursion.erl
    1
    -module(tail_recursion).
    2
    -export([fact/1, sum/1, maximum/1, fib/1, perfect/1]).
    3
    
                  
    4
    fact(Acc, 0) ->
    5
        Acc;