python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Haskell IORef usage in concurrent setting
I am having hard time to understand Haskell's memory model. I got stuck implementing a simple lock-free hash map and while trying to reproduce the error on a smaller example I realized I have no idea ...
ekim boran
Votes: 0
Answers: 1
Extracting body from HTML with Haskell
Haskell beginner over here!
I'm trying to parse an HTML String and extract the body from it. I'm using GHC Version 9.0.2 . I've tried to extract it using Regex. I'm using Text.Regex.TDFA (Version 1.3....
Raychani1
Votes: 0
Answers: 2
Getting current time during a BrickEvent Haskell
I'm relatively new to Haskell, and I'm trying to build a terminal user interface with brick. I'd like to record a timestamp every time a user input is given. To do this I wrote the following functions...
Simon Hostettler
Votes: 0
Answers: 2
I need to do a subtraction in Haskell
i need to do a subtraction in haskell, and the result add an list, but the new list doesn't give me the real valors
for example: [1,2,3,4,5]
prom = (1 + 2 + 3 + 4 + 5) / 5 = 3
subs = (1 - 3) = -2 ad...
YahelDaOng
Votes: 0
Answers: 1