<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: pweissbrod</title><link>https://news.ycombinator.com/user?id=pweissbrod</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 07 Apr 2026 07:16:20 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=pweissbrod" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by pweissbrod in "Things you forgot (or never knew) because of React"]]></title><description><![CDATA[
<p>I'm curious if anyone else is advocating for HTMX as a mechanism to simplify bloated front end code bases</p>
]]></description><pubDate>Tue, 15 Aug 2023 11:35:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=37132657</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=37132657</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37132657</guid></item><item><title><![CDATA[New comment by pweissbrod in "Simple Modern JavaScript Using JavaScript Modules and Import Maps"]]></title><description><![CDATA[
<p>I won't try to guess the industry trajectory as a whole. But I can speak from personal experience. I've been on teams jump on the single page application bandwagon. React in particular.<p>It's been 5 years since initiating that investment. Reflecting on it I'm frankly amazed at the amount of technology that we don't need. The standard type of UI we build really hasn't changed but the time code and overall cost continues upward.<p>Looking back to 2018 we might have been collectively beguiled by the self-perpetuating marketing machine of single page application technology. We've decided unless there's a very clear and specific justification to write a thick client on a web page we're avoiding it going forward.<p>Tools such as HTMX are perfectly effective substitutes at far lower cost. At least for what we need</p>
]]></description><pubDate>Fri, 17 Feb 2023 14:56:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=34835347</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=34835347</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34835347</guid></item><item><title><![CDATA[New comment by pweissbrod in "Virtual DOM is pure overhead (2018)"]]></title><description><![CDATA[
<p>When you have a team with predominantly back-end knowledge expertise using a templating language they are familiar with plays to their strengths. MVC applications were written for over a decade. Perhaps it is a subjective thing because I don't see any logical difficulty in a web page that exchanges partials instead of JSON. I was programming that way for over 10 years.<p>Svelte really sounds compelling from what you're telling me. I'll check it out. But unless it is a drastic simplification it brings with it the fundamentals of effectively writing a thick client in JavaScript or TypeScript and all the things that come with it. React and angular have left a very bad taste in my mouth. The time and code cost for building basic user interfaces should go down not up. We should be spending less time talking about how to do something and more time talking about what to do</p>
]]></description><pubDate>Wed, 01 Feb 2023 22:59:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=34619296</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=34619296</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34619296</guid></item><item><title><![CDATA[New comment by pweissbrod in "Virtual DOM is pure overhead (2018)"]]></title><description><![CDATA[
<p>Recently we went through an exercise where we built a to-do simple app using react and rewrote it using HTMX.<p>The functionality was identical between the two apps. The amount of tooling code and duplicative logic was massively higher because of SPA and all the fundamental things it demands.<p>Now if you really need an SPA for your requirements because you have an intrinsically complex front end and you've mastered the hoops to jump through good for you! There's nothing wrong with that. But there is something seriously wrong with building the same user interfaces we've needed for decades but the time code and complexity drastically increasing for no justifiable reason.</p>
]]></description><pubDate>Wed, 01 Feb 2023 21:22:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=34617990</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=34617990</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34617990</guid></item><item><title><![CDATA[New comment by pweissbrod in "Virtual DOM is pure overhead (2018)"]]></title><description><![CDATA[
<p>That's the thing. It doesn't really matter. It's sort of like asking what backend tech you pair with jQuery</p>
]]></description><pubDate>Wed, 01 Feb 2023 19:59:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=34616686</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=34616686</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34616686</guid></item><item><title><![CDATA[New comment by pweissbrod in "Virtual DOM is pure overhead (2018)"]]></title><description><![CDATA[
<p>Not for large DOMs. And for websites which Don't require support for low internet bandwidth this is optimizing for the wrong problem</p>
]]></description><pubDate>Wed, 01 Feb 2023 18:08:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=34614791</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=34614791</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34614791</guid></item><item><title><![CDATA[New comment by pweissbrod in "Virtual DOM is pure overhead (2018)"]]></title><description><![CDATA[
<p>By choosing an SPA. You must choose a dedicated static site hosting which is separate from your web application. You may already have this but you may not. In most cases you must choose a framework for routing. Also a framework for state management. You also dedicate to duplicating validation and security trimming logic both on the client side and the server side. More often than not you will find yourself including hundreds of NPM packages as dependencies which you must continually update and maintain. Also the requirement for unit testing on the front end is common. Which brings in the need for things like jest and enzyme. This complexity inevitably trickles into your build and deploy processes. Perhaps in larger teams this is a burden you can absorb. In smaller teams however you start to see division of responsibilities. One person only knows front end but not back end and vice versa. Common knowledge of the application as a whole can become fragmented. Perhaps the day comes where you want to take a partial of a user interface posted in a peripheral application and place it inside your web page. Because you have a virtual DOM this is now a security risk. You must build a component which duplicates the user interface which already exists. If the user interface needs to be shared among many applications you must build a commons code base to host your components. You start shouldering the burden of maintaining component libraries instead of just HTML and CSS. Again this is all very general and hypothetical but it feels worth pointing out some of the common implications that simply choosing an SPA can have in the longer run.<p>Plus this is not an all or nothing sort of choice. For decades we have used Ajax to perform partial updates on a web page. Consider alternatives like HTMX as a comparison.</p>
]]></description><pubDate>Wed, 01 Feb 2023 18:07:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=34614765</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=34614765</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34614765</guid></item><item><title><![CDATA[New comment by pweissbrod in "Virtual DOM is pure overhead (2018)"]]></title><description><![CDATA[
<p>In more cases than not I've noticed the choice of single page app itself is pure overhead.<p>SPA technology brings some key advantages but also a whole new realm of cost and complexity. It's my experience that SPA popularity has convinced many folks to use it when they really don't have a practical reason to justify it.</p>
]]></description><pubDate>Wed, 01 Feb 2023 17:33:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=34614175</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=34614175</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34614175</guid></item><item><title><![CDATA[New comment by pweissbrod in "Push-based outbox pattern with Postgres logical replication"]]></title><description><![CDATA[
<p>How would this work from a fault tolerance perspective? For example the listening application happens to be offline but the database is inserting records. How would the application catch up?</p>
]]></description><pubDate>Fri, 28 Oct 2022 14:39:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=33371893</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=33371893</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33371893</guid></item><item><title><![CDATA[New comment by pweissbrod in "LiteFS"]]></title><description><![CDATA[
<p>Perhaps the overhead of chatty queries is diminished in this special use case.<p>But it doesn't change the fact that standalone database server processes are designed to support specific queries at lower frequencies. This is one of the main points of The SQL language is to load precisely the data that is needed in a single statement.<p>Relying on this is a design pattern would only scale in specific use cases and would hit hard walls in changing scenarios</p>
]]></description><pubDate>Thu, 22 Sep 2022 21:03:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=32944603</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=32944603</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32944603</guid></item><item><title><![CDATA[New comment by pweissbrod in "LiteFS"]]></title><description><![CDATA[
<p>Select N+1 is a fundamental anti-pattern of relational database usage. Reducing the latency per round trip doesn't change this fact.</p>
]]></description><pubDate>Wed, 21 Sep 2022 18:47:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=32929574</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=32929574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32929574</guid></item><item><title><![CDATA[New comment by pweissbrod in "The self-fulfilling prophecy of React"]]></title><description><![CDATA[
<p>What's the point of this article? An attention getting headline followed by some bombastic claims followed by walking them back later in the next paragraph. It's like generating debate for the sake of debate.<p>I get the impression these things exist just to keep engagement numbers up</p>
]]></description><pubDate>Thu, 08 Sep 2022 13:06:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=32764911</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=32764911</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32764911</guid></item><item><title><![CDATA[New comment by pweissbrod in "SpaceVim 2.0"]]></title><description><![CDATA[
<p>I look at it differently. If vim is a useful tool in your daily workflow then it's probably worthwhile to invest time into customizing it and enhancing it with plugins.<p>The open source landscape of plug-in development is under constant evolution and it can be quite a time sink staying on top of the latest and best tooling.<p>I see SpaceVim as something similar to a Linux distribution. The maintainers offer the work of selecting various packages inversion combinations that harmonize into a consistent system.<p>And just like any Linux distribution you can agree or disagree with the packages they choose or the default configurations it comes with.<p>I end up using a somewhat heavily customized SpaceVim that I personally like but it's my opinion the distribution is a very productive foundation.</p>
]]></description><pubDate>Thu, 07 Jul 2022 13:02:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=32013534</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=32013534</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32013534</guid></item><item><title><![CDATA[New comment by pweissbrod in "The new wave of React state management"]]></title><description><![CDATA[
<p>I used to think the same thing until I considered that single page app development is really just a reinvention of thick clients.<p>When you look at an SPA as a thick client state management is a natural thing as it was in Java swing and WPF and Windows forms and other stacks beyond my knowledge</p>
]]></description><pubDate>Sat, 02 Jul 2022 16:02:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=31960154</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=31960154</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31960154</guid></item><item><title><![CDATA[New comment by pweissbrod in "The new wave of React state management"]]></title><description><![CDATA[
<p>Agreed! I'm surprised at the comprehensive work going into researching the history of state management in this article while completely missing MobX.<p>What problem does MobX not already solve?</p>
]]></description><pubDate>Sat, 02 Jul 2022 15:59:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=31960121</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=31960121</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31960121</guid></item><item><title><![CDATA[New comment by pweissbrod in "Lessons learned from running Apache Airflow at scale"]]></title><description><![CDATA[
<p>If your team is comfortable writing in pure python and you're familiar with the concept of a makefile you might find Luigi a much lighter and less opinionated alternative to workflows.<p>Luigi doesn't force you into using a central orchestrator for executing and tracking the workflows. Tracking and updating tasks state is open functions left to the programmer to fill in.<p>It's probably geared for more expert programmers who work close to the metal that don't care about GUIs as much as high degrees of control and flexibility.<p>It's one of those frameworks where the code that is not written is sort of a killer feature in itself. But definitely not for everyone.</p>
]]></description><pubDate>Mon, 23 May 2022 19:14:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=31483681</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=31483681</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31483681</guid></item><item><title><![CDATA[New comment by pweissbrod in "Firefox DNS-over-HTTPS"]]></title><description><![CDATA[
<p>I think this is what Snowden referred to as the concept of "TurnKey tyranny".</p>
]]></description><pubDate>Fri, 08 Apr 2022 14:11:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=30956966</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=30956966</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30956966</guid></item><item><title><![CDATA[New comment by pweissbrod in "Linux Foundation’s demands to the University of Minnesota"]]></title><description><![CDATA[
<p>Agreed. It's a cool idea. It's not really computer science as much as a penetration test involving humans and processes.<p>Of course without any semblance of prior consent it isn't quite sabotage but definitely outside the realm of ethical</p>
]]></description><pubDate>Tue, 27 Apr 2021 22:33:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=26962767</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=26962767</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26962767</guid></item><item><title><![CDATA[New comment by pweissbrod in "Linux Foundation’s demands to the University of Minnesota"]]></title><description><![CDATA[
<p>"Please provide to the public, in an expedited manner, all information necessary to identify all proposals of known-vulnerable code from any U of MN experiment. The information should include the name of each targeted software, the commit information, purported name of the proposer, email address, date/time, subject, and/or code, so that all software developers can quickly identify such proposals and potentially take remedial action for such experiments."<p>That sounds more than reasonable as a request to make amends.<p>The article said that finding all this code is a real problem. If UMN and the students involved are contrite that should be easy to fulfill.</p>
]]></description><pubDate>Tue, 27 Apr 2021 14:00:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=26955921</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=26955921</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26955921</guid></item><item><title><![CDATA[New comment by pweissbrod in "Show HN: I built a VS Code Theme Creator – easily make VS Code themes in browser"]]></title><description><![CDATA[
<p>Thanks! It's still a lot of hoops to jump through coming from visual studio perspective where all settings can be imported or exported to a file. But this is workable!</p>
]]></description><pubDate>Wed, 31 Mar 2021 17:49:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=26650518</link><dc:creator>pweissbrod</dc:creator><comments>https://news.ycombinator.com/item?id=26650518</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26650518</guid></item></channel></rss>