This profile might be incomplete.
Open on social.jlamothe.net Jonathan LamothePronouns:
he/him
Personal infoAbout:
Programmer and free/libre software enthusiast. This is my primary account on the Fediverse. See my website for an authoritative list of accounts.
jlamothe.net
Wall 3 posts
Been poking at my #Haskell #Gemini framework. This issue caused me to shelve it a while back. It's not the end of the world if I don't get it resolved, though.
codeberg.org/jlamothe/gemcap/iā¦ If anyone has any ideas, pull suggestions and pull requests are welcome. Does anyone else use the tchncs.de #PeerTube instance? They seem to have some syncing issues with other instances, and was wondering if there was perhaps a defederation issue or something going on.
|
@me As a #Scheme hacker, #Rust has nothing I need:
Exploratory, interactive programming, with a REPL.
Dynamic types, I can do an (assert (Foo? x)) if needed, but having to write Foo x, or Foo<T:Bar> x, everywhere sucks.
My errors are never caught by strict typing or borrow checking. I make much higher-level logic errors.
Garbage collection or ARC equivalent is the only way to safely manage memory. STOP manually doing it. Even in C, you can use Boehm GC!
Scheme compiles to fast binaries.