<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: cplat</title><link>https://news.ycombinator.com/user?id=cplat</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 08 Apr 2026 10:52:06 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=cplat" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by cplat in "Yann LeCun, Pioneer of AI, Thinks Today's LLM's Are Nearly Obsolete"]]></title><description><![CDATA[
<p>That's not quite how auto-regressive models are trained (the expression of "ideas" bit). There is no notion of "ideas." Words are not defined like we humans do, they're only related.<p>And on the latent space bit, it's also true for classical models, and the basic idea behind any pattern recognition or dimensionality reduction. That doesn't mean it's necessarily "getting the right idea."<p>Again, I don't want to "think of it as a probability." I'm saying what you're describing is a probability distribution. Do you have a citation for "probability to express correctly the sentence/<i>idea</i>" bit? Because just having a latent space is no implication of representing an idea.</p>
]]></description><pubDate>Sat, 05 Apr 2025 18:54:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=43595849</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=43595849</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43595849</guid></item><item><title><![CDATA[New comment by cplat in "Yann LeCun, Pioneer of AI, Thinks Today's LLM's Are Nearly Obsolete"]]></title><description><![CDATA[
<p>I don't understand. Deterministic and stochastic have very specific meanings. The statement: "To continue my reply I could say this word, more than the others, or maybe that one, a bit less, ..." sounds very much like a probability distribution.</p>
]]></description><pubDate>Sat, 05 Apr 2025 17:47:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=43595199</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=43595199</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43595199</guid></item><item><title><![CDATA[New comment by cplat in "Ask HN: Difficulties with going back to school"]]></title><description><![CDATA[
<p>GeorgiaTech's online Master's in Computer Science has lower costs. About $8k in total. I did it along with a full-time job since I only took one subject per semester.</p>
]]></description><pubDate>Sun, 23 Mar 2025 15:07:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=43453416</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=43453416</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43453416</guid></item><item><title><![CDATA[New comment by cplat in "Mathematical Foundations of Reinforcement Learning"]]></title><description><![CDATA[
<p>Which aspects? Foundational textbooks would focus on principles, not necessarily implementations, and don't go "outdated" the same way a snippet does.</p>
]]></description><pubDate>Tue, 11 Mar 2025 04:02:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=43329042</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=43329042</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43329042</guid></item><item><title><![CDATA[New comment by cplat in "Updates to H-1B"]]></title><description><![CDATA[
<p>To be fair, he never said "every single role at your company requires a secret clearance." He has specifically mentioned that you can get by even without them. You have misquoted.</p>
]]></description><pubDate>Thu, 19 Dec 2024 00:13:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=42456949</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42456949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42456949</guid></item><item><title><![CDATA[New comment by cplat in "Preferring throwaway code over design docs"]]></title><description><![CDATA[
<p>I think there's merit to both design docs and prototypes.<p>At the same time, your argument that "you'll be replaced by GPT in no time" is also an opinion that you've not supported with any data; the same thing that you're accusing the OP of.<p>I mean If I stopped reading opinions, 99% of the HN comments would disappear.</p>
]]></description><pubDate>Mon, 16 Dec 2024 11:31:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=42430122</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42430122</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42430122</guid></item><item><title><![CDATA[New comment by cplat in "Django and Postgres for the Busy Rails Developer"]]></title><description><![CDATA[
<p>Good for you.</p>
]]></description><pubDate>Thu, 12 Dec 2024 08:42:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=42397405</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42397405</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42397405</guid></item><item><title><![CDATA[New comment by cplat in "Django and Postgres for the Busy Rails Developer"]]></title><description><![CDATA[
<p>I agree with you. I've wrote very big web applications in Rails, Django, and Java/Spring.<p>I understand the argument for things being "explicit" in Python, but then I just prefer Java if I'm going to be very verbose about what I want (I'm only talking about backend APIs here). It's just my opinion that whether explicit is good or not depends on the level of abstraction we're interested in, and I don't believe that explicit is always good. (I like the concept of meta-algorithms, for example)<p>But if there's a one-person project that needs to be scaled quickly, I prefer Rails. (The article mentions how Django makes model fields explicit in the models file, but doesn't talk about schema.rb in Rails which doesn't require you to view each migration to know how the database looks.)<p>Yes, big projects in any language can get messy, but that's a software engineering problem, not a framework problem.<p>I recently wrote a FastAPI project that was db-driven, with all the necessary test cases, etc. The amount of lines it took to express the controller, the schemas and models separately, the dependencies for auth and stuff, and especially elaborate test cases was pretty substantial. Yeah, the code was all explicit, but it was not enjoyable.</p>
]]></description><pubDate>Thu, 12 Dec 2024 06:13:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=42396687</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42396687</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42396687</guid></item><item><title><![CDATA[New comment by cplat in "SpiderBasic"]]></title><description><![CDATA[
<p>Yes, which is why the rest of my sentence is important. I said, “I haven’t found a need to use a proprietary language.” I didn’t claim that one will never be needed by anyone. :-)</p>
]]></description><pubDate>Sat, 07 Dec 2024 14:37:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=42350082</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42350082</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42350082</guid></item><item><title><![CDATA[New comment by cplat in "SpiderBasic"]]></title><description><![CDATA[
<p>Yes, I’m aware, which is why it reminded me of PureBasic with which I’m more familiar. :-)</p>
]]></description><pubDate>Sat, 07 Dec 2024 14:36:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=42350076</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42350076</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42350076</guid></item><item><title><![CDATA[New comment by cplat in "SpiderBasic"]]></title><description><![CDATA[
<p>I'm familiar with PureBasic (although didn't use it a lot). I got introduced to it in the 2000s (2000-2007 or something), along with DarkBasic, GameMaker, and the likes.<p>In today's era, however, I have not yet found a need to use a proprietary language.</p>
]]></description><pubDate>Sat, 07 Dec 2024 12:27:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=42349342</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42349342</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42349342</guid></item><item><title><![CDATA[New comment by cplat in "When did estimates turn into deadlines?"]]></title><description><![CDATA[
<p>This is a very good comment and does reflect my experience. As engineers, we're the only people who can estimate something close enough, and it becomes our job to do that while taking into account the risks.<p>Our bad assumption is in thinking that only the final output matters, regardless of when and where it is delivered. Like saying that it only matters if the train arrives at the station, regardless of when it does.<p>The problem is anyone depending on us downstream will get impacted. And yes, estimation is tough, requires foresight, and maybe a lot more things, but that's what being a professional means.</p>
]]></description><pubDate>Wed, 20 Nov 2024 01:32:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=42189980</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42189980</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42189980</guid></item><item><title><![CDATA[New comment by cplat in "When did estimates turn into deadlines?"]]></title><description><![CDATA[
<p>This is it. I'm a hardcore engineer at heart who has a lot of these sales, marketing, and product folks as friends, and can attest to the fact that they also have constraints.<p>The whole world runs on deadlines and timelines. Even a president is elected for a specific duration. If you're in a B2B setting, the customer demands (sometimes even contractually binding) at least the Quarter when something will be delivered.<p>Time is the only common denominator by which different activities can be coordinated. Without some heed to time, there will be no coherence.</p>
]]></description><pubDate>Wed, 20 Nov 2024 01:28:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=42189953</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42189953</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42189953</guid></item><item><title><![CDATA[Why Being on Hacker News Is a Superpower]]></title><description><![CDATA[
<p>Article URL: <a href="https://thephilosopher.tech/why-being-on-hackernews-is-a-superpower">https://thephilosopher.tech/why-being-on-hackernews-is-a-superpower</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42162948">https://news.ycombinator.com/item?id=42162948</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 17 Nov 2024 09:05:12 +0000</pubDate><link>https://thephilosopher.tech/why-being-on-hackernews-is-a-superpower</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42162948</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42162948</guid></item><item><title><![CDATA[New comment by cplat in "Interview gone wrong"]]></title><description><![CDATA[
<p>If your knowledge of Python comes from JavaScript, I would not blame Python for it. It's the failure of the person to not "read the instructions" and assume instead. Maybe conduct interviews in languages that you're familiar with?</p>
]]></description><pubDate>Mon, 04 Nov 2024 02:51:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=42037980</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=42037980</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42037980</guid></item><item><title><![CDATA[New comment by cplat in "Response to WP Engine’s Lawsuit"]]></title><description><![CDATA[
<p>By that logic, the 30% Apple tax must be "extremely fair" because all iOS apps are built on both the software and hardware built by Apple, which are arguably far more complex than a piece of PHP software. (/sarcasm)<p>Being "built" on something does not in itself imply value. What has to be taken into account is also "value that is added." If the underlying platform had high intrinsic value in itself, then no value would have had to be built on it to profit from it, which would mean WP Engine would not be the only entity profiting from it.<p>And to add to the reductio ad absurdum, are PHP engineers required to "donate part of their salaries" to the project just because "they're profiting off of that language?" (/sarcasm)</p>
]]></description><pubDate>Sun, 13 Oct 2024 06:40:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=41825723</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=41825723</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41825723</guid></item><item><title><![CDATA[New comment by cplat in "Launch HN: Arva AI (YC S24) – AI agents for instant global KYB onboarding"]]></title><description><![CDATA[
<p>Looks awesome. Compliance in itself is a huge space that can benefit from a lot of automation. And the pain point of avoiding back-and-forth and giving quick feedback is real, because people usually don't read instructions, but rely on "feedback" to instruct them. All the best!</p>
]]></description><pubDate>Thu, 22 Aug 2024 17:43:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=41322674</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=41322674</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41322674</guid></item><item><title><![CDATA[India's biggest crypto exchange WazirX loses nearly half its reserves]]></title><description><![CDATA[
<p>Article URL: <a href="https://timesofindia.indiatimes.com/technology/tech-news/indias-biggest-crypto-exchange-wazirx-loses-nearly-half-its-reserves-how-what-and-other-details-about-the-hacker-attack/articleshow/111845421.cms">https://timesofindia.indiatimes.com/technology/tech-news/indias-biggest-crypto-exchange-wazirx-loses-nearly-half-its-reserves-how-what-and-other-details-about-the-hacker-attack/articleshow/111845421.cms</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41002082">https://news.ycombinator.com/item?id=41002082</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 19 Jul 2024 04:52:03 +0000</pubDate><link>https://timesofindia.indiatimes.com/technology/tech-news/indias-biggest-crypto-exchange-wazirx-loses-nearly-half-its-reserves-how-what-and-other-details-about-the-hacker-attack/articleshow/111845421.cms</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=41002082</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41002082</guid></item><item><title><![CDATA[New comment by cplat in "How to think in writing"]]></title><description><![CDATA[
<p>As someone who has done a lot of those things (beyond programming), I can assuredly say that "writing about something" is neither a proof of understanding nor a proficiency in a subject. (Case in point, our educational system)</p>
]]></description><pubDate>Sun, 07 Jul 2024 13:20:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=40897504</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=40897504</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40897504</guid></item><item><title><![CDATA[New comment by cplat in "Microsoft Chose Profit over Security, Whistleblower Says"]]></title><description><![CDATA[
<p>But wouldn't the value of data be reflect in the cost of exploitation? (By cost of exploitation, I don't mean to say the resources needed to exploit, but what a company would stand to lose if exploited). The values of the variables, sure, can be different. I don't see why the equation has to be.</p>
]]></description><pubDate>Sat, 15 Jun 2024 09:53:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=40688665</link><dc:creator>cplat</dc:creator><comments>https://news.ycombinator.com/item?id=40688665</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40688665</guid></item></channel></rss>