Skip to content

Instantly share code, notes, and snippets.

View kodfodrasz's full-sized avatar

Gábor Gergely kodfodrasz

View GitHub Profile
@kodfodrasz
kodfodrasz / install.ps1
Created April 26, 2024 09:24
basic tools to instal on a new machine
# Define a here-string with package names, including some commented lines
$packageList = @"
### COMMUNICATIONS ###
Google.Chrome
Mozilla.Firefox
Mozilla.Thunderbird
Telegram.TelegramDesktop
### OFFICE PRODUCTIVITY ###
SumatraPDF.SumatraPDF

Keybase proof

I hereby claim:

  • I am kodfodrasz on github.
  • I am kodfodrasz (https://keybase.io/kodfodrasz) on keybase.
  • I have a public key ASAWwi9CN5kdxNgzd4VhIH9bM9sUY0trhs4qsSNln35-fgo

To claim this, I am signing this object:

@kodfodrasz
kodfodrasz / effective-fsharp.md
Created February 27, 2021 18:15 — forked from swlaschin/effective-fsharp.md
Effective F#, tips and tricks

Architecture

  • Use Onion architecture

    • Dependencies go inwards. That is, the Core domain doesn't know about outside layers
  • Use pipeline model to implement workflows/use-cases/stories

    • Business logic makes decisions
    • IO does storage with minimal logic
    • Keep Business logic and IO separate
  • Keep IO at edges