It's not a new year's resolution - I break those as a rule - I'm going to be fitter in #2024
Notices by Anupam 《ミ》λ≡ (haskman@functional.cafe), page 3
-
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Monday, 01-Jan-2024 13:44:06 JST Anupam 《ミ》λ≡ -
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Saturday, 30-Dec-2023 23:26:17 JST Anupam 《ミ》λ≡ Are there any good magazines for children (pre-teen / teens) in #India?
"Target" was the magazine that defined my childhood. I still vividly and bitterly remember the day the #IndiaToday group shut it down and started the ridiculous "TeensToday" which was full of fashion and celebrity gossip.
I would pay good money to get my hands on a few issues of Target.
-
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Thursday, 21-Dec-2023 14:31:59 JST Anupam 《ミ》λ≡ Occasionally hopping back to #Twitter to see what's up.
#Cryptocurrency grifters every..where..
-
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Saturday, 16-Dec-2023 14:22:53 JST Anupam 《ミ》λ≡ The world if, instead of `data`, `type`, and `newtype`, we had `type struct`, `type alias`, and `type wrapper`
-
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Thursday, 14-Dec-2023 13:42:22 JST Anupam 《ミ》λ≡ Bring back the small internet
-
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Friday, 25-Aug-2023 12:04:34 JST Anupam 《ミ》λ≡ @BoydStephenSmithJr @hongminhee Tooling with #PureScript is *way* better than #Haskell's. IDEs work flawlessly, and spago is more like cargo than cabal. I find PureScript development much more soothing than when I have to write Haskell.
The only caveat is that the tooling is currently being upgraded (new registry, spago-next) so there may be some teething troubles if you use the new infra.
-
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Tuesday, 22-Aug-2023 16:10:55 JST Anupam 《ミ》λ≡ @hongminhee How does the "choose language" thing work? I just followed you using the web interface but didn't get any options to choose languages.
-
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Tuesday, 22-Aug-2023 15:23:57 JST Anupam 《ミ》λ≡ The way I write #Rust is by first thinking of the code in #Haskell and then translating it to Rust, while praying that the #BorrowChecker doesn't get in the way!
-
Embed this notice
Anupam 《ミ》λ≡ (haskman@functional.cafe)'s status on Tuesday, 22-Nov-2022 17:45:43 JST Anupam 《ミ》λ≡ Coming from a #Haskell background, I'm very sad that #Rust makes it so hard to avoid mutable references.
I don't want to mutate things in place, I want to write functions that consume their arguments and then return an entirely newly constructed result, but that will often land you in trouble in Rust. This is not about performance, I mean you will find it difficult to even structure your programs.
For example, there's an entire cottage industry of *solutions* around updating a mutable value wholesale, i.e. where you compute the replacement by consuming the original value.