<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: entaloneralie</title><link>https://news.ycombinator.com/user?id=entaloneralie</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 17 Apr 2026 08:22:52 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=entaloneralie" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by entaloneralie in "All elementary functions from a single binary operator"]]></title><description><![CDATA[
<p>For trailing zeros yeah, or if you care for stack overflow/underflow.
Here's a few primitives if you wanna try it out:<p><a href="https://paste.sr.ht/~rabbits/cd2369cc7c72bfad0fcd83e2768209515fb019e4" rel="nofollow">https://paste.sr.ht/~rabbits/cd2369cc7c72bfad0fcd83e27682095...</a></p>
]]></description><pubDate>Mon, 13 Apr 2026 14:51:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47752865</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47752865</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47752865</guid></item><item><title><![CDATA[New comment by entaloneralie in "All elementary functions from a single binary operator"]]></title><description><![CDATA[
<p>I never claimed it was novel, chill.</p>
]]></description><pubDate>Mon, 13 Apr 2026 14:23:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=47752432</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47752432</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47752432</guid></item><item><title><![CDATA[New comment by entaloneralie in "All elementary functions from a single binary operator"]]></title><description><![CDATA[
<p>This is amazing! I love seeing FRACTRAN-shaped things on the homepage :) This reminds me of how 1-bit stacks are encoded in binary:<p>A stack of zeros and ones can be encoded in a single number by keeping with bit-shifting and incrementing.<p><pre><code>    Pushing a 0 onto the stack is equivalent to doubling the number.
    Pushing a 1 is equivalent to doubling and adding 1.
    Popping is equivalent to dividing by 2, where the remainder is the number.
</code></pre>
I use something not too far off for my daily a programming based on a similar idea:<p><i>Rejoice is a concatenative programming language in which data is encoded as multisets that compose by multiplication. Think Fractran, without the rule-searching, or Forth without a stack.</i><p><a href="https://wiki.xxiivv.com/site/rejoice" rel="nofollow">https://wiki.xxiivv.com/site/rejoice</a></p>
]]></description><pubDate>Mon, 13 Apr 2026 04:05:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=47747467</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47747467</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47747467</guid></item><item><title><![CDATA[New comment by entaloneralie in "Writing my own text editor, and daily-driving it"]]></title><description><![CDATA[
<p>Oh damn, I very much misread your message as "I'm 19 and using my own-"<p>Yeah, okay you have 10 years of dogfooding ahead of me X)<p>Sorry. Still, goals.</p>
]]></description><pubDate>Wed, 11 Mar 2026 17:31:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=47338559</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47338559</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47338559</guid></item><item><title><![CDATA[New comment by entaloneralie in "Writing my own text editor, and daily-driving it"]]></title><description><![CDATA[
<p>hell yeah that's awesome, I wish I had that insight when I was your age so I didn't waste my time editor hoping for 5 years.</p>
]]></description><pubDate>Wed, 11 Mar 2026 17:12:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47338315</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47338315</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47338315</guid></item><item><title><![CDATA[New comment by entaloneralie in "Writing my own text editor, and daily-driving it"]]></title><description><![CDATA[
<p>One of the first thing I added was Leap keys-type search, I didn't want modes.<p>- Leap keys: <a href="https://www.youtube.com/watch?v=o_TlE_U_X3c" rel="nofollow">https://www.youtube.com/watch?v=o_TlE_U_X3c</a><p>The second was pragma-mark navigation, so I can always see a overview of the codebase.<p>- navbar: <a href="https://assets.merveilles.town/media_attachments/files/116/211/615/730/667/426/original/0d3c1cb815166fd3.png" rel="nofollow">https://assets.merveilles.town/media_attachments/files/116/2...</a><p>I also wanted a local copy buffer specific to the project I work on, so I could easily manage multiple copies of the clipboard data(it's part of how I work).</p>
]]></description><pubDate>Wed, 11 Mar 2026 17:06:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=47338227</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47338227</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47338227</guid></item><item><title><![CDATA[New comment by entaloneralie in "Writing my own text editor, and daily-driving it"]]></title><description><![CDATA[
<p>This was so nice to read, I've been trying to encourage my friends to write their own editors, there's something really nice about the process of working within your own tool. I've used my own text editor(it's call Left) for nearly 10 years, it took time to get it just right, but I iterated over the years(using Left to edit Left) but that time I spent putting it together is paid back 20x by the joy it gives me opening it and working in it in the morning.<p>I'd do it all over again if I had to.</p>
]]></description><pubDate>Wed, 11 Mar 2026 14:50:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=47336361</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47336361</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47336361</guid></item><item><title><![CDATA[New comment by entaloneralie in "Permacomputing"]]></title><description><![CDATA[
<p>When it happens to you, you can see how you react. I sure remember having your stance at one point, in the abstract. My personal use of license is reactionary to the situations I've experienced.<p>I never really looked into the GPL before, their stance on military use includes freedom of usage for institutions whose purpose is surveillance and warfare, my gut feeling is that they might not have asked themselves freedom for whom? the missile manufacturer? I'm not sure that this sounds like freedom.<p>I'll say this right out, I'll bounce out of open source if I ever see my code used for military purposes. I'll keep releasing works under the MIT until I can no longer in good conscience do so.</p>
]]></description><pubDate>Sun, 22 Feb 2026 01:18:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47107061</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47107061</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47107061</guid></item><item><title><![CDATA[New comment by entaloneralie in "Permacomputing"]]></title><description><![CDATA[
<p>It's a good stance, I commend it. Although, there's a history as to why the license is there.<p>The license exists there so that we were able to do take down requests on OpenSea. We had to make the asset license explicit for OpenSea to take down the copied works off their network.<p>In a different world where we are not made to participate in crypto ecosystems against our will, we would not have that restriction.</p>
]]></description><pubDate>Sun, 22 Feb 2026 00:35:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47106739</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=47106739</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47106739</guid></item><item><title><![CDATA[New comment by entaloneralie in "Housman's Introductory Lecture (1892)"]]></title><description><![CDATA[
<p>Fantastic talk, there's a bit of context which makes it all the more interesting.<p>This lecture was delivered on 3 October, 1892, by the newly-appointed Professor of Latin at University College, London, Alfred Edward Housman (1859-1936). This speech would be simply one example from hundreds of the genre, if it weren’t for three remarkable facts.<p>First, not only had Housman held no previous position in academia, he had spectacularly failed his examinations in Literae Humaniores (Classics) at Oxford. After a brief spell teaching at his old school, and quietly taking a mere Pass degree, he worked at the Patent Office in London, researching Greek and Latin literature in the British Museum Library whenever time allowed. For him to be appointed from outside Classics into the Chair of Latin[1] at one of Britain’s leading universities remains one of the most remarkable events in the history of academia, and indeed has merited a most remarkable book on the subject. Housman went on to become the most important Latin scholar in the world, and serving for a quarter-century as Kennedy Professor Latin at Cambridge (1911-36); when he left UCL he joked how he was “lifted out of the gutter” by his election in 1892.<p>Second, this is Housman’s first appearance in public as a scholar: he had little to no history of giving lectures, reading papers, or addressing academics in any capacity.[2] That he enters the fray with such clarity of purpose and conviction of voice is a mark of the man.<p>Third, Housman’s speech stands as one of the most eloquent defences of a principle that in his day was often challenged, and in our day is so rarely defended, viz that knowledge is inherently good: as humans we naturally pursue it; to acquire it gives pleasure; and each person is drawn, in theory if not always in practice, to different modes and realms of knowledge. The Sciences cannot be adequately defended on the basis of the utility they bring, nor the Humanities on the basis of the morally enriching power they are meant to wield. In short, Housman tells the assembled Faculties of Arts, Laws and Science, that their particular expertise is all well and good, but the value they possess for wider society, and indeed the right they assume for moral grandstanding, are capped at a relatively early stage in their intellectual progress. What lies beyond that point requires other justification, or none at all.<p>From: <a href="https://antigonejournal.com/2024/10/a-e-housman-introductory-lecture-1892/" rel="nofollow">https://antigonejournal.com/2024/10/a-e-housman-introductory...</a></p>
]]></description><pubDate>Fri, 06 Feb 2026 05:42:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=46909537</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46909537</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46909537</guid></item><item><title><![CDATA[New comment by entaloneralie in "Gas Town's agent patterns, design bottlenecks, and vibecoding at scale"]]></title><description><![CDATA[
<p>Brawndo energy</p>
]]></description><pubDate>Fri, 23 Jan 2026 17:02:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=46734845</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46734845</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46734845</guid></item><item><title><![CDATA[Apples, Trees, and Quasimodes]]></title><description><![CDATA[
<p>Article URL: <a href="https://systemstack.dev/2025/09/humane-computing/">https://systemstack.dev/2025/09/humane-computing/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46659465">https://news.ycombinator.com/item?id=46659465</a></p>
<p>Points: 48</p>
<p># Comments: 2</p>
]]></description><pubDate>Sat, 17 Jan 2026 16:44:45 +0000</pubDate><link>https://systemstack.dev/2025/09/humane-computing/</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46659465</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46659465</guid></item><item><title><![CDATA[New comment by entaloneralie in "This is not the future"]]></title><description><![CDATA[
<p>I'm paying infrastructure costs for our little art community, chatbot crawling our servers and ignoring robots.txt, mining the work of our users so it can make copies, and being told that I don't get because this is such a paradigm shift, is pretty great..</p>
]]></description><pubDate>Tue, 16 Dec 2025 16:14:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=46290370</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46290370</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46290370</guid></item><item><title><![CDATA[New comment by entaloneralie in "An attempt to articulate Forth's practical strengths and eternal usefulness"]]></title><description><![CDATA[
<p>After using cc<< for non-trivial programs, it's about as quirky as the Plan 9 C compiler, the lack of multi-dimensional arrays is the one thing that trips me up the most with cc<<</p>
]]></description><pubDate>Mon, 15 Dec 2025 03:01:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=46269960</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46269960</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46269960</guid></item><item><title><![CDATA[New comment by entaloneralie in "An attempt to articulate Forth's practical strengths and eternal usefulness"]]></title><description><![CDATA[
<p>It's complete in sofar as being capable of compiling C programs, but it has a few quirks.<p><a href="https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/comp/c.txt#L53" rel="nofollow">https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/co...</a></p>
]]></description><pubDate>Mon, 15 Dec 2025 02:51:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=46269897</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46269897</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46269897</guid></item><item><title><![CDATA[New comment by entaloneralie in "An attempt to articulate Forth's practical strengths and eternal usefulness"]]></title><description><![CDATA[
<p>Came here to say exactly that, cc<< blows these numbers out of the water. Strange choice from the author.</p>
]]></description><pubDate>Mon, 15 Dec 2025 02:50:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=46269885</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46269885</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46269885</guid></item><item><title><![CDATA[New comment by entaloneralie in "The Resonant Computing Manifesto"]]></title><description><![CDATA[
<p>Private, Dedicated, Plural..<p>Sign the Google Docs.<p>These people are clueless af.</p>
]]></description><pubDate>Fri, 12 Dec 2025 15:56:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=46245307</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46245307</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46245307</guid></item><item><title><![CDATA[New comment by entaloneralie in "Gundam is just the same as Jane Austen but happens to include giant mech suits"]]></title><description><![CDATA[
<p>That would be Fanny Price</p>
]]></description><pubDate>Wed, 10 Dec 2025 19:02:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=46221992</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46221992</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46221992</guid></item><item><title><![CDATA[New comment by entaloneralie in "The Nova Programming Language"]]></title><description><![CDATA[
<p>Did you mean the REFAL rewriting language?</p>
]]></description><pubDate>Tue, 09 Dec 2025 01:19:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=46200150</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=46200150</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46200150</guid></item><item><title><![CDATA[New comment by entaloneralie in "How Slide Rules Work"]]></title><description><![CDATA[
<p>I have a little collection of them. 
I keep the small Hemmi bamboo on the navigation table at all time.<p><a href="https://wiki.xxiivv.com/site/slide_rule" rel="nofollow">https://wiki.xxiivv.com/site/slide_rule</a></p>
]]></description><pubDate>Thu, 20 Nov 2025 03:11:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=45988454</link><dc:creator>entaloneralie</dc:creator><comments>https://news.ycombinator.com/item?id=45988454</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45988454</guid></item></channel></rss>