linuxusers.in is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
When is a call stack not a call stack? ~ Chris Smith. https://cdsmithus.medium.com/when-is-a-call-stack-not-a-call-stack-f7f12d7aabbe #Haskell #FunctionalProgramming
please help me, haskell wizards
import qualified Data.Text.Lazy as T
fun :: IO T.Text
...
main :: T.Text
main = do
r <- fun
gives an error because the acutal type in main is IO T.Text
<-
would unwrap the IOAnother cool thing I'm enjoying with #haskell is that despite being a statically-typed, compiled language, it has an interpreter 🤯 I love using the Python interpreter for testing things out real quick but I always miss static typing when working in Python, and don't really use Python for more than simple scripts as a result. (I know, mypy is a thing, but I haven't gotten around to using it. I'm hesitant to do so based on my experiences with TypeScript)
I started reading up on #haskell and list comprehensions look really cool. Definitely going to keep going down this rabbit hole
Dear #haskell people around here, can you remind me what is the release process / support of GHC?
I keep getting confused with the versions being released (they always feel like a lot of them to me 😂). Like, I'm on 9.6.6 -- can I stay on it and just update to 9.6.x? What am I missing out?
It makes me a bit anxious that this feels such a moving target 😅
Someone told me I could just use whatever Debian packages on stable and use that as a stable platform. Is that sound advice?
Thank you!
I just completed "Mull It Over" - Day 3 - Advent of Code 2024 https://adventofcode.com/2024/day/3.
Check out my #Haskell solution at https://github.com/abhin4v/AoC24/blob/main/app/Day3.hs.
This one required me to reach out to regular expressions. I could have parsed by hand too, but regex is more convenient.
8 months of OCaml after 8 years of Haskell in production (2023)
Link: https://chshersh.com/blog/2023-12-16-8-months-of-ocaml-after-8-years-of-haskell.html
Discussion: https://news.ycombinator.com/item?id=42302426
SOMEHOW, I have found myself getting into writing #Brainfuck #Interpreter(s), and I want to write an article about it. What would interest you most?
intr: Interpreter
DS: Data structure like list, vector, bytearray
BC: Bytecode
#programminglanguages #plt #programming #haskell
Tree-walking intrs in Haskell with different DSs: | 4 |
A comparison of BC intr in Haskell, Go and Clojure: | 1 |
An optimized BC intr in Haskell: | 3 |