<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: agalunar</title><link>https://news.ycombinator.com/user?id=agalunar</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 08 Apr 2026 12:18:55 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=agalunar" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by agalunar in "Chess engines do weird stuff"]]></title><description><![CDATA[
<p>SPRT is used religiously in engine development today. There is enormous incentive to test efficiently.<p><a href="https://github.com/official-stockfish/fishtest/wiki/Fishtest-mathematics" rel="nofollow">https://github.com/official-stockfish/fishtest/wiki/Fishtest...</a></p>
]]></description><pubDate>Tue, 17 Feb 2026 20:09:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47052582</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=47052582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47052582</guid></item><item><title><![CDATA[New comment by agalunar in "Ask HN: Discrepancy between Lichess and Stockfish"]]></title><description><![CDATA[
<p>You may want to ask in the Stockfish discord: <a href="https://discord.com/invite/GWDRS3kU6R" rel="nofollow">https://discord.com/invite/GWDRS3kU6R</a></p>
]]></description><pubDate>Tue, 13 Jan 2026 21:56:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=46608813</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=46608813</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46608813</guid></item><item><title><![CDATA[New comment by agalunar in "Inverse Parentheses"]]></title><description><![CDATA[
<p>I believe Peano dot notation works the other way ’round;<p><pre><code>  A . B : C :. D
</code></pre>
would be, as I understand it, equivalent to:<p><pre><code>  ((A B) C) D
</code></pre>
<i>The “general principle” is that a larger number of dots indicates a larger subformula.</i>¹<p><i>What if you need to nest parentheses? Then you use more dots. A double dot</i> (:) <i>is like a single dot, but stronger. For example, we write</i> ((1 + 2) × 3) + 4 <i>as</i> 1 + 2 . × 3 : + 4, <i>and the double dot isolates the entire</i> 1 + 2 . × 3 <i>expression into a single sub-formula to which the</i> + 4 <i>applies.</i>²<p>A dot can be thought of as a pair of parentheses, “) (”, with implicit parentheses at the beginning and end as needed.<p><i>In general the “direction” rule for interpreting a formula</i> ‘A.B’ <i>will be to first indicate that the center dot “works both backwards and forwards” to give first</i> ‘A).(B’, <i>and then the opening and closing parentheses are added to yield</i> ‘(A).(B)’. <i>The extra set of pairs of parentheses is then reduced to the formula</i> (A.B).³<p>So perhaps one way of thinking about it is that more dots indicates more separation.<p>¹ <a href="https://plato.stanford.edu/entries/pm-notation/dots.html" rel="nofollow">https://plato.stanford.edu/entries/pm-notation/dots.html</a><p>² <a href="https://blog.plover.com/math/PM.html" rel="nofollow">https://blog.plover.com/math/PM.html</a><p>³ <a href="https://plato.stanford.edu/entries/pm-notation/dots.html" rel="nofollow">https://plato.stanford.edu/entries/pm-notation/dots.html</a><p>See also <a href="https://plato.stanford.edu/entries/pm-notation/index.html" rel="nofollow">https://plato.stanford.edu/entries/pm-notation/index.html</a> and <a href="https://muse.jhu.edu/article/904086" rel="nofollow">https://muse.jhu.edu/article/904086</a>.</p>
]]></description><pubDate>Mon, 22 Dec 2025 20:19:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=46358514</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=46358514</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46358514</guid></item><item><title><![CDATA[New comment by agalunar in "A brief history of Times New Roman"]]></title><description><![CDATA[
<p>I may be wrong, but I believe the name of the type family is simply <i>Times New;</i> the name of the italic face would then be <i>Times New Italic</i> rather than the contradictory <i>Times New Roman Italic</i>. It’s strange that the name of the roman face specifically is always used; I’d suppose it’s merely because that’s how the digital fonts were inadvertently named? <i>Times New Roman</i> has been the name in dropdown menus, and most laypeople are unfamiliar with <i>roman</i> as a term of art, so there’s no reason people wouldn’t use that name. But I wonder how the digital fonts came to be named <i>Times New Roman</i> rather than <i>Times New.</i></p>
]]></description><pubDate>Tue, 16 Dec 2025 19:37:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=46293307</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=46293307</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46293307</guid></item><item><title><![CDATA[New comment by agalunar in "Ditch your mutex, you deserve better"]]></title><description><![CDATA[
<p>> A data race occurs any time two threads access the same memory location concurrently and non-deterministically when at least one of the accesses is a write.<p>From what I understand of the C++ memory model (shared by C and Rust), this is not the definition of <i>data race</i> – a data race occurs when two or more threads access memory concurrently where at least one access is a write and the accesses are <i>unsynchronized.</i> However, synchronized accesses may not have a deterministic ordering, in which case a <i>race condition</i> occurs.<p>(Confusing as it may be, I believe this is standard terminology.)</p>
]]></description><pubDate>Tue, 18 Nov 2025 10:30:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=45963421</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=45963421</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45963421</guid></item><item><title><![CDATA[New comment by agalunar in "I'm working on implementing a programming language all my own"]]></title><description><![CDATA[
<p>I’d argue there’s a very big difference between “x: y” and “x : y”. I can only see the former as assignment and the latter as the has-type relation.<p>(I find it baffling in the extreme that in many mainstream languages the convention is to write type annotations as “x: T”, both prima facie and because in those languages the notation then collides with field assignment<i>!</i>)</p>
]]></description><pubDate>Sat, 30 Aug 2025 02:06:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=45071313</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=45071313</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45071313</guid></item><item><title><![CDATA[New comment by agalunar in "Undefined Behavior in C and C++ (2024)"]]></title><description><![CDATA[
<p>A small nit: the development of Unix began on the PDP-7 in assembly, not the PDP-11.<p>(The B language was implemented for the PDP-7 before the PDP-11, which are rather different machines. It’s sometimes suggested that the increment and decrement operators in C, which were inherited from B, are due to the instruction set architecture of the PDP-11, but this could not have been the case. Per Dennis Ritchie:¹<p>> Thompson went a step further by inventing the ++ and -- operators, which increment or decrement; their prefix or postfix position determines whether the alteration occurs before or after noting the value of the operand. They were not in the earliest versions of B, but appeared along the way. People often guess that they were created to use the auto-increment and auto-decrement address modes provided by the DEC PDP-11 on which C and Unix first became popular. This is historically impossible, since there was no PDP-11 when B was developed. The PDP-7, however, did have a few “auto-increment” memory cells, with the property that an indirect memory reference through them incremented the cell. This feature probably suggested such operators to Thompson; the generalization to make them both prefix and postfix was his own.<p>Another person puts it this way:²<p>> It's a myth to suggest C’s design is based on the PDP-11. People often quote, for example, the increment and decrement operators because they have an analogue in the PDP-11 instruction set. This is, however, a coincidence. Those operators were invented before the language [i.e. B] was ported to the PDP-11.<p>In any case, the PDP-11 usually gets all the love, but I want to make sure the other PDPs get some too!)<p>[1] <a href="https://www.bell-labs.com/usr/dmr/www/chist.html" rel="nofollow">https://www.bell-labs.com/usr/dmr/www/chist.html</a><p>[2] <a href="https://retrocomputing.stackexchange.com/questions/8869" rel="nofollow">https://retrocomputing.stackexchange.com/questions/8869</a></p>
]]></description><pubDate>Tue, 12 Aug 2025 16:21:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=44878449</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=44878449</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44878449</guid></item><item><title><![CDATA[New comment by agalunar in "The demographic future of humanity: facts and consequences [pdf]"]]></title><description><![CDATA[
<p>I’ve noticed that, besides the magnetism and drive for sex (which would be sufficient for a species to propagate), many people also experience the biological imperative (wanting their genes replicated) as its own separate feeling.<p>This makes no sense to me – it’s not a feeling I can personally relate to. I’d like to raise kids because I’d enjoy getting to teach them and share things with them, but I don’t care whether they are my biological children or not.<p>So it’s something I’ve wondered about. The likely <i>why</i> makes sense, but I don’t really get the <i>what</i>.</p>
]]></description><pubDate>Tue, 12 Aug 2025 00:59:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=44871203</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=44871203</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44871203</guid></item><item><title><![CDATA[New comment by agalunar in "Underrated Soft Skills: Charisma"]]></title><description><![CDATA[
<p>At some point in my life I unconsciously decided that charisma (in this sense) was something I did not want to exercise, and was perhaps even wrong to exercise.<p>In so many facets of our lives already, our wants are being manipulated for the benefit of others. And who am I to decide what is important? For things that involve other people, I’d rather make that decision collectively. I want the thoughts, opinions, and feelings of people who don’t possess or exercise charisma to have space and weight.</p>
]]></description><pubDate>Tue, 18 Mar 2025 23:27:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=43406458</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=43406458</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43406458</guid></item><item><title><![CDATA[New comment by agalunar in "Xonsh – A Python-powered shell"]]></title><description><![CDATA[
<p>People may also be interested in the Tako shell, which is a fork of Xonsh that   “sacrifice[s] some of the ‘fancy stuff’ so that basic shell operations work as expected, the codebase is small, and things are as performant as can be expected from a shell written in Python.”<p>(Homepage) <a href="https://takoshell.org/index.html" rel="nofollow">https://takoshell.org/index.html</a><p>(Differences from Xonsh) <a href="https://takoshell.org/xonsh.html" rel="nofollow">https://takoshell.org/xonsh.html</a></p>
]]></description><pubDate>Tue, 25 Feb 2025 23:22:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=43178813</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=43178813</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43178813</guid></item><item><title><![CDATA[New comment by agalunar in "Softmax forever, or why I like softmax"]]></title><description><![CDATA[
<p>You’d perhaps be better off using U+2002 EN SPACE (or the canonically equivalent U+2000 EN QUAD).<p>From what I recall, the size of a typical interword space is ⅓ of an em, and traditionally a bit more than this is inserted between sentences (but less than ⅔ of an em). The period itself introduces a fair amount of negative space, and only a skosh more is needed if any.</p>
]]></description><pubDate>Thu, 20 Feb 2025 23:42:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=43122042</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=43122042</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43122042</guid></item><item><title><![CDATA[New comment by agalunar in "Softmax forever, or why I like softmax"]]></title><description><![CDATA[
<p>Belying the name somewhat, I believe U+3000 is specifically meant for use with Sinoform logographs, having the size of a (fullwidth character) cell, and so it makes little sense in other contexts.</p>
]]></description><pubDate>Thu, 20 Feb 2025 20:49:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=43119988</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=43119988</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43119988</guid></item><item><title><![CDATA[New comment by agalunar in "It's time to abandon the cargo cult metaphor"]]></title><description><![CDATA[
<p>“Imitation without understanding”, “imitating but misconstruing”, “mindless imitation”, “superficial emulation”, &c.<p>I think “cargo culting” in the popular sense means little more than that (whereas actual cargo culting is much more complex, as the featured article describes).</p>
]]></description><pubDate>Mon, 13 Jan 2025 00:02:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=42678403</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=42678403</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42678403</guid></item><item><title><![CDATA[New comment by agalunar in "What's new in C++26 (part 1)"]]></title><description><![CDATA[
<p>I've always been mystified by that expansion. "The featured article" seems to me to make much more sense.</p>
]]></description><pubDate>Sat, 07 Sep 2024 19:08:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=41475744</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=41475744</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41475744</guid></item><item><title><![CDATA[New comment by agalunar in "The Typeset of Wall·E (2018)"]]></title><description><![CDATA[
<p>Perhaps “The Typefaces of Wall·E”, plural?</p>
]]></description><pubDate>Fri, 12 Jul 2024 08:35:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=40943716</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=40943716</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40943716</guid></item><item><title><![CDATA[New comment by agalunar in "The Typeset of Wall·E (2018)"]]></title><description><![CDATA[
<p>To save someone the lookup, this is:<p><pre><code>    U+00B7 MIDDLE DOT = midpoint (in typography); Georgian comma; Greek middle dot (ano teleia) • also used as a raised decimal point or to denote multiplication; for multiplication 22C5 is preferred
</code></pre>
But note there is a separate Unicode scalar value for the dot operator:<p><pre><code>    U+22C5 DOT OPERATOR • preferred to 00B7 for denotation of multiplication</code></pre></p>
]]></description><pubDate>Thu, 11 Jul 2024 18:38:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=40939366</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=40939366</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40939366</guid></item><item><title><![CDATA[New comment by agalunar in "The Typeset of Wall·E (2018)"]]></title><description><![CDATA[
<p>Those aren’t syllable divisions, they’re hyphenation points!<p>From the footnote on page 219 of <i>Word by Word</i> by Kory Stamper (formerly a lexicographer at Merriam-Webster):<p>> Here is the one thing that our pronunciation editor wishes everyone knew: those dots in the headwords, like at “co·per·nic·i·um,” are not marking syllable breaks, as is evident by comparing the placement of the dots with the placement of the hyphens in the pronunciation. Those dots are called “end-of-line division dots,” and they exist solely to tell beleaguered proof-readers where, if they have to split a word between lines, they can drop a hyphen.</p>
]]></description><pubDate>Thu, 11 Jul 2024 18:36:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=40939346</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=40939346</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40939346</guid></item><item><title><![CDATA[New comment by agalunar in "The Typeset of Wall·E (2018)"]]></title><description><![CDATA[
<p>The title of the submission should be changed to “Type in Wall·E”, “Typesetting in Wall·E”, or “Typography in Wall·E”; the word “typeset” is a verb or past participle, not a noun.</p>
]]></description><pubDate>Thu, 11 Jul 2024 17:19:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=40938704</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=40938704</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40938704</guid></item><item><title><![CDATA[New comment by agalunar in "A proof of proof by infinite descent"]]></title><description><![CDATA[
<p>My line of thinking roughly was, "each type system corresponds to a particular logic system and vice versa; in a proof by induction, the different cases correspond to the type constructors, but what does the necessary axiom schema or second-order axiom of induction correspond to? (in order to avoid the problem of nonstandard elements). And proof by infinite descent seems to require something other than induction, so where does well-foundedness come from?"<p>I realize these questions may not even be posed sensibly; maybe the answer is as simple as, "the naturals are defined constructively here; of course they are <i>the</i> naturals and therefore are well-founded". As I said, it's been a while, so things are hazy in my mind.</p>
]]></description><pubDate>Tue, 02 Jul 2024 12:49:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=40856120</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=40856120</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40856120</guid></item><item><title><![CDATA[New comment by agalunar in "A proof of proof by infinite descent"]]></title><description><![CDATA[
<p>How does infinite descent work using a proof assistant? It's been quite a while, so I may be remembering incorrectly, but this is my understanding:<p>Coq uses an inductive type like "N = 0 : N | S : N → N", and a first-order theory with integers axiomatized this way admits nonstandard models (whose prefixes are isomorphic to the naturals but have elements not reachable by repeated application of S, defeating infinite descent). But universal quantification in system F (inherited by the calculus of inductive constructions) corresponds to a fragment of second-order logic, where there is only one model (– the theory is categorical).<p>Is that right?</p>
]]></description><pubDate>Tue, 02 Jul 2024 04:09:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=40853482</link><dc:creator>agalunar</dc:creator><comments>https://news.ycombinator.com/item?id=40853482</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40853482</guid></item></channel></rss>