Skip to content

Instantly share code, notes, and snippets.

View Override-6's full-sized avatar
🎯
Writing moshell's vm

Maxime Batista Override-6

🎯
Writing moshell's vm
  • UCA Clermont-Ferrand
  • France
  • 18:51 (UTC +01:00)
View GitHub Profile
@dianjuar
dianjuar / i3-shortcuts-screenshot.md
Last active November 19, 2024 15:17
My i3 shortcuts to take screenshots

Requirements

  • maim
  • xclip

Set-up

Set this on your i3 config file ~/.i3/config

# Screenshots
@BalmungSan
BalmungSan / Polymorphism.md
Last active September 11, 2024 00:00
Polymorphism in Scala.

Polymorphism in Scala

This document aims to show and compare three alternatives for achieving polymorphism in Scala.

  • Subtyping, common in object-oriented languages like Java.
  • Duck typing, common in dynamically typed languages like Python.
  • Typeclasses, common in functional languages like Haskell.

Additionally, when implementing the typeclass pattern in Scala,