Live data from Hacker News

Viewing profile — chen_dev

chen_dev

HN member
Joined
Tue, Sep 12, 2023, 10:38 PM UTC
HN karma
36
Public activity
14 items

About chen_dev

https://chen.dev

Recent public activity

  1. comment
  2. 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.

  3. 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 …

  4. 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…

  5. 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 …

  6. 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 ...

  7. comment
    Comment #42427721

    Amazon Nova models: https://gist.github.com/uschen/38fc65fa7e43f5765a584c6cd24e1...

  8. story
  9. 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_…

  10. 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 …

  11. comment
    Comment #38147016

    incident is showing up on the official status page: https://ocistatus.oraclecloud.com/#/incidents/ocid1.oraclecl...

  12. 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…

  13. 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]) }

  14. comment
    Comment #37489572

    Interesting topic. A pretty good video about this: https://www.youtube.com/watch?v=ZMQbHMgK2rw