<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: lxdlam</title><link>https://news.ycombinator.com/user?id=lxdlam</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 14 Aug 2026 21:22:35 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=lxdlam" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by lxdlam in "DeepSeek Harness developer preview"]]></title><description><![CDATA[
<p>If you run the `dsh`, you can go to the Settings -> Plugins, and you can find that they just write all UI components as plugins(maybe not all, I don't check). Also, you may ask the harness to write a UI plugin for you, I just read some neat examples somewhere.</p>
]]></description><pubDate>Thu, 13 Aug 2026 18:58:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=49290452</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=49290452</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49290452</guid></item><item><title><![CDATA[New comment by lxdlam in "DeepSeek Harness developer preview"]]></title><description><![CDATA[
<p>I have read the underlying paper, and found it may be useful, but not that useful.<p>For those who want to know what it achieves: it adds hot-reload and dynamic enable/dispose capabilities to a plugin system, like the one in Pi agents, though they push the boundaries further, to the UI components and so on.<p>For those who want to know what it does: if you have some PLT knowledge, ask your agent to explain the algebra to you better; for those who aren't familiar, the framework requires each plugin to provide how it initializes and how it destructs (like C++'s RAII, Rust's Drop trait and so on), and the runtime will then properly handle the lifecycle events and the common pitfalls. In addition, it provides a clean way to declare the dependencies between plugins, and the runtime will also properly process the lifecycle changes on a broader plane.<p>I think it's worth reading if you are not familiar with OSGi, iPOJO, React's useEffect and so on (which the paper itself mentions); for others, a skim is enough: it does point out the gotchas for some common problems, but the algebra may not help you further.</p>
]]></description><pubDate>Thu, 13 Aug 2026 14:23:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=49286436</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=49286436</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49286436</guid></item><item><title><![CDATA[New comment by lxdlam in "Jack Dorsey launches Buzz to combine team chat, AI agents and Git hosting"]]></title><description><![CDATA[
<p>Disclaimer: I'm not working for them, just FYI.<p>Seems to be an raft.build competitor but open source.<p>BTW, from my very own opinion, IM is a great place for agents to chat, but not a good place for get work done. Something more comprehensive like Linear should be work better. Communication is a key stone but not all for the agents.</p>
]]></description><pubDate>Tue, 21 Jul 2026 22:24:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=48999205</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=48999205</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48999205</guid></item><item><title><![CDATA[New comment by lxdlam in "pg_durable: Microsoft open sources in-database durable execution"]]></title><description><![CDATA[
<p>Durable execution was one of my most worth investing techniques 2024, and glad to see it's blooming in 2026. The idea behind it is pretty simple: persistent state machines, auto or semi-auto context capture, and a run engine, but it actually solves many common headaches like exactly once execution with retry, signal based workflow and so on.</p>
]]></description><pubDate>Sat, 06 Jun 2026 10:25:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=48423444</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=48423444</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48423444</guid></item><item><title><![CDATA[New comment by lxdlam in "The Gleam Programming Language"]]></title><description><![CDATA[
<p>I still suspect the effectiveness of plugging in a type system patch to a complete system, like typescript to javascript. We still observe so many `as any` or `as unknown as` at every corner.<p>Despite of the suspicion, Gleam provides a better and elegant syntax for those who are not familiar with Erlang or functional programming languages, which I loved most.</p>
]]></description><pubDate>Wed, 14 Jan 2026 06:12:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=46612907</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=46612907</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46612907</guid></item><item><title><![CDATA[New comment by lxdlam in "Gemini 3 Pro Model Card [pdf]"]]></title><description><![CDATA[
<p>What does the "Google Antigravity" mean? The link is <a href="http://antigravity.google/docs" rel="nofollow">http://antigravity.google/docs</a>, seemingly a new product but now routing to the Google main page.</p>
]]></description><pubDate>Tue, 18 Nov 2025 12:52:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=45965032</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=45965032</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45965032</guid></item><item><title><![CDATA[New comment by lxdlam in "Kratos - Cloud native Auth0 open-source alternative (self-hosted)"]]></title><description><![CDATA[
<p>We self hosted Kratos only as our IdP: three million total users, about 200k login/logout/session/jwt queries a day, using only four 1C 2G k8s pods with one extra for courier, a standard proxied 4c8g Postgres, everything works fine. Really easy to maintain with simple configuration and fully featured API.<p>But their documentation is really bad, especially in OSS suites. I generally use Claude Code to read their code, find the matching implementation, and try to figure out how to properly configure.<p>Anyway, if you need self host your IdP, just go for it, you cannot go wrong.</p>
]]></description><pubDate>Thu, 13 Nov 2025 18:45:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=45918779</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=45918779</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45918779</guid></item><item><title><![CDATA[New comment by lxdlam in "A cartoonist's review of AI art, by Matthew Inman"]]></title><description><![CDATA[
<p>I'm reading some literature(fictions and non-fictions) reviews these days, and realized that literature itself, is just recording our lives in thousands or even millions of different views. The events in the real life can be similar or even identical, but will finally result in many different books, some of them are bad while others are masterpieces. Then I suddenly realized that why I hate some AI work as a long time content consumer, because that the creator behind them are just utilizing AI as a "tool", to quickly generate something meanlingless only for sensory stimulation, which stays at the surface-level, becoming a sort of cheap sensationalism works.<p>In contrast, I must admit that there are some AI assisted creations really shine , for example, generate an AR annotated POI image with nano banana(<a href="https://x.com/bilawalsidhu/status/1960529167742853378" rel="nofollow">https://x.com/bilawalsidhu/status/1960529167742853378</a>). But sadly, there are only 1% of creations, regardless it's an image, an audio or a video, are good, inspiring and exciting as previous ones.<p>Before AI can get a consciousness, it's a tool, no matter how "smart" it looks like. Only the human who use the tool smartly will create outstanding works.</p>
]]></description><pubDate>Wed, 08 Oct 2025 19:28:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=45519706</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=45519706</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45519706</guid></item><item><title><![CDATA[New comment by lxdlam in "AI is not our future"]]></title><description><![CDATA[
<p>Really happy to see some company that plays a key role that publish such a statement. Creativity comes from humanity, from our experience, our work, our connection.<p>AI may be not a theft, but it just sophisticated combinations from our wisdom. Until it can really create, the human will always win.</p>
]]></description><pubDate>Fri, 30 May 2025 13:55:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=44136269</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=44136269</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44136269</guid></item><item><title><![CDATA[New comment by lxdlam in "Nvidia announces next-gen RTX 5090 and RTX 5080 GPUs"]]></title><description><![CDATA[
<p>It really sucks. BTW, how did you find the statement? I cannot find it in any place.</p>
]]></description><pubDate>Wed, 08 Jan 2025 09:48:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=42632572</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42632572</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42632572</guid></item><item><title><![CDATA[New comment by lxdlam in "Nvidia announces next-gen RTX 5090 and RTX 5080 GPUs"]]></title><description><![CDATA[
<p>I have a serious question about the term "AI TOPS". I find many conflicting definitions while others say nothing. A meaningful metric should at least be well defined on its own term, like in "TOPS" or expanded "Tera Operations Per Second", what operation it will measure?<p>Seemingly NVIDIA is just playing number games, like wow 3352 is a huge leap compared to 1321 right? But how does it really help us in LLMs, diffusion models and so on?</p>
]]></description><pubDate>Tue, 07 Jan 2025 08:54:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=42620623</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42620623</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42620623</guid></item><item><title><![CDATA[New comment by lxdlam in "OpenAI is Visa – Buttering up the government to retain a monopoly"]]></title><description><![CDATA[
<p>From my very own perspective, to compare OpenAI with any others is meaningless: AI is far different in terms of resources and business models, maybe similar to some others, but it may collapse or have the rug pulled out by another significant technology evolution, e.g., quantum computer which may ridiculously speed up the training, or a more self-update-friendly model architecture.<p>To the rest of us, training a usable model these days is relatively affordable, and it seems to make no difference to use a "most intelligent" model against a subtly small model. The current business blocker is to find the application fields that work for models, which is not an area where OpenAI has an advantage.</p>
]]></description><pubDate>Fri, 27 Dec 2024 03:43:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=42519774</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42519774</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42519774</guid></item><item><title><![CDATA[New comment by lxdlam in "Tokyo released point cloud data of the entire city for free"]]></title><description><![CDATA[
<p>I must say this is tremendous. There are many different AIGC explorations in 3D topics, with such high quality dataset, it will greatly assist current workflow and accelerate the 3D creative evolution.</p>
]]></description><pubDate>Tue, 24 Dec 2024 16:03:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=42502757</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42502757</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42502757</guid></item><item><title><![CDATA[Role-Prompting: Does Adding Personas to Your Prompts Make a Difference?]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.prompthub.us/blog/role-prompting-does-adding-personas-to-your-prompts-really-make-a-difference">https://www.prompthub.us/blog/role-prompting-does-adding-personas-to-your-prompts-really-make-a-difference</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42375000">https://news.ycombinator.com/item?id=42375000</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 10 Dec 2024 08:39:59 +0000</pubDate><link>https://www.prompthub.us/blog/role-prompting-does-adding-personas-to-your-prompts-really-make-a-difference</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42375000</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42375000</guid></item><item><title><![CDATA[New comment by lxdlam in "Pat Gelsinger was wrong for Intel"]]></title><description><![CDATA[
<p>I've watched the talk in 2022 between Linus and Pat. It's a common talk as a company PR but I think Pat showed me that he is a real engineer to drive this huge and years-old company, not the Wall Street managers.<p>For anyone interested, <a href="https://www.youtube.com/watch?v=0m4hlWx7oRk" rel="nofollow">https://www.youtube.com/watch?v=0m4hlWx7oRk</a>.</p>
]]></description><pubDate>Mon, 09 Dec 2024 03:53:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=42362942</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42362942</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42362942</guid></item><item><title><![CDATA[New comment by lxdlam in "The 70% problem: Hard truths about AI-assisted coding"]]></title><description><![CDATA[
<p>You mentioned a great point that LLMs are hitting the edge of a marginal gain decreasing point, at least I think so. Many applications are struggling to provide real benefits instead of just entertaining people.<p>Another funny thing is that we are using LLM to replace creative professionals, but the real creativity is from human experience, perception and our connections, which are exactly missing from LLM.</p>
]]></description><pubDate>Fri, 06 Dec 2024 11:03:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=42338605</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42338605</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42338605</guid></item><item><title><![CDATA[New comment by lxdlam in "The 70% problem: Hard truths about AI-assisted coding"]]></title><description><![CDATA[
<p>Totally agree.<p>The software development is absolutely a fractal. In 1960s we were solving the complexity by using high level language that compile to machine code to enable more people write simple code. This has happened again and again and again.<p>But different generations face different problems, which requires another level of thinking, abstraction, and push both boundaries until we reach the next generation. All of this is not solved by a single solution, but the combination based on basic principles that never changes, and these things, at least for now, only human can do.</p>
]]></description><pubDate>Fri, 06 Dec 2024 08:52:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=42337763</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42337763</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42337763</guid></item><item><title><![CDATA[New comment by lxdlam in "The history of Monokai"]]></title><description><![CDATA[
<p>Tried a lot of Monokai-likes or named themes, then picked Monokai Pro and purchased it 4 years ago, and only realized it is the real successor of the original Monokai today.<p>It's the only color scheme I've used for over 8 years if considering the usage of orig Monokai. For me, it's worth more than its price.</p>
]]></description><pubDate>Thu, 31 Oct 2024 06:55:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=42004126</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=42004126</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42004126</guid></item><item><title><![CDATA[New comment by lxdlam in "Cryptographic Right Answers: Post Quantum Edition"]]></title><description><![CDATA[
<p>I'm curious why the author always recommends using a hybrid scheme, i.e., a classical protocol combined with a PQC protocol. I'm not an expert in PQC; what property are we losing that requires us to still need a classical protocol in the same time?<p>Edit: I've found a design draft associated with the TLS 1.3 hybrid scheme that explains the choice: <a href="https://datatracker.ietf.org/doc/html/draft-ietf-tls-hybrid-design-10" rel="nofollow">https://datatracker.ietf.org/doc/html/draft-ietf-tls-hybrid-...</a>.</p>
]]></description><pubDate>Tue, 30 Jul 2024 07:19:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=41106805</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=41106805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41106805</guid></item><item><title><![CDATA[New comment by lxdlam in "ThankYouHN: 14 Years"]]></title><description><![CDATA[
<p>HN became the go-to place to find and discuss serious technology topics several years ago and still is today.</p>
]]></description><pubDate>Fri, 07 Jun 2024 04:40:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=40605415</link><dc:creator>lxdlam</dc:creator><comments>https://news.ycombinator.com/item?id=40605415</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40605415</guid></item></channel></rss>