<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: retroflexzy</title><link>https://news.ycombinator.com/user?id=retroflexzy</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 18 Jun 2026 05:35:42 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=retroflexzy" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by retroflexzy in "Lore – Open source version control system designed for scalability"]]></title><description><![CDATA[
<p>A significant part of my job, unfortunately, is helping people fix their workspaces when Perforce (p4) goes bad, or creating guardrails and wrappers to stop Perforce doing bad things.<p>In fairness, p4 predates most of the VCSes we consider "modern", so I empathize with a lot of the underlying architecture decisions.  However, it has and continues to utterly fail at improving at a reasonable pace.<p>For example:<p><pre><code>  - p4 tracks file metadata of client workspaces on the server (sync'ed locally, opened for edit, file revision, etc) and uses this as the basis to avoid doing unneeded work.  If this becomes desync'ed, a reconcile or force sync must be used.  A reconcile can take hours, potentially days; it tries do detect file moves by default, so likely at least O(c^n) for some c>1. I have never personally seen a default reconcile operation _complete_ over any modestly large game code base, and in practice, people accumulate a litany of workarounds and scripts to fix this for themselves.

  - Scripting p4 is a nightmare. Documentation is poor, schemas do not exist, and all the language-specific libraries are just thin wrappers over its C++ API.

  - By default, p4 "helps" you with text files by "correcting" line endings on sync or even converting between encodings. This works until you have a mixed-OS environment, and discover a part of the pipechain that _must_ have a certain style.  There are various levers to pull to make this better, but I've yet to find something fool proof.

  - By default, p4 keeps flies read-only, only unlocking them when explicitly marked as being edited.  This means, to avoid having to do this manually, every tool you use needs to be p4-aware.  Or, you can turn this off, and choose to contend reconcile instead. (See above)

  - Branching a modest game project, with, say, Unreal source code, can take hours.  And this is the quick version where you ask the server to simply create new metadata, with no file transfer to a client.

  - p4 is licensed by the user-account. Every user entity in p4 not intended exclusively for performing backups and maintenance operations counts toward this, including users required to integrate with other services.  Plus, often times, these integration users must have admin access to be useful. The security posture is horrific.</code></pre></p>
]]></description><pubDate>Wed, 17 Jun 2026 16:39:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48572947</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=48572947</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48572947</guid></item><item><title><![CDATA[New comment by retroflexzy in "Sequoyah’s syllabary created a written language for the Cherokee"]]></title><description><![CDATA[
<p>> A writing system that used strict phonetic transcription for everything would be unusably bad.<p>This is, for better or worse, what is being done to incorporate aboriginal names into things like streets and bridges in places like Vancouver.<p>- [stal̕əw̓asəm Bridge](<a href="https://en.wikipedia.org/wiki/Stal%CC%95%C9%99w%CC%93as%C9%99m_Bridge" rel="nofollow">https://en.wikipedia.org/wiki/Stal%CC%95%C9%99w%CC%93as%C9%9...</a>)
- [šxʷməθkʷəy̓əmasəm Street](<a href="https://vancouver.ca/news-calendar/musqueamview-street-signs-unveiled-today-at-community-celebration.aspx" rel="nofollow">https://vancouver.ca/news-calendar/musqueamview-street-signs...</a>)<p>I see the practicalities of adopting this IPA-lite form, but it's a struggle to use, even though I've previously been trained in IPA.</p>
]]></description><pubDate>Thu, 11 Jun 2026 00:31:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=48484765</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=48484765</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48484765</guid></item><item><title><![CDATA[New comment by retroflexzy in "Why is the sky blue?"]]></title><description><![CDATA[
<p>Back in my youth, after the Internet became common but before Wikipedia, I tried to discover the answer to this and came away disappointed again and again. Every article I could find simply stated "because light scattering", and barely much more.<p>How does scattering work? Why does light scatter? _What does scattering even mean in the context of light?_</p>
]]></description><pubDate>Mon, 09 Feb 2026 17:39:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=46948209</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=46948209</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46948209</guid></item><item><title><![CDATA[New comment by retroflexzy in "Windows drive letters are not limited to A-Z"]]></title><description><![CDATA[
<p>After C:, it really is just allocated in order.<p>Between CD/DVD drives, writers, Zip Drives, and extra hard drives, it wasn't unusual for a workstation to naturally end up with G: or H:, before mapped network storage became common.</p>
]]></description><pubDate>Sun, 30 Nov 2025 21:35:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=46100666</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=46100666</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46100666</guid></item><item><title><![CDATA[New comment by retroflexzy in "Production-Grade Container Deployment with Podman Quadlets – Larvitz Blog"]]></title><description><![CDATA[
<p>> Ansible is a complete mess. You're better off managing things with Puppet or Salt, as that gives you an actual declarative mechanism<p>We thought this, too, when choosing Salt over Ansible, but that was a complete disaster.<p>Ansible is definitely designed to operate at a lower abstraction level, but modules that behave like desired state declarations actually work very well.  And creating your own modules turned out to be at least an order of magnitude easier than in Salt.<p>We do use Ansible to manage containers via podman-systemd, but slightly hampered by Ubuntu not shipping with podman 5.  It's... fine?<p>Our mixed Windows, Linux VM and Linux bare metal deployment scenario is likely fairly niche, but Ansible is really the only tenable solution.</p>
]]></description><pubDate>Sun, 16 Nov 2025 18:46:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=45947366</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=45947366</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45947366</guid></item><item><title><![CDATA[New comment by retroflexzy in "Retiring Test-Ipv6.com"]]></title><description><![CDATA[
<p>It was "fun" discovering this the hard way a number of years ago when active US Android user count for a game we were supporting dropped 15% essentially overnight. The TCP stack in the client only did IPv4.<p>The challenge, ironically, was convincing management that adding IPv6 was the thing worth trying.  After almost a week of getting nowhere (and almost 2 weeks of outage), I forced the issue by saying "Look, I'm doing this. I need one engineer for 2 days. If it doesn't work, then it doesn't work."<p>He got the change implemented in 2 hours.  QA OKed it the next day.  The topic never came up again.</p>
]]></description><pubDate>Sun, 05 Oct 2025 20:05:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=45484735</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=45484735</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45484735</guid></item><item><title><![CDATA[New comment by retroflexzy in ""Remove mentions of XSLT from the html spec""]]></title><description><![CDATA[
<p>I once attempted to use XSLT to transform SOAP requests generated by our system so the providers' implementation would accept them. This included having to sufficiently grok XSD, WSDL el at to figure out what part of the chain is broken.<p>At the end of the (very long) process, I just hard-coded the reference request XML given by the particularly problematic endpoints, put some regex replacements behind it, and called it a day.</p>
]]></description><pubDate>Tue, 19 Aug 2025 17:21:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=44953930</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=44953930</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44953930</guid></item><item><title><![CDATA[New comment by retroflexzy in "Projects evaluated to see if they're as free and open source as advertised"]]></title><description><![CDATA[
<p>Or, at least, not giving a fair take on its particular approach to open source.<p>We both self-host and pay for the service. There is ample engagement from the development team with the larger community.  There are also a myriad of open source projects without the same licence restrictions that Sentry-the-company publishes or maintains which make up key functionalities in Sentry-the-product.</p>
]]></description><pubDate>Tue, 05 Aug 2025 00:55:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=44793164</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=44793164</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44793164</guid></item><item><title><![CDATA[New comment by retroflexzy in "The fish kick may be the fastest subsurface swim stroke yet (2015)"]]></title><description><![CDATA[
<p>There was a period in World Rally Championship history when the top drivers would manipulate the starting order for the following day's stages by intentionally slowing down before the end of the stage.  It was bizarre to watch teams intentionally give up 10+ second margins when stage wins can come down to half-second gaps.</p>
]]></description><pubDate>Sat, 12 Jul 2025 16:54:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=44543301</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=44543301</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44543301</guid></item><item><title><![CDATA[New comment by retroflexzy in "Show HN: I made a live multiplayer Minesweeper game"]]></title><description><![CDATA[
<p>Neat! Takes me back to highschool... <a href="https://lostmediawiki.com/Minesweeper_Flags_(lost_Windows_Live_Messenger_game;_2000s)" rel="nofollow">https://lostmediawiki.com/Minesweeper_Flags_(lost_Windows_Li...</a></p>
]]></description><pubDate>Tue, 18 Mar 2025 14:49:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=43400132</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=43400132</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43400132</guid></item><item><title><![CDATA[New comment by retroflexzy in "Going down the rabbit hole of Git's new bundle-URI"]]></title><description><![CDATA[
<p>There is a cursor rendering fix in xf86-video-radeonhd (or perhaps -radeon) that flips a single bit.<p>It took the group several years to narrow in on.</p>
]]></description><pubDate>Sun, 16 Mar 2025 23:24:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=43383580</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=43383580</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43383580</guid></item><item><title><![CDATA[New comment by retroflexzy in "Uv's killer feature is making ad-hoc environments easy"]]></title><description><![CDATA[
<p>uv implements PEP 723.<p><a href="https://packaging.python.org/en/latest/specifications/inline-script-metadata/" rel="nofollow">https://packaging.python.org/en/latest/specifications/inline...</a><p>Especially useful if the script has dependencies on packages in private repos.</p>
]]></description><pubDate>Sun, 12 Jan 2025 20:49:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=42676804</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=42676804</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42676804</guid></item><item><title><![CDATA[New comment by retroflexzy in "The Mathematics of Tetris (2011)"]]></title><description><![CDATA[
<p>Here is a list of all rotations systems known to be in use by various Tetris implementations: <a href="http://harddrop.com/wiki/Category:Rotation_Systems" rel="nofollow">http://harddrop.com/wiki/Category:Rotation_Systems</a></p>
]]></description><pubDate>Mon, 11 Jan 2016 23:25:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=10884438</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=10884438</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10884438</guid></item><item><title><![CDATA[New comment by retroflexzy in "The Tech Talent Shortage Is a Lie"]]></title><description><![CDATA[
<p>(I'm assuming you are a Canadian student due to referring to the work as "Co-op")<p>In general, Canadian labour laws prohibit what are typically considered unpaid internships, although it varies slightly by province.[1][2]  My understanding is that this is not the case across most of the United States.<p>[1]: <a href="http://www.labour.gov.on.ca/english/es/pubs/internships.php" rel="nofollow">http://www.labour.gov.on.ca/english/es/pubs/internships.php</a>
[2]: <a href="https://www.labour.gov.bc.ca/esb/igm/esa-part-1/igm-esa-s1-work.htm" rel="nofollow">https://www.labour.gov.bc.ca/esb/igm/esa-part-1/igm-esa-s1-w...</a></p>
]]></description><pubDate>Fri, 13 Nov 2015 18:54:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=10561640</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=10561640</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10561640</guid></item><item><title><![CDATA[New comment by retroflexzy in "Why Some Languages Sound Faster Than Others"]]></title><description><![CDATA[
<p>A nice segue into a key point about Linguistics, and some Japanese facts.<p>The study of Linguistics, explicitly, does not deal with orthography, or the written system of languages.  There are of course exceptions with good reasons, but orthography systems are rarely, if ever, good representations of the systems of auditory communication that are formally considered languages.  An orthography system can be heavily influenced by geopolitics (Chinese), have severe ambiguities (Arabic, the various Latin alphabet systems), or have been created retroactively (many languages of indigenous peoples).  While it is convenient to map a spoken language to its related orthography when discussing topics such as syllables, inflection, and morphology, it is rarely appropriate when studying linguistics formally.<p>As for Japanese, while it is true that its alphabet system has a relatively straightforward mapping to its phonology, the mapping itself is, unfortunately, not unambiguous.  Japanese has a tonal system[1] that is not explicit in its orthography. There are examples of phonemically distinct words that are identical when written in hiragana/katakana.<p>Finally, there exists a moraic system[2] which sits between the phonemic and syllabic abstractions. Japanese, especially, have many phenomenons that cannot be adequately modelled unless working in this in-between system.<p>[1]: <a href="http://en.wikipedia.org/wiki/Japanese_pitch_accent" rel="nofollow">http://en.wikipedia.org/wiki/Japanese_pitch_accent</a><p>[2]: <a href="http://en.wikipedia.org/wiki/Mora_%28linguistics%29" rel="nofollow">http://en.wikipedia.org/wiki/Mora_%28linguistics%29</a></p>
]]></description><pubDate>Fri, 09 Sep 2011 07:21:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=2977246</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=2977246</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=2977246</guid></item><item><title><![CDATA[New comment by retroflexzy in "The Price of (Dev) Happiness: Part One"]]></title><description><![CDATA[
<p>An Aeron of the wrong size will definitely kill circulation in your thighs. The difference is surprisingly obvious once you try the various sizes.</p>
]]></description><pubDate>Wed, 10 Aug 2011 18:22:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=2869492</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=2869492</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=2869492</guid></item><item><title><![CDATA[New comment by retroflexzy in "Duke Nukem Forever has gone gold"]]></title><description><![CDATA[
<p>Yes. I can't really talk about it, but, yes.</p>
]]></description><pubDate>Tue, 24 May 2011 15:03:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=2580074</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=2580074</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=2580074</guid></item><item><title><![CDATA[New comment by retroflexzy in "Japanese Programming Syntax"]]></title><description><![CDATA[
<p><i>To English speakers, using different counters for different classes of nouns is a pretty strange feature...</i><p>Strange, perhaps, but present. To a native Chinese and Japanese speaker like myself, the list of collective nouns for animals in English is staggering, almost mindblowing, and appears absolutely arbitrary: <a href="http://en.wikipedia.org/wiki/List_of_collective_nouns_by_subject_A-H" rel="nofollow">http://en.wikipedia.org/wiki/List_of_collective_nouns_by_sub...</a></p>
]]></description><pubDate>Wed, 20 Apr 2011 14:41:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=2466768</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=2466768</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=2466768</guid></item><item><title><![CDATA[New comment by retroflexzy in "Designers, how do we get you guys to contribute to open source projects?"]]></title><description><![CDATA[
<p>I'm surprised no one has brought up how <i>difficult</i> it often is to incorporate design changes into an existing project unless it has been developed with such accommodations from day 1.  Even a seemingly simple software project can be monstrously complex under the hood, and something as innocent as "this button should be larger than the rest" can mean weeks and months of proofing, coding, and testing. (e.g. Firefox 3's back button)<p>Whether a change comes in the form of code fixes, documentation improvement, refactoring, design changes, or infrastructural modifications, the burden of understanding the potential scope of damage and doing the actual work is always, always on the contributor. Convincing another to take on the work on their behalf is always a possibility, but it should not be hard to see why design changes proposed through such a channel will often be pushed to the back of the queue, unless for some dire need.<p>Designer or coder, there is no excuse for not doing due diligence in making sure a contribution is a good contribution.<p>Looking at the discussion so far, there appears to be at least some consensus that non-trivial effort above and beyond the (hopefully) expected hand-holding must be dedicated to designers in order for them to become good contributors. And, in corollary, the natural conclusion is that it's unrealistic to expect designers to put in the necessary effort to become good contributors on their own.<p>Following from the above, the more crucial questions, I think, are "How do we convince projects that they should go out of their way to attract designers", and, "Do you really need designers? Really, really, need them?"</p>
]]></description><pubDate>Sun, 27 Feb 2011 20:07:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=2268768</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=2268768</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=2268768</guid></item><item><title><![CDATA[Is Wayland going to replace X?]]></title><description><![CDATA[
<p>Article URL: <a href="http://blogs.sun.com/alanc/entry/is_wayland_going_to_replace">http://blogs.sun.com/alanc/entry/is_wayland_going_to_replace</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=1874959">https://news.ycombinator.com/item?id=1874959</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 05 Nov 2010 21:17:13 +0000</pubDate><link>http://blogs.sun.com/alanc/entry/is_wayland_going_to_replace</link><dc:creator>retroflexzy</dc:creator><comments>https://news.ycombinator.com/item?id=1874959</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=1874959</guid></item></channel></rss>