- 65 Posts
- 7 Comments
Joined 1 year ago
Cake day: October 8th, 2024
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Noughtmare@programming.devto
Selfhosted@lemmy.world•How much time and money would it take to set up and maintain a server similar to disroot.org, offering the same services, for a group of ten people?English
7·5 months agoThey are considered volunteers in the Netherlands as long as the compensation is way below market rates. I don’t understand why you think this is a problem.
Noughtmare@programming.devto
Selfhosted@lemmy.world•How much time and money would it take to set up and maintain a server similar to disroot.org, offering the same services, for a group of ten people?English
4·5 months agoIn the Netherlands, volunteers can be paid up to €5.60 per hour and up to €2100 per year (tax-free).
Noughtmare@programming.devto
Privacy@programming.dev•BritCard ID Now Mandatory — What Happens if You Refuse?English
2·6 months agoThe Netherlands also has mandatory ID.
Noughtmare@programming.devto
Opensource@programming.dev•Vaultwarden - Unofficial Bitwarden compatible server written in RustEnglish
11·10 months agoIt’s e2e encrypted, so what could they do if they were evil? (honest question)
Noughtmare@programming.devOPto
Haskell@programming.dev•Search Index in 150 Lines of HaskellEnglish
4·11 months agoNot only is it convenient, it also enables parallelism:
“How to Think about Parallel Programming: Not!” - Guy L. Steele Jr. (Strange Loop 2010)
I’m confused. It does go straight to the discourse post when I click it.


.means function composition in Haskell.(f .) . (+)is just an obscure way to write\x y -> f (x + y). It’s not recommended to use this point-free style in production code, but it is sometimes fun to experiment with for challenges like this.