Skip to content
View akhansari's full-sized avatar
🦎
🦎

Block or report akhansari

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
akhansari/README.md

👋 Hi there

Hi, I am Amin Khansari, an architect and programmer based in France.

I am passionate about socio-technical architecture, defensive design and simple boring sustainable λ code.

https://akhansari.tech/who-am-i

Pinned Loading

  1. EsBankAccount EsBankAccount Public

    Bank Account kata and Functional Event Sourcing in F#

    F# 80 9

  2. F# : Onion architecture in a nutshell F# : Onion architecture in a nutshell
    1
    // 1. pure, don't think about IO at all
    2
    module Domain =
    3
        let add x y = x + y
    4
    
                  
    5
    // 2. think about IO but not its implementation