<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: scythmic_waves</title><link>https://news.ycombinator.com/user?id=scythmic_waves</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 11 Sep 2026 10:44:08 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=scythmic_waves" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by scythmic_waves in "Ambient CSS v3 – Blender meets CSS"]]></title><description><![CDATA[
<p>What's a good example that comes to mind for you of it done right? I don't do much frontend so I think I just uncritically accept whatever design is put in front of me.</p>
]]></description><pubDate>Tue, 01 Sep 2026 20:58:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=49528105</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=49528105</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49528105</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Things I want in a modern relational query language"]]></title><description><![CDATA[
<p>Some overlap here with some of my favorite essays on why SQL is lacking:<p><a href="https://www.scattered-thoughts.net/writing/against-sql" rel="nofollow">https://www.scattered-thoughts.net/writing/against-sql</a><p>That particular post ends with a wish-list of items so it's the most similar to the OP. But there are others on the site that I quite enjoy (click on the home icon and search "SQL" on the page).<p>My personal take is that SQL will continue to reign for a long time because of the how monumental the task of replacing it is due to the inherent complexity of databases. LLMs make this worse because they're really good at translating prose to SQL. Now that it matters less how annoying SQL is to programmers, SQL will become more like assembly over time: something mostly computers write because it's complicated for humans to deal with directly. This is deeply ironic given that SQL was ostensibly designed to read like prose, i.e. to be easy for humans.</p>
]]></description><pubDate>Sun, 23 Aug 2026 14:52:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=49409312</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=49409312</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49409312</guid></item><item><title><![CDATA[New comment by scythmic_waves in "The lattice of sets of natural numbers is rich (2021)"]]></title><description><![CDATA[
<p>> The power set lattice (P(N)) of all sets of natural numbers, not to scale, some sets omitted...</p>
]]></description><pubDate>Thu, 13 Aug 2026 14:40:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49286702</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=49286702</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49286702</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Elixir v1.20: Now a gradually typed language"]]></title><description><![CDATA[
<p>Anecdotally, it is very much different in Elixir land. I occasionally see bugs related to something being unexpectedly `nil` but it's pretty rare IME.<p>I'd love to evidence what I'm saying with specific numbers since this kind of discussion would benefit from being as objective as possible. Sadly I don't have them. But I still believe what I'm saying and I have a few guesses about some of the causes:<p>1. Immutable data - so, so many bugs are caused by data mutating out from under you in subtle ways. If you write `x = 1` in your Elixir function, <i>nothing</i> can change the value of `x` except an explicit rebinding. You can then write e.g. `y = f(x)` and <i>know</i> `x` remains unchanged after. Note: this is also true even if the variable is a composite type. `my_struct = blah()` will remain the same in it's entirety no matter what you do with `my_struct`. This is different than in JS where e.g. you can change the contents of an object even if it's declared `const`.<p>2. Assertive style - the Elixir community favors writing things in an "assertive" fashion [1]. Briefly, this a way of writing code that will fail the moment an assumption is broken rather than letting the issue propagate.<p>3. Pattern matching (somewhat like destructuring in JS) - Elixir code actually ends up feeling "typed" with pattern matching. E.g. `%Time{} = today = Date.utc_today()` will attempt to bind `today` to the result of `Date.utc_today()` and will raise a `MatchError` when the result, a `%Date{}` struct, fails to be a `%Time{}` struct. Or `[a, b] = [1, 2, 3]` will raise a `MatchError` because `[1, 2, 3]` isn't a list of length exactly 2. You can use pattern matching to write very assertive code quite tersely.<p>These reasons are all local properties of code. But when all its parts are written in this way, a program as a whole gains a level of correctness that's hard to achieve in a dynamically typed language without them.<p>Also these reasons aren't exhaustive, but they're top of mind when thinking about this topic.<p>[1]: <a href="https://dashbit.co/blog/writing-assertive-code-with-elixir" rel="nofollow">https://dashbit.co/blog/writing-assertive-code-with-elixir</a></p>
]]></description><pubDate>Thu, 04 Jun 2026 14:50:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=48399563</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=48399563</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48399563</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Monad Tutorials Timeline"]]></title><description><![CDATA[
<p>I read this years ago and I think it's the best one I've read. Thanks for writing it!</p>
]]></description><pubDate>Thu, 30 Apr 2026 14:47:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=47963383</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=47963383</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47963383</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Online age verification is the hill to die on"]]></title><description><![CDATA[
<p>I think it's because, without further context, it's so hard to argue against. Pretty much every person in every culture cares deeply about their children. So if you can successfully hitch your position to that idea, it too becomes hard to argue against.<p>It's the same with tough on crime. "What, you <i>want</i> criminals to keep getting away with it?!"</p>
]]></description><pubDate>Wed, 29 Apr 2026 16:42:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47950889</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=47950889</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47950889</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Show HN: Tiao, A two-player turn-based board game"]]></title><description><![CDATA[
<p>It's fun! I play some chess but I am <i>not</i> a natural at this game. I think I need an AI easier than easy haha</p>
]]></description><pubDate>Sun, 26 Apr 2026 23:53:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=47916127</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=47916127</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47916127</guid></item><item><title><![CDATA[New comment by scythmic_waves in "High-Fidelity KV Cache Summarization Using Entropy and Low-Rank Reconstruction"]]></title><description><![CDATA[
<p>From the conclusion:<p>> The primary trade-off observed is the increased calculation time for OLS and SVD steps. Consequently, the next phase of this work involves implementing these operations within custom Triton kernels to amortize latency. By viewing the cache through the lens of reconstruction fidelity rather than just memory capacity, we can develop more sustainable architectures for long-context inference.<p>Reading between the lines, the increase in latency was so significant that they didn't want to include it before they had a chance to try and optimize the problem away first.<p>Still interesting research. Hope they get good results!</p>
]]></description><pubDate>Tue, 21 Apr 2026 14:51:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=47849641</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=47849641</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47849641</guid></item><item><title><![CDATA[New comment by scythmic_waves in "A cryptography engineer's perspective on quantum computing timelines"]]></title><description><![CDATA[
<p>Is it?<p>Your reasoning relies on this being true:<p>> [CRQCs] will be slow, expensive, and power hungry for at least a decade<p>How could you know that? What if it was 5 years? 1 year? 6 months?<p>I predict there will be an <i>insane</i> global pivot once Q-day arrives. No nation wants to invest billions in science fiction. Every nation wants to invest billions in a practical reality of being able to read everyone's secrets.</p>
]]></description><pubDate>Mon, 06 Apr 2026 19:07:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=47665380</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=47665380</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47665380</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Good CTE, Bad CTE"]]></title><description><![CDATA[
<p>That was also a great read, thanks!</p>
]]></description><pubDate>Tue, 31 Mar 2026 12:55:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47586683</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=47586683</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47586683</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Corruption erodes social trust more in democracies than in autocracies"]]></title><description><![CDATA[
<p>It's not a tautology because it's not guaranteed. There are plenty of plausible sounding claims that fail to be true. That's why science is needed: to provide _empirical_ evidence for/against a claim.</p>
]]></description><pubDate>Mon, 16 Mar 2026 13:15:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=47398589</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=47398589</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47398589</guid></item><item><title><![CDATA[New comment by scythmic_waves in "A plastic made from milk that vanishes in 13 weeks"]]></title><description><![CDATA[
<p>It's possible to use manufacture whey protein without cows:<p><a href="https://en.wikipedia.org/wiki/Whey_protein#Microbial_production" rel="nofollow">https://en.wikipedia.org/wiki/Whey_protein#Microbial_product...</a><p>It's not theoretical either. You can buy vegan dairy products made from this method today.</p>
]]></description><pubDate>Mon, 02 Mar 2026 16:16:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=47219948</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=47219948</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47219948</guid></item><item><title><![CDATA[New comment by scythmic_waves in "It's hard to justify Tahoe icons"]]></title><description><![CDATA[
<p>Ohhh thank you! I thought the same as the parent comment: I expected that button to turn off the animation immediately. I guess the author wanted the yellow background to "melt" the snowflakes?</p>
]]></description><pubDate>Mon, 05 Jan 2026 21:15:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=46505070</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=46505070</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46505070</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Utopian Scholastic"]]></title><description><![CDATA[
<p>Wow fever dream is right! The beginning reminds me of 'Dark City' (1998):<p><a href="https://www.youtube.com/watch?v=dO6ApZlxqo8" rel="nofollow">https://www.youtube.com/watch?v=dO6ApZlxqo8</a><p>Sidenote: is that Clancy Brown doing the voice over on the 'Home' commercial?</p>
]]></description><pubDate>Mon, 05 Jan 2026 21:03:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=46504928</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=46504928</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46504928</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Show HN: RenderCV – Open-source CV/resume generator, YAML to PDF"]]></title><description><![CDATA[
<p>I used this recently for my resume and I recommend it.<p>I have the technical background to write Latex and Typst documents but I honestly didn't want the headache. Plus I'm the type to futz with styling all day long instead of putting down actual content. RenderCV was simple to use and did exactly what I wanted.</p>
]]></description><pubDate>Sun, 21 Dec 2025 16:08:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=46345791</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=46345791</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46345791</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Ensuring a National Policy Framework for Artificial Intelligence"]]></title><description><![CDATA[
<p>Yep. I punch literally everyone I meet in the face.<p>I have the power to do it. Why would I not?</p>
]]></description><pubDate>Fri, 12 Dec 2025 22:37:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=46249878</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=46249878</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46249878</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Over fifty new hallucinations in ICLR 2026 submissions"]]></title><description><![CDATA[
<p>> as a code reviewer [you] are only expected to review the code visually and are not provided the resources required to compile the code on your local machine to see the compiler fail.<p>As a PR reviewer I frequently pull down the code and run it. Especially if I'm suggesting changes because I want to make sure my suggestion is correct.<p>Do other PR reviewers not do this?</p>
]]></description><pubDate>Sun, 07 Dec 2025 16:11:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=46182739</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=46182739</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46182739</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Thoughts on Go vs. Rust vs. Zig"]]></title><description><![CDATA[
<p>Borgo [1] is basically that.<p>Though I think it's more of a hobby language. The last commit was > 1 year ago.<p>[1] <a href="https://news.ycombinator.com/item?id=40211891">https://news.ycombinator.com/item?id=40211891</a></p>
]]></description><pubDate>Thu, 04 Dec 2025 22:58:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=46154375</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=46154375</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46154375</guid></item><item><title><![CDATA[New comment by scythmic_waves in "The (economic) AI apocalypse is nigh"]]></title><description><![CDATA[
<p>The first link is a mistake. It's supposed to be the thing being discussed here: <a href="https://news.ycombinator.com/item?id=45170164">https://news.ycombinator.com/item?id=45170164</a>.<p>The 2nd link seems reasonable to me? Why does a study about 25k workers in Denmark (11 occupations, 7k workplaces) not count as evidence? If there was a strong effect to be found globally, it seems likely to be found in Denmark too.<p>Also, what about the other links? The discussions about the strange accounting and lack of profitability seem like evidence as well.<p>If anything, this article struck me as well-evidenced.</p>
]]></description><pubDate>Mon, 06 Oct 2025 18:48:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=45494807</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=45494807</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45494807</guid></item><item><title><![CDATA[New comment by scythmic_waves in "Dev Compass – Programming Philosophy Quiz"]]></title><description><![CDATA[
<p>Hey it'd be great if you could rank the choices individually rather ranked-choice-style than picking just one first-past-the-post-style. I'm sure you could still compute a score, but it'd lead to less frustration from the quiz taker.<p>E.g. the debugging question: I use all of those methods to some degree. But I "think logically about the code" (or whatever that choice was) nearly 100% of the time, so I felt compelled to pick that one even though I didn't feel like it represented me all that well.</p>
]]></description><pubDate>Sun, 17 Aug 2025 17:38:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=44933354</link><dc:creator>scythmic_waves</dc:creator><comments>https://news.ycombinator.com/item?id=44933354</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44933354</guid></item></channel></rss>