<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>Wed, 10 Jun 2026 12:18:43 +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 "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><item><title><![CDATA[New comment by chacham15 in "Asahi Linux lead developer Hector Martin resigns from Linux kernel"]]></title><description><![CDATA[
<p>>  At some point I am not sure what the maintainers could do except ignoring it.<p>Ignoring people is a childs approach to communication. If there is a problem, its your responsibility to communicate it. If you have communicated the issue and the other party is refusing to hear it, that is a different issue, but it is your responsibility to communicate.</p>
]]></description><pubDate>Sat, 08 Feb 2025 17:50:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=42984648</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=42984648</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42984648</guid></item><item><title><![CDATA[New comment by chacham15 in "Leaked documents expose deep ties between Israeli army and Microsoft"]]></title><description><![CDATA[
<p>> According to the documents, the AI services that the Defense Ministry purchased from Microsoft include translation (about half of the average monthly consumption during the first year of the war), OpenAI’s GPT-4 model (about a quarter of the consumption), a speech-to-text conversion tool, and an automatic document analysis tool.<p>> The leaked documents show that the Israeli military’s average monthly use of Azure’s cloud storage facilities in the first six months of the war was 60 percent higher than in the four months leading up to it.<p>This is the actual data in the article, the rest is a bunch of speculation around these pieces of data. They note that GPT-4 may have been used in air gapped systems which would make it impossible to know how it was used, but it would be interesting to have more detail here.<p>I also find it interesting that the largest usage of services is actually in translation more than anything else.</p>
]]></description><pubDate>Thu, 23 Jan 2025 17:12:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=42805810</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=42805810</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42805810</guid></item><item><title><![CDATA[New comment by chacham15 in "Obvious things C should do"]]></title><description><![CDATA[
<p>Thanks for taking the time to respond! I have a few followup questions if thats ok:<p>> You are correct in that the source code to the function being evaluated must be available to the compiler. This can be done with #include. I do it in D with importing the modules with the needed code.<p>> D's strategy is to separate the parse from the semantic analysis. I suppose it is a hair slower, but it also doesn't have to recompile the duplicate declarations and fold them into one.<p>I dont quite follow all the implications that these statements have. Does the compiler have a different way of handling a translation unit?<p>- Is a translation unit the same as in C, but since you're #including the file you would expect multiple compilations of a re-included C file? woudnt this bloat the resulting executable (/ bundle in case of a library)<p>- Are multiple translation units compiled at a time? Wouldnt this mean that the entire translation dependency graph would need to be simultaneously recompiled? Wouldnt this inhibit parallelization? How would it handle recompilation? What happens if a dependency is already compiled? Would it recompile it?<p>> Performance<p>I think a lot of this is tied to my question about compilation/translation units above, but from my past experience we have "header hygene" which forces us to use headers in a specific way, which if we do, we actually get really good preprocessor performance (a simple example being: dont use #include in a header), how would you compare performance in these kinds of situations vs a compiler without (i.e. either recompiled a full source file or looking up definitions from a compiled source)?<p>> If you're using hacks to do templating in C, you've outgrown the language and need a more powerful one. D has top shelf metaprogramming - and as usual, other template languages are following in D's path.<p>yes, as also demonstrated in the performance question, we do a lot to work within the confines of what we have when other tools would handle a lot more of the lifting for us and this is a fair criticism, but on the flip side, I dont have the power to make large decisions on an existing codebase like "lets switch languages" (even if for a source file or two...I've tried) as much as I wish I could, so I have to work with what I have.</p>
]]></description><pubDate>Sun, 12 Jan 2025 02:04:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=42670610</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=42670610</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42670610</guid></item><item><title><![CDATA[New comment by chacham15 in "Obvious things C should do"]]></title><description><![CDATA[
<p>While the author has WAY more knowledge/experience than me on this and so I wonder how he would solve the following issues:<p>Evaluating Constant Expressions<p>- This seems really complicated...if you're working within a translation unit, thats much simplified, but then you're much more limited in what you can do without repeating a lot of code. I wonder how the author solves this.<p>Compile Time Unit Tests<p>- This is already somewhat possible if you can express your test as a macro, which if you add in the first point, then this becomes trivial.<p>Forward Referencing of Declarations<p>- I think there may be a lot of backlash to this one. The main argument against this is that it then changes the compiler from a one-pass to two pass compiler which has its own performance implications. Given the number of people who are trying to compile massive codebases and go as far as parallelizing compilation of translation units, this may be a tough pill for them to swallow. (evaluating constant expressions probably comes with a similar/worse performance hit caveat depending on how its done)<p>Importing Declarations<p>- This is a breaking change...one of the ways I have kind of implemented templating in C is by defining a variable and importing a c file, changing the variable, and then reimporting the same c file. Another thing I've done is define a bunch of things and then import the SQLite C Amalgamation and then add another function (I do this to expose a SQLite internal which isnt exposed via its headers). All of these use cases would break with this change.<p>Are there any thoughts about these issues? Any ways to solve them perhaps?</p>
]]></description><pubDate>Sat, 11 Jan 2025 23:41:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=42669896</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=42669896</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42669896</guid></item><item><title><![CDATA[New comment by chacham15 in "New Architecture is here"]]></title><description><![CDATA[
<p>First off, thanks for all the work! I have a few questions if thats ok:<p>1. What is the next thing that the team wants to focus on improving?<p>2. What are the performance differences between the old architecture & new one?<p>3. What are your thoughts on the fragmented state of rn wrt react-native-web/react-native-windows/react-native-macos?<p>4. It is quite difficult to know what supports RN vs what relies on react-dom. Is there any thought to create some ecosystem focused around RN? Or if something like that is too cumbersone, perhaps even just adding some badge to github pages for "Supports RN"?<p>5. I forget what it was called, but the creator of react-native-web stated that they wanted to start winding down support in favor of an alternate approach which attempts to bring web apis to native instead of trying to make the native api work on web. I.e. instantiate div elements in native instead of view. What are your thoughts on this?<p>6. React (and IMO Meta as a whole) seems to generally have had the tech philosophy of take what you want, leave what you dont. With the dropping of create-react-app and endorsement of frameworks like Expo, it seems like its getting harder to just take the pieces we want. Is there any thought about this trend?<p>7. Related: as for the upgrade process: it would be cool if there were a way to "opt-in" to auto upgrades. E.g. what if there were a package which contained a base class controlled by the RN team so that a client side upgrade could be as simple as updating the version of the library the base class is in? (customization would be simple extending the class and doing w/e else needed there)<p>Again, thanks for all the work!</p>
]]></description><pubDate>Thu, 24 Oct 2024 19:05:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=41938635</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=41938635</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41938635</guid></item><item><title><![CDATA[New comment by chacham15 in "setBigTimeout"]]></title><description><![CDATA[
<p>I would imagine the intent behind this would be that the attacker has indirect control over the timeout. E.g. a check password input which delays you in between attempts doubling the length of time you have to wait in between each failed attempt. With this bug in place, the attacker would simply wait all the timeouts until the timeout exceeded 25 days at which point they could brute force the password check back to back.</p>
]]></description><pubDate>Sat, 19 Oct 2024 16:57:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=41888952</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=41888952</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41888952</guid></item><item><title><![CDATA[New comment by chacham15 in "Tesla's value drops $60B after investors fail to hail self-driving 'Cybercab'"]]></title><description><![CDATA[
<p>The idea is that if enough people use ride sharing, the total number of cars needed will decrease, therefore, the needed space to put those cars will decrease. It doesnt necessarily require that everyone use it, but its about reducing the total number of cars necessary. If the density of these cars are sufficiently high, I can see a world where not owning a car is more convenient than owning one (if it isnt cost prohibitive).</p>
]]></description><pubDate>Fri, 11 Oct 2024 21:58:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=41814227</link><dc:creator>chacham15</dc:creator><comments>https://news.ycombinator.com/item?id=41814227</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41814227</guid></item></channel></rss>