Viewing profile — D7x7w9pHnT
D7x7w9pHnT
HN member- Joined
- Thu, Mar 18, 2021, 2:39 PM UTC
- HN karma
- 18
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About D7x7w9pHnT
No profile information was provided.
Recent public activity
-
comment
Comment #28901198
Super cool! I've seen comments about eventually being able to get a keyboard with full arrow keys, but will they ever ship a keyboard with a trackpoint/pointing stick? Or is that p…
-
comment
Comment #28123564
lol totally Did this in Haskell, and since all the lower numbers are known, started searching at 2^361 To end the recursion I just have it print -1 when it reaches 1 f :: Integer -…
-
comment
Comment #28026870
For 0 being a FizzBuzz you can `cons` a "FizzBuzz" to the start of the list fizzbuzz = "FizzBuzz" : zipWith... To make negative numbers work you'd need a new numbers definition num…
-
comment
Comment #28025809
Yes, that part is hacky. It's easy to write a short function to do the same thing explicitly but then you lose the concise charm
-
comment
Comment #28023512
My favourite FizzBuzz is in Haskell, I found it in this talk by Kevlin Henney[0], and looks like this: fizzes = cycle ["", "", "Fizz"] buzzes = cycle ["", "", "", "", "Buzzes"] wor…
-
comment
Comment #26758665
This looks really cool! Especially the JSON benchmarks. Well done!