Skip to content

Instantly share code, notes, and snippets.

View ajuch's full-sized avatar

Andreas Juch ajuch

  • Wels, Austria
  • 20:47 (UTC +01:00)
View GitHub Profile
@lxe
lxe / goes16-rtlsdr.md
Last active March 9, 2026 22:27
Receive GOES-16 and GOES-17 Images with a Raspberry Pi and RTL-SDR dongle
@swlaschin
swlaschin / ConstrainedTypesExamples.fsx
Last active January 7, 2026 17:22
Examples of creating constrained types in F#
// General hints on defining types with constraints or invariants
//
// Just as in C#, use a private constructor
// and expose "factory" methods that enforce the constraints
//
// In F#, only classes can have private constructors with public members.
//
// If you want to use the record and DU types, the whole type becomes
// private, which means that you also need to provide:
// * a constructor function ("create").