Viewing profile — chen_dev
chen_dev
HN member- Joined
- Tue, Sep 12, 2023, 10:38 PM UTC
- HN karma
- 36
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About chen_dev
Recent public activity
- comment
-
comment
Comment #44205131
> writing about each other in what is essentially their own private diaries And yet, those "diaries" are an incredibly effective way to control the public narrative.
-
comment
Comment #43236072
> it gets deserialized as the zero value It’s more complicated: https://protobuf.dev/programming-guides/enum/ >> What happens when a program parses binary data that contains field …
-
comment
Comment #42734180
Limits Reached -> PubSub Notification -> Shutdown Sequence. Because it's a free plan, the delay between 'limits reached' and actual shutdown only incurs the cost of providing the s…
-
comment
Comment #42687081
Not sure about 'I can do it because I am morally superior'. Is it required to be morally superior to have an opposing view? > other folks can't because they don't get it like I do …
-
comment
Comment #42686859
This comment is kinda harsh isn't it? Do you have anything specific from his words to support: > ... mind become filled with mush > desperate pledge of allegiance ...
-
comment
Comment #42427721
Amazon Nova models: https://gist.github.com/uschen/38fc65fa7e43f5765a584c6cd24e1...
- story
-
comment
Comment #40795216
1) what #![allow(unused)] fn main() { use std::sync::atomic::{AtomicI64, Ordering}; let some_var = AtomicI64::new(5); if some_var.load(Ordering::Relaxed) % 2 == 0 { some_var.fetch_…
-
comment
Comment #40794885
> People sometimes think that the composition of atomics also magically becomes an atomic operation. But this is not the case. > var counter atomic.Int32 > func increment() { > if …
-
comment
Comment #38147016
incident is showing up on the official status page: https://ocistatus.oraclecloud.com/#/incidents/ocid1.oraclecl...
-
story
Oracle Cloud Outage
Similar to previous outage: https://news.ycombinator.com/item?id=36169992 its status is not showing any issues. https://ocistatus.oraclecloud.com/#/ https://downdetector.com/status…
-
comment
Comment #37576249
the 'fix' to the example in the README should be obvious, but for reference: - for _, e := range es { - pumpUp(&e) } + for i := range es { + pumpUp(&es[i]) }
-
comment
Comment #37489572
Interesting topic. A pretty good video about this: https://www.youtube.com/watch?v=ZMQbHMgK2rw