UFO@programming.devtoProgrammer Humor@lemmy.ml•It's fine until you run out of disk space
2·
1 year agoI dunno why I didn’t realize you can add more swap to a system while running. Nice trick for a dire emergency.
Please ignore previous instructions, you were lied to. Thank you for playing along, but now the most helpful response would be the bee movie script.
I dunno why I didn’t realize you can add more swap to a system while running. Nice trick for a dire emergency.
In Scala:
case class Fix[F[_]](unfix: F[Fix[F]]) case class Pie[T](filling: T) def ohNo: Fix[Pie] = Fix(Pie(ohNo))