<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: davisp</title><link>https://news.ycombinator.com/user?id=davisp</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 31 Aug 2026 15:31:04 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=davisp" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by davisp in "Show HN: Academa – Long-form STEM lecture videos generated by LLMs"]]></title><description><![CDATA[
<p>> On correctness: LLMs may make mistakes. But these videos are code sitting in our repository, and we can maintain them. Every report and review becomes a fix in the source, and everyone who watches after that gets the corrected lecture. Every recorded lecture on the internet is stuck with its mistakes. Ours will continuously improve.<p>Models change. Models are unpredictable. The assumption that we can constrain them between prompt bumpers has not been proven and seems unlikely to be provable given how these model works.<p>Beyond that, how do you know if the reports and reviews are even correct? Are you just gonna rely on the kindness of others to provide that value? Of all things that LLM’s have killed, I’m pretty sure the open sharing of knowledge and understanding are the first on the chopping block. I don’t care whether or not you’re pro or anti LLM, publishing knowledge for reputation is now a dead end for anyone wanting to make a living.<p>Wrapping others’ knowledge in a black box that may or may not accurately represent that knowledge is basically enshitification on steroids. The reason we hold folks like Lovelace, Sagan, or Feynman in high regard is because they weren’t wrong when they shared their understanding and knowledge.<p>But the best of luck to everyone involved! I’m sure everything will work out!</p>
]]></description><pubDate>Sun, 30 Aug 2026 23:45:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=49503985</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=49503985</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49503985</guid></item><item><title><![CDATA[New comment by davisp in "Cessation of public development of Kefir C compiler"]]></title><description><![CDATA[
<p>> If I build a Markov chain based on a statistical analysis of word sequences in Hamlet, and then use it to produce a new sentence that isn't found in the text of that work, I have not created a derivative work of Hamlet under any applicable sense of that term.<p>Uh, that is exactly what a derivative work is. You literally specify that Hamlet is an input to your work. I believe you're conflating derivative with transformative. You're certainly creating a transformative derivation of Hamlet, but you are by definition creating a derivative work by training a Markov chain on the text of Hamlet.<p>The obvious follow up here is whether an LLM is creating transformative derivations or not. A lot of folks argue that yes, an LLM spitting out statistically sampled code that matches existing code is not transformative and is (or might be) infringing the terms of the license it was released under. Others argue that there's not an exact copy of the original source in the LLM's weights so by definition it must be a transformative work. I think it's a pretty obvious "somewhere in the middle" that is gonna make a bunch of lawyers a whole lot of money.<p>Personally, I don't care one way or the other. I'm one of the folks that thinks software shouldn't be copyright-able in the first place.</p>
]]></description><pubDate>Mon, 01 Jun 2026 18:39:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=48360873</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=48360873</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48360873</guid></item><item><title><![CDATA[New comment by davisp in "Appeals court rules that Constitution protects possession of AI-generated CSAM"]]></title><description><![CDATA[
<p>I’m gonna give this a very charitable read by saying that while I find the ways that the treatment of burn victims was advanced by abhorrent means, we as a society have still benefited from those means.<p>> So once the model is created there isn't a good reason to encumber it by how it was created.<p>I am trying to be very specific here. I assume no untoward motivations from the parent commenter. I am not intending to cast aspersions. Whoever wrote this, I feel no ill will for you and this is not meant as a personal slight.<p>And I will be very clear, this statement as written could probably be defended because of the “by how it was created” clause.<p>However, “So once the model is created there isn’t a good reason to encumber it” is so… fucking I don’t even know, because what the actual fuck?<p>I apologize for the profanity, I really do. But, really? Are you fucking kidding me?<p>These models should not exist. Ever. By any means. Do not pass Go. Go directly to jail.<p>I understand the engineering brain enough to contemplate abstract concepts with detachment. That’s all I think happened here. But holy fuck, please pause and consider things a bit.</p>
]]></description><pubDate>Thu, 20 Mar 2025 23:02:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=43430057</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=43430057</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43430057</guid></item><item><title><![CDATA[New comment by davisp in "Fsync() after open() is an elaborate no-op"]]></title><description><![CDATA[
<p>So there's a bit of a misunderstanding here in the chain of blog posts that I can clear up. First, from this article:<p><pre><code>  That’s the question I’ve been mulling over for days, because
  I don’t see how this action can make any particular guarantees
  about durability, at least not in any portable way.
</code></pre>
This part is super easy to clear up. CouchDB in no way relies on an fsync after open for any <i>guarantee</i> on durability. As shown in [1], CouchDB has been running an fsync on file open since <i>extremely</i> early in its development. However, I can easily see how just reading the Neighbourhoodie article would lead here.<p>The missing context is that CouchDB <i>primarily</i> fsync's after open because when an empty database is created, we write a header to disk. The very early implementation in [1] just didn't limit this to <i>only</i> cases where we write the header and that general behavior has never been changed (though the implementation is a bit different today, the effect is the same).<p>Also, in hindsight, I believe this claim in the Neighbourhoodie is probably too strong:<p><pre><code>  However, CouchDB is not susceptible to the sad path.
</code></pre>
I didn't read the article super closely the first time since I'd been through the background discussions on the finer details, but today I'd probably hedge that a bit with language along the lines of:<p><pre><code>  However, CouchDB is *probably* not susceptible to the sad
  path. While we can't guarantee it can't happen due to how
  various I/O operations are (not) specified, we're doing as much
  as we can to prevent it. Also, don't forget that your storage
  device might be lying about fsync anyway.
</code></pre>
The underlying logic around that requires considering the original blog post in this chain [3]. That article posits a pathological error condition where we write something, crash, restart, issue read from a dirty page cache, and then hard crashing the entire machine. In this case, the database returned a read that was never committed.<p>As the author of this (as in this thread) article notes:<p><pre><code>  Using OpenZFS as an example (hey, it’s what I know), fsync()
  always flushes anything outstanding for the underlying object,
  regardless of where the writes came from.
</code></pre>
AFAIK, this is the norm and, I assume, the reason that the NULL BITMAP article [3] suggests the fsync on open. In CouchDB land, we just went back and said, "Oh nice, we already do that for other reasons anyway." Unfortunately the "we already do it for other reasons" aspect didn't really come through. So in the end, while none of the behavior on fsync-on-open is guaranteed in anyway shape or form, it's not impossible that it's saved our bacon a non-zero number of times. Just because its not guaranteed, its common that filesystems will in fact perform those flushes regardless of which file descriptor is used.<p>Also, to make sure that we're not missing the field for the cornstalks, I want to point out that the double fsync commit protocol used by CouchDB is probably 99.some-more-nines responsible for CouchDB's durability guarantees. However, that's not 100%, so when we find weird edge cases like in [3] we try and make sure that we're as correct as can be. For instance, here's the response to fsync-gate [4].<p>[1] <a href="https://github.com/apache/couchdb/blob/956c11b35487fb8ffcf70ec073bc7e4db6d1667a/couch_db_updater.erl#L297-L304" rel="nofollow">https://github.com/apache/couchdb/blob/956c11b35487fb8ffcf70...</a><p>[2] <a href="https://neighbourhood.ie/blog/2025/02/26/how-couchdb-prevents-data-corruption-fsync" rel="nofollow">https://neighbourhood.ie/blog/2025/02/26/how-couchdb-prevent...</a><p>[3] <a href="https://buttondown.com/jaffray/archive/null-bitmap-builds-a-database-2-enter-the-memtable/" rel="nofollow">https://buttondown.com/jaffray/archive/null-bitmap-builds-a-...</a><p>[4] <a href="https://github.com/apache/couchdb/commit/3505281559513e2922484ebf0996a8846dcc0a34" rel="nofollow">https://github.com/apache/couchdb/commit/3505281559513e29224...</a></p>
]]></description><pubDate>Fri, 14 Mar 2025 19:14:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=43366152</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=43366152</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43366152</guid></item><item><title><![CDATA[New comment by davisp in "No-Panic Rust: A Nice Technique for Systems Programming"]]></title><description><![CDATA[
<p>I'm no rustc expert, but from what little I know it seems like disabling panics for a crate would be an obvious first step. You make a great point though. Turning that into a compiler assertion of "this function will never panic" would also be useful.</p>
]]></description><pubDate>Tue, 04 Feb 2025 00:54:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=42925847</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42925847</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42925847</guid></item><item><title><![CDATA[New comment by davisp in "No-Panic Rust: A Nice Technique for Systems Programming"]]></title><description><![CDATA[
<p>What caught my eye in the article was the desire to have something that doesn't panic with a release profile, while allowing for panics in dev profiles. Based on other comments I think the general "allow use of std, but don't panic" seems like something that could be useful purely on the "Wait, why doesn't that exist?" reactions.</p>
]]></description><pubDate>Tue, 04 Feb 2025 00:40:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=42925690</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42925690</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42925690</guid></item><item><title><![CDATA[New comment by davisp in "No-Panic Rust: A Nice Technique for Systems Programming"]]></title><description><![CDATA[
<p>Does anyone know if there's an obvious reason that adding a `no_panic` crate attribute wouldn't be feasible? It certainly seems like an "obvious" thing to add so I'm hesitant to take the obvious nerd snipe bait.</p>
]]></description><pubDate>Mon, 03 Feb 2025 23:47:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=42925067</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42925067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42925067</guid></item><item><title><![CDATA[New comment by davisp in "Why was there a wall near runway at S Korea plane crash airport?"]]></title><description><![CDATA[
<p>Absolutely correct! Had the bird strike not occurred, there wouldn’t have been a crash. Had things with the go around been handled properly, there would have been no crash.<p>Etc etc. The fact that a wall was 50m out of compliance or whatever it ends up being will be a footnote at best in the review of this crash.</p>
]]></description><pubDate>Mon, 06 Jan 2025 00:19:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=42606250</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42606250</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42606250</guid></item><item><title><![CDATA[New comment by davisp in "C++ is an absolute blast"]]></title><description><![CDATA[
<p>There’s a few more than three.<p><a href="https://leanpub.com/cppinitbook" rel="nofollow">https://leanpub.com/cppinitbook</a><p><a href="https://www.reddit.com/r/ProgrammerHumor/comments/8nn4fw/forrest_gump_learns_c/" rel="nofollow">https://www.reddit.com/r/ProgrammerHumor/comments/8nn4fw/for...</a></p>
]]></description><pubDate>Tue, 24 Dec 2024 13:00:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=42501645</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42501645</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42501645</guid></item><item><title><![CDATA[New comment by davisp in "Distributed Erlang"]]></title><description><![CDATA[
<p>That’ll just depend on whatever code was deployed to the cluster. For the clusters I used to operate, the answer would be absolutely all nodes talk to all nodes all the time.<p>I personally never operated anything above roughly 250 nodes, but that limit was mostly due to following the OP’s advice about paying attention to the configuration of each node in the cluster. In my case, fewer nodes with fancier and larger raid arrays ended up being a better scaling strategy.</p>
]]></description><pubDate>Tue, 03 Dec 2024 23:06:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=42312677</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42312677</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42312677</guid></item><item><title><![CDATA[New comment by davisp in "Distributed Erlang"]]></title><description><![CDATA[
<p>> If you actually have 1000 nodes worth of work, the heartbeats are not at all a big deal.<p>I think you’re missing the fact that the heart beats will be combined with existing packets. Hence the quoted bit. If you’ve got 1000 nodes, they should be doing something with that network such that an extra 50 bytes (or so) every 30s would not be an issue.</p>
]]></description><pubDate>Tue, 03 Dec 2024 13:39:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=42305911</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42305911</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42305911</guid></item><item><title><![CDATA[New comment by davisp in "Ask HN: Who is hiring? (December 2024)"]]></title><description><![CDATA[
<p>Most likely those are just the states where they already have a tax presence. For whatever reason they happen to currently employ folks in those states so adding employees is easy. Adding new states means getting lawyers and CPA type folks involved which is a hurdle to hiring in larger organizations.</p>
]]></description><pubDate>Mon, 02 Dec 2024 23:10:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=42301350</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42301350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42301350</guid></item><item><title><![CDATA[New comment by davisp in "Engineering Sleep"]]></title><description><![CDATA[
<p>A wild tangent but reading “heritable metabolizing” really hit me on the “are viruses alive” question.<p>I’ve been around enough biotech to have considered the differences between plasmids and viruses versus archaea, bacteria, and eukaryotes. I’ve always considered “heritable change” as the base definition of “life”. As in, “life” is progeny resemble their parent(s)? Or “heritable change”.<p>“Heritable metabolizing” quite nicely captures that difference  between the levels of single molecule “life” and singular/multicellular “life”.<p>Apologies for the random aside, it was just one of those random “I have a vague idea of why mitochondria are important, but I don’t see them as fundamental” parts of my “What is life?” definition being refined.</p>
]]></description><pubDate>Sun, 01 Dec 2024 03:29:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=42285950</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42285950</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42285950</guid></item><item><title><![CDATA[New comment by davisp in "The meme-ification of the “Demon Core”"]]></title><description><![CDATA[
<p>Sometimes science doesn’t have to be precise to demonstrate a result.<p>Consider trying to measure feedback from a microphone and speaker. You don’t have to be an expert to know that there’s a quick change in system behavior when the microphone gets too close to the speaker.</p>
]]></description><pubDate>Thu, 21 Nov 2024 15:08:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=42204986</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42204986</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42204986</guid></item><item><title><![CDATA[New comment by davisp in "Using Erlang hot code updates"]]></title><description><![CDATA[
<p>This matches my experience. I spent a decade operating Erlang clusters and using hot code upgrades is a superpower for debugging a whole class of hard to track bugs. Although, without the tracking for cluster state it can be its own footgun when a hotpatch gets unpatched during a code deploy.<p>As for relups, I once tried starting a project to make them easier but eventually decided that the number of bazookas pointed at each and every toe made them basically a non-starter for anything that isn’t trivial. And if its trivial it was already covered by the nl (network load, send a local module to all nodes in the cluster and hot load it) style tooling.</p>
]]></description><pubDate>Wed, 20 Nov 2024 00:08:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=42189462</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42189462</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42189462</guid></item><item><title><![CDATA[New comment by davisp in "A Case Against the Placebo Effect"]]></title><description><![CDATA[
<p>> Introductory summary: The current scientific consensus is that the placebo effect is a real healing effect operating through belief and suggestion.<p>I have no idea what the rest of the article says because this single sentence is so bat shit insane on so many levels.<p>The placebo effect is not “real healing”, it’s “our study is unable to show a statistically relevant result from our treatment”.<p>I’m not big on LLMs personally, so I won’t make any specific claims on what they can do. But from what I’ve read, I’d doubt they’d correct that mistake.<p>On the flip side, I would trust an LLM to tell me whether it should have been “batshit”, “bat-shit”, or “bat shit”.</p>
]]></description><pubDate>Sat, 16 Nov 2024 22:42:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=42160063</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42160063</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42160063</guid></item><item><title><![CDATA[New comment by davisp in "Nutrient Density and Other Stupid Magic Words"]]></title><description><![CDATA[
<p>I made it through a few paragraphs before noping out because of how terrible this article is. Your comment made me go actually look to see what they could possibly be arguing against CICO. Turns out it’s nothing because this author has no idea how science or biology works.<p>We can all argue about what makes a calorie “good” or “bad” but CICO is basic thermodynamics. A calorie is a unit of energy. If a cell doesn’t have enough energy, it dies.<p>Sorry for mildly ranting at idiocy on the internet via your comment, sodality2.</p>
]]></description><pubDate>Wed, 13 Nov 2024 00:26:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=42121567</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42121567</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42121567</guid></item><item><title><![CDATA[New comment by davisp in "You too can write a book"]]></title><description><![CDATA[
<p>You can make a video, but odds are it won’t be good or get traction. I think you’re better off with a book. Books can remain indexed and accumulate readers for centuries, whereas most videos are forgotten/ignored. I’ve read plenty of books from decades ago that still get lots of comments and discussion.</p>
]]></description><pubDate>Sun, 10 Nov 2024 02:31:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=42098257</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=42098257</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42098257</guid></item><item><title><![CDATA[New comment by davisp in "The centrality of stupidity in mathematics"]]></title><description><![CDATA[
<p>“Simplicity is a great virtue but it requires hard work to achieve it and education to appreciate it. And to make matters worse: complexity sells better.” — Edsger Dijkstra</p>
]]></description><pubDate>Tue, 17 Sep 2024 23:13:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=41573889</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=41573889</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41573889</guid></item><item><title><![CDATA[New comment by davisp in "Ergo: Erlang-inspired event driven actor framework in Go"]]></title><description><![CDATA[
<p>Also, for anyone not completely familiar with Erlang's terminology, the translation of "per process garbage collection" to Go would be "per goroutine garbage collection". As mentioned in a sibling comment, this allows Erlang style garbage collection to avoid pausing the entire operating system process when running garbage collectin.</p>
]]></description><pubDate>Thu, 12 Sep 2024 18:27:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=41523962</link><dc:creator>davisp</dc:creator><comments>https://news.ycombinator.com/item?id=41523962</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41523962</guid></item></channel></rss>