HackerTrans
热门最新趋势评论往期问答秀出招聘

chen_dev

no profile record

提交

Amazon Nova Foundation Models

aws.amazon.com
3 分·作者 chen_dev·2年前·1 评论

Oracle Cloud Outage

32 分·作者 chen_dev·3年前·10 评论

评论

chen_dev
·去年·讨论
> 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.
chen_dev
·去年·讨论
> 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 1 with the value 2?

>- Open enums will parse the value 2 and store it directly in the field. Accessor will report the field as being set and will return something that represents 2.

>- Closed enums will parse the value 2 and store it in the message’s unknown field set. Accessors will report the field as being unset and will return the enum’s default value.
chen_dev
·去年·讨论
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 service during that brief period, not the potential liability of overcharging that might exist on a paid plan.
chen_dev
·2年前·讨论
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

His point of view undoubtedly resonates with 'some folks'.
chen_dev
·2年前·讨论
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 ...
chen_dev
·2年前·讨论
Amazon Nova models:

https://gist.github.com/uschen/38fc65fa7e43f5765a584c6cd24e1...
chen_dev
·2年前·讨论
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_add(1, Ordering::Relaxed);
    } else {
        some_var.fetch_add(2, Ordering::Relaxed);
    }
}
chen_dev
·2年前·讨论
> 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 counter.Load()%2 == 0 {

> sleep(10)

> counter.Add(1)

> } else {

> sleep(10)

> counter.Add(2)

> }

> }

Is "atomic operations composition" a real term? Or it's something like "monolithic microservice"? What does that even mean?
chen_dev
·3年前·讨论
incident is showing up on the official status page:

https://ocistatus.oraclecloud.com/#/incidents/ocid1.oraclecl...
chen_dev
·3年前·讨论
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])

}
chen_dev
·3年前·讨论
Interesting topic. A pretty good video about this: https://www.youtube.com/watch?v=ZMQbHMgK2rw