Viewing profile — pseudonom-
pseudonom-
HN member- Joined
- Thu, Jan 16, 2014, 9:41 PM UTC
- HN karma
- 239
- Public activity
- 111 items
- HN profile
- View on Hacker News ↗
About pseudonom-
No profile information was provided.
Recent public activity
-
comment
Comment #39109573
Dhall is the FP config language you're thinking of, I think.
-
comment
Comment #38977592
Funny, I did almost the exact same thing: https://github.com/colehaus/hammock-public . Though I project to 3D and then put them in an interactive 3D plot. The other fun little thin…
-
comment
Comment #38563236
OpenAI was formed as a nonprofit with a specific charter ("OpenAI’s mission is to ensure that artificial general intelligence (AGI)—by which we mean highly autonomous systems that …
-
comment
Comment #38563001
Are you aware of the history and governance structure of OpenAI?
-
comment
Comment #37822020
Unless I'm misunderstanding something, this is precisely why I don't use Home Manager. I've literally never had my NixOS setup break over the course of many years.
-
comment
Comment #37590317
https://arxiv.org/abs/2306.11644 is along these lines.
-
comment
Comment #37576310
Probably quotes like: "It must be familiar, roughly C-like. Programmers working at Google are early in their careers and are most familiar with procedural languages, particularly f…
-
comment
Comment #37140770
Tim Dettmers recently ( https://www.manifold1.com/episodes/ai-on-your-phone-tim-dett... ): "But what we found with these neural networks is, if you use 32 bits, they're just fine. …
-
comment
Comment #37065313
There are other mechanisms for dealing with vanishing and exploding gradients. I (maybe wrongly?) think of batch normalization as being most distinctively about fighting internal c…
-
comment
Comment #37065277
> (Do bear or typeguard allow you to do this using decorators?) You can push some of this directly into Python type annotations thanks to https://peps.python.org/pep-0646/ . e.g. @…
-
comment
Comment #36865268
There's some discussion in section 3.2 of https://arxiv.org/pdf/1910.10683.pdf
-
comment
Comment #36578536
> Ie even lower than my guess of 90% above. These are not comparable numbers. You're comparing "fraction of people" vs "fraction of outcomes". Presumably an eye-roller assigns ~0 p…
-
comment
Comment #26068857
Ahh, I was focusing on the "local state" vs "global state" bit. Haskell has ways to address the expression problem: e.g. http://www.cs.ru.nl/~W.Swierstra/Publications/DataTypesALaC…
-
comment
Comment #25991931
To the extent that I understand your complaint, there is a functional architecture that alleviates this concern: arrowized functional reactive programming. https://blog.jle.im/entr…
-
comment
Comment #24344133
This can be fairly smoothly achieved already: https://dev.to/gcanti/functional-design-smart-constructors-1...
-
comment
Comment #19667704
Chronic hunger in (at least) the US appears to be essentially non-existent for children: https://blog.givewell.org/2009/11/26/hunger-here-vs-hunger-t...
-
comment
Comment #19071771
There are serious attempts to estimate the externalities that arise from automobile use in general: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.661... Adjusting those …
-
comment
Comment #18972595
"Carbon taxes are regressive" is too simple, and I'd argue wrong, for a variety of reasons: - Some experts just flatly deny it: "low-expenditure households devote a smaller share o…
-
comment
Comment #18807560
Does anyone have any impressions on how this compares to CLRS? ( https://en.wikipedia.org/wiki/Introduction_to_Algorithms )
-
comment
Comment #18356794
> ~30% of her students, from either school, would not eat at all over the weekend. No, not that they would eat Cheetos or drink Coke. They plain-jane went hungry. Can you help me r…
-
comment
Comment #17935184
You can use switch statements for a pattern matching analogue. See the "Exhaustiveness Checking" heading at https://www.typescriptlang.org/docs/handbook/advanced-types.... .
-
comment
Comment #17220838
I was able to find one reference to this spider in the context of mosquito elimination: Regarding ecological issues surrounding the release of sterile TMs, of particular importance…
-
comment
Comment #17216269
From the article: "That might sound disturbing from an ecological perspective, but mosquitoes don’t make up a significant portion of any known predator’s diet; there’s just not a l…
-
comment
Comment #17085602
I suspect (based on stuff like https://arxiv.org/abs/1510.08419 ) that you'd have had more luck with property tests instead of unit tests.
-
comment
Comment #17057726
In some languages, you can ensure that no `.toString()` equivalent is available. Then, your ID is truly opaque and can only be used in the prescribed ways.