<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: chen_dev</title><link>https://news.ycombinator.com/user?id=chen_dev</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Apr 2026 08:56:31 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=chen_dev" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by chen_dev in "DNS traffic spiked as Musk–Trump clash boosted Truth Social (+268%) and X (+20%)"]]></title><description><![CDATA[
<p>> writing about each other in what is essentially their own private diaries<p>And yet, those "diaries" are an incredibly effective way to control the public narrative.</p>
]]></description><pubDate>Fri, 06 Jun 2025 21:24:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=44205131</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=44205131</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44205131</guid></item><item><title><![CDATA[New comment by chen_dev in "API design note: Beware of adding an "Other" enum value"]]></title><description><![CDATA[
<p>> it gets deserialized as the zero value<p>It’s more complicated:<p><a href="https://protobuf.dev/programming-guides/enum/" rel="nofollow">https://protobuf.dev/programming-guides/enum/</a><p>>> What happens when a program parses binary data that contains field 1 with the value 2?<p>>- 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.<p>>- 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.</p>
]]></description><pubDate>Sun, 02 Mar 2025 22:45:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=43236072</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=43236072</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43236072</guid></item><item><title><![CDATA[New comment by chen_dev in "Firebase bill is usually $50, but I was surprised to see a $70k bill in one day"]]></title><description><![CDATA[
<p>Limits Reached -> PubSub Notification -> Shutdown Sequence.<p>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.</p>
]]></description><pubDate>Fri, 17 Jan 2025 04:45:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=42734180</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=42734180</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42734180</guid></item><item><title><![CDATA[New comment by chen_dev in "The Origins of Wokeness"]]></title><description><![CDATA[
<p>Not sure about 'I can do it because I am morally superior'. Is it required to be morally superior to have an opposing view?<p>> other folks can't because they don't get it like I do<p>His point of view undoubtedly resonates with 'some folks'.</p>
]]></description><pubDate>Mon, 13 Jan 2025 18:53:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=42687081</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=42687081</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42687081</guid></item><item><title><![CDATA[New comment by chen_dev in "The Origins of Wokeness"]]></title><description><![CDATA[
<p>This comment is kinda harsh isn't it?
Do you have anything specific from his words to support:<p>> ... mind become filled with mush<p>> desperate pledge of allegiance ...</p>
]]></description><pubDate>Mon, 13 Jan 2025 18:36:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=42686859</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=42686859</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42686859</guid></item><item><title><![CDATA[New comment by chen_dev in "Phi-4: Microsoft's Newest Small Language Model Specializing in Complex Reasoning"]]></title><description><![CDATA[
<p>Amazon Nova models:<p><a href="https://gist.github.com/uschen/38fc65fa7e43f5765a584c6cd24e137f" rel="nofollow">https://gist.github.com/uschen/38fc65fa7e43f5765a584c6cd24e1...</a></p>
]]></description><pubDate>Mon, 16 Dec 2024 03:17:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=42427721</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=42427721</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42427721</guid></item><item><title><![CDATA[Amazon Nova Foundation Models]]></title><description><![CDATA[
<p>Article URL: <a href="https://aws.amazon.com/ai/generative-ai/nova/">https://aws.amazon.com/ai/generative-ai/nova/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42309003">https://news.ycombinator.com/item?id=42309003</a></p>
<p>Points: 3</p>
<p># Comments: 1</p>
]]></description><pubDate>Tue, 03 Dec 2024 17:54:10 +0000</pubDate><link>https://aws.amazon.com/ai/generative-ai/nova/</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=42309003</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42309003</guid></item><item><title><![CDATA[New comment by chen_dev in "Atomic Operations Composition in Go"]]></title><description><![CDATA[
<p>1) what<p>#![allow(unused)]<p>fn main() {<p><pre><code>    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);
    }
}</code></pre></p>
]]></description><pubDate>Wed, 26 Jun 2024 00:26:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=40795216</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=40795216</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40795216</guid></item><item><title><![CDATA[New comment by chen_dev in "Atomic Operations Composition in Go"]]></title><description><![CDATA[
<p>> People sometimes think that the composition of atomics also magically becomes an atomic operation. But this is not the case.<p>> var counter atomic.Int32<p>> func increment() {<p>>    if counter.Load()%2 == 0 {<p>>        sleep(10)<p>>        counter.Add(1)<p>>    } else {<p>>        sleep(10)<p>>        counter.Add(2)<p>>    }<p>> }<p>Is "atomic operations composition" a real term? Or it's something like "monolithic microservice"? What does that even mean?</p>
]]></description><pubDate>Tue, 25 Jun 2024 23:31:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=40794885</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=40794885</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40794885</guid></item><item><title><![CDATA[New comment by chen_dev in "Oracle Cloud Outage"]]></title><description><![CDATA[
<p>incident is showing up on the official status page:<p><a href="https://ocistatus.oraclecloud.com/#/incidents/ocid1.oraclecloudincident.oc1.phx.amaaaaaavwew44aacls5lbbeohllojnyisi3o5el2ir3vc3czx3sqbl65d5q" rel="nofollow noreferrer">https://ocistatus.oraclecloud.com/#/incidents/ocid1.oraclecl...</a></p>
]]></description><pubDate>Sun, 05 Nov 2023 01:19:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=38147016</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=38147016</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38147016</guid></item><item><title><![CDATA[Oracle Cloud Outage]]></title><description><![CDATA[
<p>Similar to previous outage: https://news.ycombinator.com/item?id=36169992<p>its status is not showing any issues.
https://ocistatus.oraclecloud.com/#/<p>https://downdetector.com/status/oracle-cloud/<p>Some pages of its console return "Bad Gateway". VPN and Instances connections are down.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38146738">https://news.ycombinator.com/item?id=38146738</a></p>
<p>Points: 32</p>
<p># Comments: 10</p>
]]></description><pubDate>Sun, 05 Nov 2023 00:33:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=38146738</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=38146738</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38146738</guid></item><item><title><![CDATA[New comment by chen_dev in "Fixing for loops in Go 1.22"]]></title><description><![CDATA[
<p>the 'fix' to the example in the README should be obvious, but for reference:<p>- for _, e := range es {<p>-   pumpUp(&e)<p>}<p>+ for i := range es {<p>+   pumpUp(&es[i])<p>}</p>
]]></description><pubDate>Tue, 19 Sep 2023 20:44:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=37576249</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=37576249</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37576249</guid></item><item><title><![CDATA[New comment by chen_dev in "New world record with an electric racing car: From 0 to 100 in 0.956 seconds"]]></title><description><![CDATA[
<p>Interesting topic. A pretty good video about this: <a href="https://www.youtube.com/watch?v=ZMQbHMgK2rw">https://www.youtube.com/watch?v=ZMQbHMgK2rw</a></p>
]]></description><pubDate>Tue, 12 Sep 2023 22:39:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=37489572</link><dc:creator>chen_dev</dc:creator><comments>https://news.ycombinator.com/item?id=37489572</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37489572</guid></item></channel></rss>