Viewing profile — safarimonkey
safarimonkey
HN member- Joined
- Tue, Feb 23, 2021, 10:36 AM UTC
- HN karma
- 10
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About safarimonkey
No profile information was provided.
Recent public activity
-
comment
Comment #47321816
I made my account on a server that a personal friend span up. Said friend deleted it on a whim after a few months after not using it much, not really aware of the implications. Per…
-
comment
Comment #36377425
Some of the techniques improve over linear scaling of the baseline models. For example, from the article: > Conditional computation avoids applying all model parameters to all toke…
-
comment
Comment #36204651
Magic Leap 2 has a segmented dimmer that works fairly well. It's a small probably-LCD panel that sits in front of your eye. It lets the headset black out part of your view, leaving…
-
comment
Comment #26281338
Indeed not, so it's not a full replacement. I'm not entirely sure that I like the idea of an "if let" variant creating bindings that escape the visual block, but I'd probably get o…
-
comment
Comment #26280918
I ran into this the other day, and it took me a moment to realise that I could just use `matches!`: // want to do this if not let Some("pattern") = val { doSomething(); } // can in…
-
comment
Comment #26235795
I ran into this the other day, and it took me a moment to realise that I could just use `matches!`: // want to do this if not let Some("pattern") = val { doSomething(); } // can in…
-
comment
Comment #26235745
Here is one (recently created) that operates on the whole program rather than a single function: https://crates.io/crates/no-panics-whatsoever