<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: aranchelk</title><link>https://news.ycombinator.com/user?id=aranchelk</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 02:44:57 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=aranchelk" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by aranchelk in "Agentic Patterns"]]></title><description><![CDATA[
<p>Tool Use Steering via Prompting. I’ve seen that work well also, but I don’t know if I’d quite call it an architectural pattern.</p>
]]></description><pubDate>Mon, 05 Jan 2026 01:28:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=46494348</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=46494348</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46494348</guid></item><item><title><![CDATA[New comment by aranchelk in "Agentic Patterns"]]></title><description><![CDATA[
<p>Yes, agentic search over vector embeddings. It can be very effective.</p>
]]></description><pubDate>Mon, 05 Jan 2026 01:02:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=46494179</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=46494179</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46494179</guid></item><item><title><![CDATA['Trash Pandas' Are Physically Evolving into Pets; SF'S Raccoons Could Be NEXT]]></title><description><![CDATA[
<p>Article URL: <a href="https://hoodline.com/2025/11/trash-pandas-are-physically-evolving-into-pets-sf-s-raccoons-could-be-next/">https://hoodline.com/2025/11/trash-pandas-are-physically-evolving-into-pets-sf-s-raccoons-could-be-next/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45943366">https://news.ycombinator.com/item?id=45943366</a></p>
<p>Points: 3</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 16 Nov 2025 07:17:29 +0000</pubDate><link>https://hoodline.com/2025/11/trash-pandas-are-physically-evolving-into-pets-sf-s-raccoons-could-be-next/</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=45943366</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45943366</guid></item><item><title><![CDATA[New comment by aranchelk in "Is Software the UFOlogy of Engineering Disciplines?"]]></title><description><![CDATA[
<p>I’ve seen several of these discussions on HN, they’re never particularly illuminating. What always seems to missing:<p>* Perspective of what it’s like working in other engineering disciplines.<p>* A clear and shared definition of what “engineering” is.<p>* Experiences shared by people who do apply significant math and science to their software authorship.</p>
]]></description><pubDate>Fri, 07 Nov 2025 16:10:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=45847867</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=45847867</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45847867</guid></item><item><title><![CDATA[New comment by aranchelk in "Monoid-Augmented FIFOs, Deamortised"]]></title><description><![CDATA[
<p>That and also why start with multiplication? String concatenation, addition, list concatenation all make more intuitive sense to a working programmer.<p>What's a straightforward way to combine a bunch of numbers? Just keep multiplying them to get a resulting volume in an ever-higher dimensional space.</p>
]]></description><pubDate>Wed, 20 Aug 2025 05:26:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=44958889</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=44958889</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44958889</guid></item><item><title><![CDATA[New comment by aranchelk in "I tried every todo app and ended up with a .txt file"]]></title><description><![CDATA[
<p>I was also dissatisfied with existing task tracking apps, and built my own:<p>t-do.com<p>There are still many rough edges, but it’s extremely useful. One of the best features that a text file has that very few apps support is unlimited sub-task nesting, and that’s a core feature of T-Do.</p>
]]></description><pubDate>Mon, 11 Aug 2025 19:42:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=44868575</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=44868575</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44868575</guid></item><item><title><![CDATA[New comment by aranchelk in "Lens: Lenses, Folds and Traversals"]]></title><description><![CDATA[
<p>I disagree. There are many operators that you’ll never use but if you memorize
(^.), (.~), and (%~), you’re pretty much set for a lot of real-world software development.<p>Per Kmett’s original talk/video on the subject, I can confirm my brain shifted pretty quickly to look at them like OOP field accessors. And for the three above, the mnemonics are effective:<p>“^.” is like an upside down “v” for view.<p>“.~” looks like a backwards “s” for setters.<p>“~%” has an tilde so it’s a type of setter and “%” has a circle over a circle, so it’s over.<p>I’ll also add that my experience in recent versions of PureScript things get even nicer: visible type application lets you define record accessors on the fly like:<p>foo ^. ln@“bar” <<< ln@“baz”<p>“.” Is unfortunately a restricted character and is not the composition operator like Haskell, but I alias “<<<“ with “..”<p>The pretty obvious question with the above is: why don’t you just write “foo.bar.baz”. In my case I use a framework that uses passed lenses for IoC, but I think “%~” is always nicer and less repetitive than the built-in alternative.</p>
]]></description><pubDate>Fri, 04 Jul 2025 18:56:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=44466989</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=44466989</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44466989</guid></item><item><title><![CDATA[New comment by aranchelk in "The Matrix (1999) Filming Locations – Shot-for-Shot – Sydney, Australia [video]"]]></title><description><![CDATA[
<p>It’s wild how much the green color grading used in the film made the daytime location shots look un-Californian.</p>
]]></description><pubDate>Thu, 19 Jun 2025 04:05:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=44315335</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=44315335</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44315335</guid></item><item><title><![CDATA[New comment by aranchelk in "Cloudflare Investigating Authentication Incident"]]></title><description><![CDATA[
<p>After many tries I also got into the dashboard, but it's not that usable, constant error pop-ups.</p>
]]></description><pubDate>Thu, 12 Jun 2025 18:35:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=44261278</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=44261278</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44261278</guid></item><item><title><![CDATA[New comment by aranchelk in "Cloudflare was down"]]></title><description><![CDATA[
<p>Seems to be affecting functionality of their "Verify you are human" dialogs as well as Workers.</p>
]]></description><pubDate>Thu, 12 Jun 2025 18:26:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=44261120</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=44261120</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44261120</guid></item><item><title><![CDATA[New comment by aranchelk in "Nvidia Pushes Further into Cloud with GPU Marketplace"]]></title><description><![CDATA[
<p>Customers of those services have a lot of considerations, as long as Nvidia doesn’t undercut the prices too much, I think no.<p>Getting more developers creating more models that can then be run on those services will likely expand business for all of those vendors.</p>
]]></description><pubDate>Sun, 25 May 2025 04:45:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=44085589</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=44085589</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44085589</guid></item><item><title><![CDATA[New comment by aranchelk in "Can you trust that permission pop-up on macOS?"]]></title><description><![CDATA[
<p>I really appreciate the integrated fingerprint reader in these cases. I usually run with my laptop screen closed (with external monitor) but open it specifically to authenticate in system dialogs.</p>
]]></description><pubDate>Tue, 13 May 2025 01:14:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=43968893</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43968893</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43968893</guid></item><item><title><![CDATA[Why the Bay Area's biggest real estate company is at war with Zillow]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.sfchronicle.com/realestate/article/compass-zillow-exclusives-20301190.php">https://www.sfchronicle.com/realestate/article/compass-zillow-exclusives-20301190.php</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43881029">https://news.ycombinator.com/item?id=43881029</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 03 May 2025 18:25:09 +0000</pubDate><link>https://www.sfchronicle.com/realestate/article/compass-zillow-exclusives-20301190.php</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43881029</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43881029</guid></item><item><title><![CDATA[New comment by aranchelk in "Devs sound alarm after Microsoft subtracts C/C++ extension from VS Code forks"]]></title><description><![CDATA[
<p>Ah, that’s a painful situation.</p>
]]></description><pubDate>Thu, 24 Apr 2025 23:06:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=43788505</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43788505</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43788505</guid></item><item><title><![CDATA[New comment by aranchelk in "Microsoft subtracts C/C++ extension from VS Code forks"]]></title><description><![CDATA[
<p>Not to quibble, but VSCode (and GitHub for that matter) are part of my tooling, not part of any of my stacks.<p>To me the former is tolerable, the latter is not.</p>
]]></description><pubDate>Thu, 24 Apr 2025 22:52:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=43788390</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43788390</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43788390</guid></item><item><title><![CDATA[New comment by aranchelk in "CINC Is Not Chef"]]></title><description><![CDATA[
<p>Did anyone ever tell them they lost? Are you volunteering?</p>
]]></description><pubDate>Fri, 04 Apr 2025 20:08:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=43587127</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43587127</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43587127</guid></item><item><title><![CDATA[New comment by aranchelk in "Things I would have told myself before building an autorouter"]]></title><description><![CDATA[
<p>> 2. Implementation Language doesn’t matter<p>> I’m controversially writing our autorouter in Javascript. This is the first thing people call out, but it’s not as unreasonable as you might expect. Consider that when optimizing an algorithm, you’re basically looking at improving two things:<p>> Lowering the number of iterations required (make the algorithm smart)
Increasing the speed of each iteration<p>It may be true in this domain, I wouldn’t know, but applied to software engineering in general IMO it would be a massively incorrect assumption to say choice of language doesn’t affect speed and needed number of iterations.</p>
]]></description><pubDate>Fri, 28 Mar 2025 04:57:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=43501681</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43501681</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43501681</guid></item><item><title><![CDATA[Octopus's Other Car Is a Shark]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.nytimes.com/2025/03/20/science/octopus-riding-shark-new-zealand.html">https://www.nytimes.com/2025/03/20/science/octopus-riding-shark-new-zealand.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43432458">https://news.ycombinator.com/item?id=43432458</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 21 Mar 2025 06:40:24 +0000</pubDate><link>https://www.nytimes.com/2025/03/20/science/octopus-riding-shark-new-zealand.html</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43432458</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43432458</guid></item><item><title><![CDATA[New comment by aranchelk in "Natural occurring molecule rivals Ozempic in weight loss, sidesteps side effects"]]></title><description><![CDATA[
<p>It’s not just the syntax. Regex isn’t directly composable (unless you just mash together strings). They cannot define nested structures, I.e. no recursion. They can’t maintain context.<p>We don’t need better language tools. Better parsers can, and already have, been implemented in libraries.<p>I’d have a look at parser combinators.</p>
]]></description><pubDate>Fri, 07 Mar 2025 15:25:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=43290898</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43290898</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43290898</guid></item><item><title><![CDATA[New comment by aranchelk in "But good sir, what is electricity?"]]></title><description><![CDATA[
<p>> We don’t have philosophically satisfying insights into the universe at subatomic scales. We have quantum mechanics: a set of equations that are good at predicting the behavior of elementary particles, but that don’t line up with our intuition about the macroscopic world.<p>Our analogies and intuitions are based off of our macroscopic experienced reality, this seems to be an entirely emergent phenomenon based on those strange behaviors described by quantum mechanics. If those insights ever do come, I don’t believe they’ll correspond to anything prewired into our brains or experienced in our lives, and will never be remotely satisfying.</p>
]]></description><pubDate>Mon, 24 Feb 2025 04:08:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=43155760</link><dc:creator>aranchelk</dc:creator><comments>https://news.ycombinator.com/item?id=43155760</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43155760</guid></item></channel></rss>