<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: flare_blitz</title><link>https://news.ycombinator.com/user?id=flare_blitz</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 26 May 2026 18:18:57 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=flare_blitz" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by flare_blitz in "Show HN: Pyscn – Python code quality analyzer for vibe coders"]]></title><description><![CDATA[
<p>That comment sounds pretty benign to me. I also don't know why you're assuming the original commenter is male. The only person in the wrong here is you, and you're wrong twice over.</p>
]]></description><pubDate>Sun, 05 Oct 2025 18:04:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=45483747</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45483747</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45483747</guid></item><item><title><![CDATA[New comment by flare_blitz in "Show HN: Pyscn – Python code quality analyzer for vibe coders"]]></title><description><![CDATA[
<p>And where, exactly, did this commenter say that vibe coders are "stupid and one dimensional"? Stop putting words in people's mouths.</p>
]]></description><pubDate>Sun, 05 Oct 2025 17:21:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=45483402</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45483402</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45483402</guid></item><item><title><![CDATA[New comment by flare_blitz in "PEP 810 – Explicit lazy imports"]]></title><description><![CDATA[
<p>I would suggest reading this blog post from Meta, which should resolve your concerns: <a href="https://engineering.fb.com/2024/01/18/developer-tools/lazy-imports-cinder-machine-learning-meta/" rel="nofollow">https://engineering.fb.com/2024/01/18/developer-tools/lazy-i...</a><p>Regarding risks in practice:<p>> Libraries such as PyTorch, Numba, NumPy, and SciPy, among others, did not seamlessly align with the deferred module loading approach. These libraries often rely on import side effects and other patterns that do not play well with Lazy Imports. The order in which Python imports could change or be postponed, often led to side effects failing to register classes, functions, and operations correctly. This required painstaking troubleshooting to identify and address import cycles and discrepancies.<p>This isn't precisely the scenario I described above, but it is a concrete example of how deferred imports can cause issues that are difficult to debug.<p>Regarding performance benefits:<p>> At Meta, the quest for faster model training has yielded an exciting milestone: the adoption of Lazy Imports and the Python Cinder runtime. ... we’ve been able to significantly improve our model training times, as well as our overall developer experience (DevX) by adopting Lazy Imports and the Python Cinder runtime.</p>
]]></description><pubDate>Sun, 05 Oct 2025 04:37:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=45478874</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45478874</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45478874</guid></item><item><title><![CDATA[New comment by flare_blitz in "PEP 810 – Explicit lazy imports"]]></title><description><![CDATA[
<p>This is already addressed in my comment above.</p>
]]></description><pubDate>Sat, 04 Oct 2025 20:40:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=45476509</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45476509</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45476509</guid></item><item><title><![CDATA[New comment by flare_blitz in "PEP 810 – Explicit lazy imports"]]></title><description><![CDATA[
<p>That’s not what I said. Nobody is “entitled” or “not entitled” to hold certain opinions. Please reread my original comment carefully.</p>
]]></description><pubDate>Sat, 04 Oct 2025 11:30:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=45472541</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45472541</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45472541</guid></item><item><title><![CDATA[New comment by flare_blitz in "PEP 810 – Explicit lazy imports"]]></title><description><![CDATA[
<p>The issue is that some imports can be made lazy and some cannot. A binaristic all-or-nothing approach does not address the issue. (I also think that there is zero basis to claim that adding such a flag is trivial, since there’s no reference implementation of this flavor of lazy imports.)<p>What if we have a program where one feature works only when lazy imports are enabled and one feature only when lazy imports are disabled?<p>This is not a contrived concern. Let’s say I’m a maintainer of an open-source library and I choose to use lazy imports in my library. Because I’m volunteering my time, I don’t test whether my code works with eager imports.<p>Now, let’s say someone comes and builds an application on top of this library. It doesn’t work with lazy imports for some unknown reason. If they reach for a “force all imports” flag, their application might break in another mysterious way because the code they depend on is not built to work with eager imports. And even if my dependency doesn’t break, what about all the other packages the application may depend on?<p>The only solution here would be for the maintainer to ensure that their code works with both lazy and eager imports. However, this imposes a high maintenance cost and is part of the reason why PEP 690 was rejected. (And if your proposed solution was “don’t use libraries made by random strangers on the Internet”, boy do I have news for you...)<p>My point is that many things _will_ break if migrated to lazy imports. Whether they should have been written in Python in the first place is a separate question that isn’t relevant to this discussion.</p>
]]></description><pubDate>Sat, 04 Oct 2025 04:07:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=45470421</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45470421</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45470421</guid></item><item><title><![CDATA[New comment by flare_blitz in "PEP 810 – Explicit lazy imports"]]></title><description><![CDATA[
<p>No, the point is that most people in this thread do not appreciate the complexity of implementing lazy imports. If you disagree, your energy is better spent talking to a CPython core developer about implementation details of making baseless assertions from an ivory tower.<p>There are many people here who think enabling lazy imports is as simple as flipping a light switch. They have no idea what they're talking about.</p>
]]></description><pubDate>Sat, 04 Oct 2025 00:56:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=45469522</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45469522</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45469522</guid></item><item><title><![CDATA[New comment by flare_blitz in "PEP 810 – Explicit lazy imports"]]></title><description><![CDATA[
<p>"Talk is cheap. Show me the code."</p>
]]></description><pubDate>Sat, 04 Oct 2025 00:27:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=45469343</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45469343</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45469343</guid></item><item><title><![CDATA[New comment by flare_blitz in "PEP 810 – Explicit lazy imports"]]></title><description><![CDATA[
<p>I also hope this proposal succeeds, but I'm not optimistic. This will break tons of code and introduce a slew of footguns. Import statements fundamentally have side effects, and when and how these side effects are applied will cause mysterious breakages that will keep people up for many nights.<p>This is not fearmongering. There is a reason why the only flavor of Python with lazy imports comes from Meta, which is one of the most well-resourced companies in the world.<p>Too many people in this thread hold the view of "importing {pandas, numpy, my weird module that is more tangled than an eight-player game of Twister} takes too long and I will gladly support anything that makes them faster". I would be willing to bet a large sum of money that most people who hold this opinion are unable to describe how Python's import system works, let alone describe how to implement lazy imports.<p>PEP 690 describes a number of drawbacks. For example, lazy imports break code that uses decorators to add functions to a central registry. This behavior is crucial for Dash, a popular library for building frontends that has been around for more than a decade. At import-time, Dash uses decorators to bind a JavaScript-based interface to callbacks written in Python. If these imports were made lazy, Dash would break. Frontends used by thousands, if not millions of people, would immediately become unresponsive.<p>You may cry, "But lazy imports are opt-in! Developers can choose to opt-out of lazy imports if it doesn't work for them." What if these imports were transitive? What if our frontend needed to be completely initialized before starting a critical process, else it would cause a production outage? What if you were a maintainer of a library that was used by millions of people? How could you be sure that adding lazy imports wouldn't break any code downstream? Many people made this argument for type hints, which is sensible because type hints have no effect on runtime behavior*. This is not true for lazy imports; import statements exist in essentially every nontrivial Python program, and changing them to be lazy will fundamentally alter runtime behavior.<p>This is before we even get to the rest of the issues the PEP describes, which are even weirder and crazier than this. This is a far more difficult undertaking than many people realize.<p>---<p>* You <i>can</i> make a program change its behavior based on type annotations, but you'd need to explicitly call into typing APIs to do this. Discussion about this is beyond the scope of this post.</p>
]]></description><pubDate>Sat, 04 Oct 2025 00:26:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=45469331</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45469331</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45469331</guid></item><item><title><![CDATA[New comment by flare_blitz in "PEP 810 – Explicit lazy imports"]]></title><description><![CDATA[
<p>> Using `importlib` is a horrible hack that breaks basically all tooling. You very very obviously are not supposed to do that.<p>This is an assertion that has absolutely no reasoning behind it. I'm not saying I disagree; I'm just saying there is a time and a place for importlib.</p>
]]></description><pubDate>Sat, 04 Oct 2025 00:12:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=45469245</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45469245</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45469245</guid></item><item><title><![CDATA[New comment by flare_blitz in "Calling Zig from TypeScript on AWS Lambda with minimal primitives"]]></title><description><![CDATA[
<p>Perhaps I'm not aware of the intricacies of Zig or AWS Lambda, but what is this library supposed to provide? It is well known that services written in two different languages can communicate with one another over HTTP (or TCP, or UDP, or whatever protocol we need to use to call into an AWS Lambda function).</p>
]]></description><pubDate>Sat, 27 Sep 2025 22:15:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=45399805</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45399805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45399805</guid></item><item><title><![CDATA[New comment by flare_blitz in "SWE-Bench Pro"]]></title><description><![CDATA[
<p>And your basis for saying this is...?</p>
]]></description><pubDate>Tue, 23 Sep 2025 01:21:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=45341762</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45341762</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45341762</guid></item><item><title><![CDATA[New comment by flare_blitz in "Slack has raised our charges by $195k per year"]]></title><description><![CDATA[
<p>The fact of the matter is that Slack knew they were a nonprofit and made the deliberate decision to engage in the SaaS equivalent of rent-seeking. This is honest engagement, and given the circumstances I think people in this thread have been incredibly charitable.</p>
]]></description><pubDate>Fri, 19 Sep 2025 12:28:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=45300889</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45300889</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45300889</guid></item><item><title><![CDATA[New comment by flare_blitz in "Slack has raised our charges by $195k per year"]]></title><description><![CDATA[
<p>I can think of at least a dozen explanations less charitable than this one. Taking their word exactly at face value is not “something in the middle”.</p>
]]></description><pubDate>Fri, 19 Sep 2025 05:38:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=45298278</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45298278</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45298278</guid></item><item><title><![CDATA[New comment by flare_blitz in "Slack has raised our charges by $195k per year"]]></title><description><![CDATA[
<p>No, I’m pretty sure Slack was never a “not for profit” company. Most not-for-profits do not ambush their customers with $250k bills on a week’s notice. I’ve seen debt collectors less predatory than this.</p>
]]></description><pubDate>Fri, 19 Sep 2025 05:36:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=45298269</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45298269</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45298269</guid></item><item><title><![CDATA[New comment by flare_blitz in "Slack has raised our charges by $195k per year"]]></title><description><![CDATA[
<p>There is about as much ownership here as a squatter in a two-bedroom apartment. They are apologizing because they got caught, not because they genuinely believe they messed up.</p>
]]></description><pubDate>Fri, 19 Sep 2025 01:09:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=45296870</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45296870</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45296870</guid></item><item><title><![CDATA[New comment by flare_blitz in "Slack has raised our charges by $195k per year"]]></title><description><![CDATA[
<p>> This was a mistake.<p>This looks extremely deliberate to me. Are you seriously suggesting that one of your sales reps accidentally demanded $250k from a bunch of teenagers?</p>
]]></description><pubDate>Thu, 18 Sep 2025 23:31:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=45296286</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45296286</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45296286</guid></item><item><title><![CDATA[New comment by flare_blitz in "Baby's first type checker"]]></title><description><![CDATA[
<p>That's a lot of buzzwords to say that you enjoy shoving everything in one function. :)</p>
]]></description><pubDate>Sat, 06 Sep 2025 22:05:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=45153290</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=45153290</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45153290</guid></item><item><title><![CDATA[New comment by flare_blitz in "LeetCode for System Design"]]></title><description><![CDATA[
<p>Thanks for posting. I like the concept but ran into several showstopping bugs. I clicked on the "Start Interview" button and received a "No response from Gemini" error. When I exited the interview, it said that I had used all free interviews and suggested that I upgrade to Premium for $5 a month.<p>With all due respect, why would I pay $5 a month for something that self-implodes as soon as I hit one button?</p>
]]></description><pubDate>Mon, 23 Jun 2025 05:39:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=44352739</link><dc:creator>flare_blitz</dc:creator><comments>https://news.ycombinator.com/item?id=44352739</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44352739</guid></item></channel></rss>