HackerTrans
TopNewTrendsCommentsPastAskShowJobs

chen_dev

no profile record

Submissions

Amazon Nova Foundation Models

aws.amazon.com
3 points·by chen_dev·2 lata temu·1 comments

Oracle Cloud Outage

32 points·by chen_dev·3 lata temu·10 comments

comments

chen_dev
·w zeszłym roku·discuss
> 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
·w zeszłym roku·discuss
> 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
·w zeszłym roku·discuss
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
·w zeszłym roku·discuss
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
·w zeszłym roku·discuss
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 lata temu·discuss
Amazon Nova models:

https://gist.github.com/uschen/38fc65fa7e43f5765a584c6cd24e1...
chen_dev
·2 lata temu·discuss
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 lata temu·discuss
> 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 lata temu·discuss
incident is showing up on the official status page:

https://ocistatus.oraclecloud.com/#/incidents/ocid1.oraclecl...
chen_dev
·3 lata temu·discuss
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 lata temu·discuss
Interesting topic. A pretty good video about this: https://www.youtube.com/watch?v=ZMQbHMgK2rw