Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
chen_dev
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
chen_dev
1y ago
> 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.
2.
▲
by
chen_dev
2y ago
> 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? >
3.
▲
by
chen_dev
2y ago
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 th
4.
▲
by
chen_dev
2y ago
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 resonat
5.
▲
by
chen_dev
2y ago
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 ...
6.
▲
by
chen_dev
2y ago
Amazon Nova models: https://gist.github.com/uschen/38fc65fa7e43f5765a584c6cd24e1...
7.
▲
Amazon Nova Foundation Models
(aws.amazon.com)
3 points
by
chen_dev
2y ago
|
1 comments
8.
▲
by
chen_dev
2y ago
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); }
9.
▲
by
chen_dev
2y ago
> 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)
10.
▲
by
chen_dev
3y ago
incident is showing up on the official status page: https://ocistatus.oraclecloud.com/#/incidents/ocid1.oraclecl...
11.
▲
Oracle Cloud Outage
32 points
by
chen_dev
3y ago
|
10 comments
12.
▲
by
chen_dev
3y ago
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]) }
13.
▲
by
chen_dev
3y ago
Interesting topic. A pretty good video about this: https://www.youtube.com/watch?v=ZMQbHMgK2rw