<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: strictfp</title><link>https://news.ycombinator.com/user?id=strictfp</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 01:35:57 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=strictfp" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by strictfp in "'Life being stressful is not an illness' – GPs on mental health over-diagnosis"]]></title><description><![CDATA[
<p>I've seen work environments that are chaotic, and people are expected to deliver things that they can't deliver without navigating and taming the chaos to do their bidding.<p>If course that's stressful. You can't expect individuals to tame the organization.<p>I think some parts of IT have deteriorated into anarchy with tyrannic leadership.<p>Sure, you can have anarchy. But then don't expect any particular timelines.<p>You can hire armies of people. But then don't expect one corner of the org to be able to deliver something that involves talking to everyone.<p>You can't have the cake and eat it too.</p>
]]></description><pubDate>Sat, 06 Dec 2025 13:13:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=46173091</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=46173091</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46173091</guid></item><item><title><![CDATA[New comment by strictfp in "Don’t build a general purpose API to power your own front end (2021)"]]></title><description><![CDATA[
<p>That's true. But that's only really a concert if you're building an SPA. If you're not, having multiple pages is generally faster than running some js framework to reload parts of the page. Plus that you get the benefit of every state combination having it's own URL. You don't need to write any custom state reconstruction code.<p>This was the original design of REST as applied to the web. It was explicitly designed in such a way that it was forbidden to reload parts of the page. This makes it so that every state has it's own URL and you therefore can link to every state. Deep linking if you wish, for all of the web.</p>
]]></description><pubDate>Sun, 20 Aug 2023 10:27:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=37197807</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=37197807</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37197807</guid></item><item><title><![CDATA[New comment by strictfp in "What's up, Python? The GIL removed, a new compiler, optparse deprecated"]]></title><description><![CDATA[
<p>Node is essentially a single-threaded API to a very capable multithreaded engine.<p><a href="https://youtu.be/ztspvPYybIY" rel="nofollow noreferrer">https://youtu.be/ztspvPYybIY</a></p>
]]></description><pubDate>Mon, 31 Jul 2023 09:53:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=36940485</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36940485</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36940485</guid></item><item><title><![CDATA[New comment by strictfp in "What's up, Python? The GIL removed, a new compiler, optparse deprecated"]]></title><description><![CDATA[
<p>My tip for this is Node.js and some stream processing lib like Highland. You can get <i>ridiculous</i> IO parallelism with a very little code and a nice API.<p>Python just scales terribly, no matter if you use multi-process or not. Java can get pretty good perf, but you'll need some libs or quite a bit of code to get nonblocking IO sending working well, or you're going to eat huge amounts of resources for moderate returns.<p>Node really excels at this use case. You can saturate the lines pretty easily.</p>
]]></description><pubDate>Sun, 30 Jul 2023 22:55:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=36936866</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36936866</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36936866</guid></item><item><title><![CDATA[New comment by strictfp in "Unloop: A generative music looper that doesn’t repeat itself"]]></title><description><![CDATA[
<p>Reminds me of the 90s EDM band  
Antiloop.</p>
]]></description><pubDate>Sat, 15 Jul 2023 20:00:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=36740426</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36740426</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36740426</guid></item><item><title><![CDATA[New comment by strictfp in "Why I Hate Frameworks (2005)"]]></title><description><![CDATA[
<p>Maybe. But that specific overabstraction is in the implementation of the framework. It's trying to proxy all the method calls to objects to perform logic around them. It is true that Spring wants the developer to configure auxiliary logic that gets applied around the written code, instead of actually calling that logic. So perhaps that's what the author was getting at.</p>
]]></description><pubDate>Sat, 08 Jul 2023 08:45:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=36642588</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36642588</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36642588</guid></item><item><title><![CDATA[New comment by strictfp in "Why I Hate Frameworks (2005)"]]></title><description><![CDATA[
<p>I disagree with the problem statement; that the framework is trying to solve a meta-problem.<p>The problem with frameworks is instead that they assume that they're in control. They're the program, you're just writing a plugin.<p>This makes it unnecessarily hard to use them in all but the most straight-forward use cases. And they're usually also trying to do too much; config for starting, special way of testing, incompatible with other frameworks and libs etc.<p>Contrary to that, a library does one thing and one thing well. Like a Unix tool. Much easier to use, better coverage, and usually easy to combine. And you can plug them in anywhere.<p>Frameworks are overreaching, but not in the way that the article paints it.</p>
]]></description><pubDate>Sat, 08 Jul 2023 08:14:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=36642423</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36642423</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36642423</guid></item><item><title><![CDATA[New comment by strictfp in "Sequence diagrams, the only good thing UML brought to software development"]]></title><description><![CDATA[
<p>Class diagrams and object diagrams are also really useful, for instance when making presentations.<p>The problem with UML is that the industry went overboard with it's usage, like it did with pretty much every tech trend.</p>
]]></description><pubDate>Thu, 15 Jun 2023 17:02:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=36343507</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36343507</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36343507</guid></item><item><title><![CDATA[New comment by strictfp in "A Swedish startup’s bid to build a green rival to AWS"]]></title><description><![CDATA[
<p>I'm interested to hear their business plan, given that there's already established ones like <a href="https://elastx.se/en/" rel="nofollow">https://elastx.se/en/</a>, and they're not running terribly well, although they have quite a good product IMO.</p>
]]></description><pubDate>Fri, 09 Jun 2023 22:42:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=36265285</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36265285</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36265285</guid></item><item><title><![CDATA[New comment by strictfp in "300ms Faster: Reducing Wikipedia's total blocking time"]]></title><description><![CDATA[
<p>Hot take: the mobile site also isn't good for cellphones</p>
]]></description><pubDate>Mon, 29 May 2023 16:24:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=36115392</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36115392</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36115392</guid></item><item><title><![CDATA[New comment by strictfp in "FBI misused surveillance powers more than 280k times in a year"]]></title><description><![CDATA[
<p>They've been pulling shady stuff for ages. Ever heard of the false flag attacks in relation to Cuba? The bay of pigs false flag bombings, and the proposed <a href="https://en.m.wikipedia.org/wiki/Operation_Northwoods" rel="nofollow">https://en.m.wikipedia.org/wiki/Operation_Northwoods</a> ? Terrible stuff.</p>
]]></description><pubDate>Tue, 23 May 2023 10:23:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=36042204</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=36042204</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36042204</guid></item><item><title><![CDATA[New comment by strictfp in "How to lose your work using Undo Copy in Windows"]]></title><description><![CDATA[
<p>They could solve that by keeping track of references and asking you though.</p>
]]></description><pubDate>Sat, 13 May 2023 13:00:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=35927963</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=35927963</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35927963</guid></item><item><title><![CDATA[New comment by strictfp in "Flecs – A fast entity component system for C and C++"]]></title><description><![CDATA[
<p>I'm working with an ECS at $dayjob. But I'm starting to question one aspect of them. Composition of functionality makes sense. And systems acting independently and only on objects with related components makes sense.<p>But dynamically updating the set of components for an entity in order to "send it" to some other system, and relying on the ECS as a query database to coordinate all this, seems like questionable practice to me. I'm seeing more and more of that in our systems.<p>I think ECSes are becoming too dynamic, and will start to eat perf, and hide relations. Like some message bus.<p>Anyone else with the same gut feeling?</p>
]]></description><pubDate>Tue, 04 Apr 2023 08:16:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=35436597</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=35436597</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35436597</guid></item><item><title><![CDATA[New comment by strictfp in "Modules, not microservices"]]></title><description><![CDATA[
<p>Yes. If you design a distributed system you need to consider the network traffic very carefully, and choose your segmentation in such a way that you minimize traffic and still achieve good scalability.<p>For this reason, I've been trying to push for building a monolithic app first, then splitting into components, and introducing libs for common functionality. Only when this is all done, you think about the communication patterns and discuss how to scale the app.<p>Most microservice shops I've been in have instead done the naïve thing; just come up with random functionally separate things and put them in different micro services; "voting service", "login service", "user service" etc. This can come with a very very high price. Not only in terms of network traffic, but also in debuggability, having a high amount of code duplication, and getting locked into the existing architecture, cementing the design and functionality.</p>
]]></description><pubDate>Tue, 03 Jan 2023 14:24:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=34231658</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=34231658</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34231658</guid></item><item><title><![CDATA[New comment by strictfp in "Modules, not microservices"]]></title><description><![CDATA[
<p>This has been my major criticism of them; you cement the design of the app by creating an organizational structure around your software components.<p>What happens if you need to redesign the architecture to meet new needs? That's right; it's not going to happen, because people will fight it tooth and nail.<p>You also cannot produce any meaningful end-user value without involving several teams.<p>Microservices is just "backend, frontend, and database team" reincarnated.<p>My take: do Microservices all you want, but don't organize teams around the services!</p>
]]></description><pubDate>Tue, 03 Jan 2023 14:14:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=34231532</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=34231532</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34231532</guid></item><item><title><![CDATA[New comment by strictfp in "I found a bug in SQLite"]]></title><description><![CDATA[
<p>Yup. If you consider that a simple int can have billions of states, and that you can have 100% test coverage while testing just one of those, 100% really doesn't mean much. And with several variables, the total state space quickly becomes almost infinite.</p>
]]></description><pubDate>Sun, 11 Dec 2022 21:47:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=33947911</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=33947911</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33947911</guid></item><item><title><![CDATA[New comment by strictfp in "Why is D's garbage collection slower than Go's?"]]></title><description><![CDATA[
<p>I'm saying that references between heaps should be disallowed altogether.</p>
]]></description><pubDate>Sat, 29 Oct 2022 23:45:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=33389131</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=33389131</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33389131</guid></item><item><title><![CDATA[New comment by strictfp in "The Perfect Commit"]]></title><description><![CDATA[
<p>Ooooh, thanks for mentioning that!</p>
]]></description><pubDate>Sat, 29 Oct 2022 23:43:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=33389118</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=33389118</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33389118</guid></item><item><title><![CDATA[New comment by strictfp in "The Perfect Commit"]]></title><description><![CDATA[
<p>I've been following your school of thought as well as the one proposed by the author.<p>I would argue that your model is a lot freer and will lead to better code quality in the long run, since you're not feeling so restricted when working.<p>Meticulously crafting commits feel like one of those "good in theory" approaches that feels good but hurts you more than you realize. They're good for workflows where you move commits between lots of (release) branches, sure, but if you're doing trunk-based development I'm going to call it a bit formalistic.</p>
]]></description><pubDate>Sat, 29 Oct 2022 23:41:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=33389100</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=33389100</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33389100</guid></item><item><title><![CDATA[New comment by strictfp in "Why is D's garbage collection slower than Go's?"]]></title><description><![CDATA[
<p>I would love it if some language would implement a segmented heap, where each part could be GCed separately.<p>Erlang has this model with it's lightweight processes. And it's a great model that helps not only with GC, but also guaranteeing no shared state between different parts of the code.</p>
]]></description><pubDate>Sat, 29 Oct 2022 12:57:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=33383656</link><dc:creator>strictfp</dc:creator><comments>https://news.ycombinator.com/item?id=33383656</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33383656</guid></item></channel></rss>