<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: chacham15</title><link>https://news.ycombinator.com/user?id=chacham15</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 27 Aug 2026 23:19:17 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=chacham15" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by chacham15 in "Automatic1111 for Apple metal, 40% speed up sd1.5"]]></title><description><![CDATA[
<p>I really miss the prompting that A1111 had in concert with the grid. It was so easy to do a grids changing variables per axis. e.g. prompt on vertical and model on horizontal axis. is there a comfy node that does this? i've looked and havent found one.</p>
]]></description><pubDate>Wed, 12 Aug 2026 19:50:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=49277684</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=49277684</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49277684</guid></item><item><title><![CDATA[New comment by chacham15 in "Compression is prediction"]]></title><description><![CDATA[
<p>> How do you decide what shared features a peacock and a palm tree have? At what scale should they be represented? How do you deal with invariance under affine transforms? Do you want to open the box of invariance under non-affine transforms?<p>The whole point is that the representation is learned. When you talk about various levels of abstraction, you're missing that all of these levels are representable with words and the relationships between them. That is verbatim what LLMs are optimized for. Interestingly, when you take an embedding, you do see that some transformations in embedding space actually hold which is quite interesting (e.g. tree + many ~ forest)</p>
]]></description><pubDate>Wed, 12 Aug 2026 04:31:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=49267822</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=49267822</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49267822</guid></item><item><title><![CDATA[New comment by chacham15 in "Where .env Went Wrong"]]></title><description><![CDATA[
<p>This article reads like more of an ad than anything else.<p>> Environment variables only deliver values<p>Yes, the problem .env files try to solve is having "environment variables" be injectable from a file so that different applications can have different environment variables by default.<p>> A string is not a schema<p>Yes, input validation is an application concern. The application should know what these values represent / how to parse them and error if they're invalid.<p>I could go on, but the article is all about trying to use a hammer as a screwdriver and complaining that the hammer doesnt work.</p>
]]></description><pubDate>Tue, 04 Aug 2026 16:50:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=49171503</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=49171503</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49171503</guid></item><item><title><![CDATA[New comment by chacham15 in "Stop saying that AI is just a tool and it only matters how it is used"]]></title><description><![CDATA[
<p>"AI is just a tool" is meant as a counterpoint to AI producing slop [1]. It isnt that there aren't ethical/societal implications with it as with everything we do in society.<p>[1] If you take the slop and manually fix/improve/verify it to production value it can be immensely valuable.</p>
]]></description><pubDate>Thu, 16 Jul 2026 06:16:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=48930934</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=48930934</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48930934</guid></item><item><title><![CDATA[New comment by chacham15 in "Banter"]]></title><description><![CDATA[
<p>This is a shallow analysis. Banter doesnt need to be about a transgression or offensive at all. E.g. if you were talking to Armand Duplantis, you could tease him about how easy he makes breaking the world record look: "Hey Armand, you havent broken the world record in this past year...arent you due?"</p>
]]></description><pubDate>Wed, 15 Jul 2026 00:08:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=48914587</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=48914587</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48914587</guid></item><item><title><![CDATA[New comment by chacham15 in "It's not about physical vs. digital games, it's about ownership"]]></title><description><![CDATA[
<p>There is a difference between a service and a good.<p>It doesnt make sense to "own" a massage just the same way it doesnt make sense to "own" spectating a game in person. The video recording of people playing a sport is a good that you can own however. This is why an online/multiplayer game is harder to separate because it straddles the line of both a service and a good, but other cases are much more clear cut. (also, a quick google does reveal multipke open source diablo projects fyi)</p>
]]></description><pubDate>Sun, 05 Jul 2026 18:48:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=48796833</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=48796833</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48796833</guid></item><item><title><![CDATA[New comment by chacham15 in "The text in Claude Code’s “Extended Thinking” output"]]></title><description><![CDATA[
<p>I think you're confusing two different axes. There is a difference between the cache state and the context state.<p>Imagine a conversation with turns X, Y, and Z. When the LLM "reasons" about the next token A it does: P(A | X,Y,Z) and then P(B | X,Y,Z,A), etc. It will eventually produce a result P(D | X,Y,Z,A,B,C). Instead of continuing the context from X,Y,Z,A,B,C it continues it from X,Y,Z so you have P(N | X,Y,Z,D). This is what is meant by dropping the reasoning. This is done to save cache context for the session.<p>This is a different thing than preserving the K/V state of P(N | X,Y,Z,D).</p>
]]></description><pubDate>Mon, 22 Jun 2026 16:48:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=48632644</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=48632644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48632644</guid></item><item><title><![CDATA[New comment by chacham15 in "People Hate AI Art"]]></title><description><![CDATA[
<p>I hate these overly grand clickbaity statements. AI is a tool. You can use it well. You can use it poorly. "AI Slop" is the category of lazy AI tool usage. It is the same with AI code. Do you ask Claude to implement a feature and then not do a manual code review? If so, you're likely to get slop.</p>
]]></description><pubDate>Sat, 09 May 2026 02:46:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=48071298</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=48071298</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48071298</guid></item><item><title><![CDATA[New comment by chacham15 in "AIs can generate near-verbatim copies of novels from training data"]]></title><description><![CDATA[
<p>> The research findings “could present a challenge to those who argue that the AI model does not store or reproduce any copyright works,” said Cerys Wyn Davies, an intellectual property partner at law firm Pinsent Masons.<p>The defense to training with copyright is that it is the same as how humans learn from copyrighted material. The storage or reproduction is a red herring. Humans can also reproduce copyrighted works from memory as well. Showing that machines can reproduce copyrighted material is no different than saying that a human can reproduce copyright material that the human learned from.<p>The defense to actually reproducing a work is that in order to do so, the user has to "break" the system. It is the same as how you can make legal software do illegal things (e.g. screen recorder to "steal" a movie)<p>None of this is to say that these defenses are correct/moral; but rather that this article doesnt add any additional input into whether it is or isnt.</p>
]]></description><pubDate>Mon, 23 Feb 2026 17:44:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=47125758</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=47125758</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47125758</guid></item><item><title><![CDATA[New comment by chacham15 in "Deno Sandbox"]]></title><description><![CDATA[
<p>I am so confused at how this is supposed to work. If the code, running in whatever language, does any sort of transform with the key that it thinks it has, doesnt this break? E.g. OAuth 1 signatures, JWTs, HMACs...<p>Now that I think further, doesnt this also potentially break HTTP semantics? E.g. if the key is part of the payload, then a data.replace(fake_key, real_key) can change the Content Length without actually updating the Content-Length header, right?<p>Lastly, this still doesnt protect you from other sorts of malicious attacks (e.g. 'DROP TABLE Users;')...Right? This seems like a mitigation, but hardly enough to feel comfortable giving an LLM direct access to prod, no?</p>
]]></description><pubDate>Wed, 04 Feb 2026 00:50:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=46879809</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=46879809</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46879809</guid></item><item><title><![CDATA[New comment by chacham15 in "Rockstar employee shares account of the company's union-busting efforts"]]></title><description><![CDATA[
<p>- Facebook was not first. Before it was friendster and myspace.<p>- Tiktok was not first. Before it was vine and youtube.<p>- Google was not first. Before it was yahoo and altavista.<p>Plenty of todays big companies were not the first in their area.</p>
]]></description><pubDate>Fri, 07 Nov 2025 19:44:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=45850224</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=45850224</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45850224</guid></item><item><title><![CDATA[New comment by chacham15 in "Validating your ideas on strangers (2017)"]]></title><description><![CDATA[
<p>This only works when strangers = target customer because there is no way a stranger would have the understanding of the pain you are relieving for someone when they dont feel that pain. Therefore, it can be better read as "validate your ideas on your target customer" which is kind of obvious.</p>
]]></description><pubDate>Sun, 26 Oct 2025 18:07:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=45713944</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=45713944</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45713944</guid></item><item><title><![CDATA[New comment by chacham15 in "How can AI ID a cat?"]]></title><description><![CDATA[
<p>Lottie: <a href="https://lottiefiles.com/" rel="nofollow">https://lottiefiles.com/</a></p>
]]></description><pubDate>Sat, 23 Aug 2025 21:57:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=44999460</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=44999460</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44999460</guid></item><item><title><![CDATA[New comment by chacham15 in "JSX over the Wire"]]></title><description><![CDATA[
<p>The main thing that confuses me is that this seems to be PHP implemented in React...and talks about how to render the first page without a waterfall and all that makes sense, but the main issue with PHP was that reactivity was much harder. I didnt see / I dont understand how this deals with that.<p>When you have a post with a like button and the user presses the like button, how do the like button props update? I assume that it would be a REST request to update the like model. You could make the like button refetch the like view model when the button is clicked, but then how do you tie that back to all the other UI elements that need to update as a result? E.g. what if the UI designer wants to put a highlight around posts which have been liked?<p>On the server, you've already lost the state of the client after that first render, so doing some sort of reverse dependency trail seems fragile. So the only option would be to have the client do it, but then you're back to the waterfall (unless you somehow know the entire state of the client on the server for the server to be able to fully re-render the sub-tree, and what if multiple separate subtrees are involved in this?). I suppose that it is do-able if there exists NO client side state, but it still seems difficult. Am I missing something?</p>
]]></description><pubDate>Tue, 15 Apr 2025 17:58:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=43696310</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=43696310</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43696310</guid></item><item><title><![CDATA[New comment by chacham15 in "Leaked data reveals Israeli govt campaign to remove pro-Palestine posts on Meta"]]></title><description><![CDATA[
<p>Since nobody here has actually read the article, it states that the reason the posts were taken down was "prohibits incitement to terrorism praise for acts of terrorism and identification or support of terror organizations." This type of speech (incitement) is illegal in the United States and support is very borderline depending on the type and meaning of "support". Now, if the reason doesnt match the actual content removed that should definitely be addressed which is your point, but I think that the reason is valid.</p>
]]></description><pubDate>Fri, 11 Apr 2025 21:45:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=43658974</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=43658974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43658974</guid></item><item><title><![CDATA[New comment by chacham15 in "Stop syncing everything"]]></title><description><![CDATA[
<p>So, if I understand correctly, the consistency model is essentially git. I.e. you have a local copy, makes changes to it, and then when its time to "push" you can get a conflict where you can "rebase" or "merge".<p>The problem here is that there is no way to cleanly detect a conflict. The documentation talks about pages which have changed, but a page changing isnt a good indicator of conflict. A conflict can happen due to a read conflict. E.g.<p>Update Customer Id: "UPDATE Customers SET id='bar' WHERE id='foo'; UPDATE Orders SET customerId='bar' WHERE customerId='foo'"<p>Add Customer Purchase: "SELECT id FROM Customers WHERE email="blah"; INSERT INTO Orders(customerId, ...) VALUES("foo", ...);"<p>If the update task gets committed first and the pages for the Orders table are full (i.e. inserting causes a new page to allocated) these two operations dont have any page conflicts, but the result is incorrect.\<p>In order to fix this, you would need to track the pages read during the transaction in which the write occurred, but that could easily end up being the whole table if the update column isnt part of an index (and thus requiring a table scan).</p>
]]></description><pubDate>Wed, 02 Apr 2025 07:11:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=43554350</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=43554350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43554350</guid></item><item><title><![CDATA[New comment by chacham15 in "Bringing Record and Replay debugging everywhere on Linux"]]></title><description><![CDATA[
<p>With a big changeset, its better to have a brief discussion about how it works / what it needs before you actually actually make a PR. Just big principles high level stuff. This way if you build a train station, the devs wont be like "ooh, we really need an airport." Thats why an issue to track it is good: it raises visibility for anyone who has an issue with the approach etc. long before its time to make a merge. Also, if theyre like "well never take this" or "well take this if you build a space station" its good to know that before investing a ton of time into something PR-able.</p>
]]></description><pubDate>Sun, 30 Mar 2025 20:07:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=43527168</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=43527168</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43527168</guid></item><item><title><![CDATA[New comment by chacham15 in "Bringing Record and Replay debugging everywhere on Linux"]]></title><description><![CDATA[
<p>I have tried SO hard to get rr to work for me, including buying a separate pc just to use it...but it just consistently fails so I've basically abandoned it. Something like this would absolutely be a godsend. Just getting something consistently working with Ubuntu is amazing. Does this approach make working in something like WSL viable?<p>I would love if this were upstreamed. Is there a github issue where you discuss the possibility of this with the rr devs? That might be something to add to your readme for everyone else who wants to follow along. Thanks!</p>
]]></description><pubDate>Sun, 30 Mar 2025 16:35:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=43525426</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=43525426</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43525426</guid></item><item><title><![CDATA[New comment by chacham15 in "Netlify deploys hundreds of thousands of Next.js sites – here's what challenging"]]></title><description><![CDATA[
<p>> suggesting that side stepping lock in altogether by simplifying down to traditional techniques is not “serious” makes me bristle a little<p>This is a strawman. You're misinterpreting the word "serious". They are using it to mean scalable, not about unimportance/ability. At some point in the scaling process, it will be more effective to scale to another machine than stay on a single one at which point you need a lot of other primitives like the article mentions. E.g. a shared cache with proper invalidation mechanisms. If you dont need scale, then you're right, you dont have to worry about this. I will also note that it is slightly odd to use a framework like next.js if you arent (or planning on) running at scale because most of its features (e.g. SSR) are entirely performance oriented. Essentially, the whole point of the article is that despite being "open source" you cannot run next.js at scale yourself without a massive investment of your own.</p>
]]></description><pubDate>Thu, 27 Mar 2025 16:10:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=43495085</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=43495085</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43495085</guid></item><item><title><![CDATA[New comment by chacham15 in "Retaking the web browser, one small step at a time"]]></title><description><![CDATA[
<p>honestly, i run into the same issue. my use case is mostly for older wifi capture portals which just dont work against https since they obviously cant mitm the user. my other use case is for development work when I want to capture the traffic with wireshark without setting up https stripping via pinned certificate myself.</p>
]]></description><pubDate>Sun, 09 Feb 2025 06:41:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=42988943</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=42988943</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42988943</guid></item></channel></rss>