<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: Klaus23</title><link>https://news.ycombinator.com/user?id=Klaus23</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 23 May 2026 00:13:53 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Klaus23" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Klaus23 in "Accelerating Gemma 4: faster inference with multi-token prediction drafters"]]></title><description><![CDATA[
<p>Good analysis. That's surprising. I always heard that the draft model doesn't affect the output in any way. It seems they do it like this to achieve faster generation. It would be interesting to investigate how this affects the output.<p>Edit: I haven't gone through all the code, but they might do something like this: <a href="https://arxiv.org/abs/2211.17192" rel="nofollow">https://arxiv.org/abs/2211.17192</a> where a draft model is used and the output distribution is tweaked on rejection, resulting in the exact same distribution as the main model.</p>
]]></description><pubDate>Wed, 06 May 2026 14:47:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=48036921</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=48036921</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48036921</guid></item><item><title><![CDATA[New comment by Klaus23 in "Accelerating Gemma 4: faster inference with multi-token prediction drafters"]]></title><description><![CDATA[
<p>In theory, you could do that and increase the speed at higher temperatures, but it would subtly alter your output based on the draft model preferences. Rather than picking randomly from the main model probabilities, you would have to accept a draft model pick if it is close enough.<p>As far as I know, this is not used in practice. Currently popular implementations always match the main model output, and the draft model only affects the speed.</p>
]]></description><pubDate>Wed, 06 May 2026 11:10:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=48034855</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=48034855</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48034855</guid></item><item><title><![CDATA[New comment by Klaus23 in "Accelerating Gemma 4: faster inference with multi-token prediction drafters"]]></title><description><![CDATA[
<p>The token is correct if it matches the one generated by the main model. It works like this:<p>The draft model quickly generates draft-token 1.<p>The main model then starts working on two tokens in parallel. It calculates token 1 based on the context, and token 2 based on the context + draft-token 1.<p>Once the two tokens have been generated, you can check whether the draft-token 1 from the draft model matches token 1 from the main model.<p>If they match, you have just calculated two tokens in the time it takes to generate one, because the calculation was done in parallel.
If they do not match, delete token 2 and generate it again. Since you have already generated the correct token 1 with the big model, you can use the context + token 1 (from the main model). This takes more time, but the result is always the same.</p>
]]></description><pubDate>Tue, 05 May 2026 20:50:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48028328</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=48028328</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48028328</guid></item><item><title><![CDATA[New comment by Klaus23 in "Accelerating Gemma 4: faster inference with multi-token prediction drafters"]]></title><description><![CDATA[
<p>It really is. This is because LLMs with a single output/user are strongly bandwidth limited. Although the hardware can generate multiple tokens simultaneously, it is slowed down if the tokens depend on each other, as is the case with regular text generation.<p>The draft model essentially predicts the next token quickly, enabling you to start generating the subsequent token in parallel. If the guess is right, the second generated token is correct. If it is wrong, the second generated token is also potentially wrong, so it must be generated again using the correct prior token obtained through the big model.<p>A poor draft model will simply slow down the process without affecting the output.</p>
]]></description><pubDate>Tue, 05 May 2026 19:36:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=48027419</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=48027419</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48027419</guid></item><item><title><![CDATA[New comment by Klaus23 in "Hard-braking events as indicators of road segment crash risk"]]></title><description><![CDATA[
<p>If you are referring to the alert stage of the emergency braking system, triggering it should be rare if you drive reasonably well. It is also most likely a situation in which you could benefit from a little more braking force.<p>If you decide to swerve, the additional weight at the front will help you to initiate the turn, and good systems will then reduce the braking force at the right moment to give you the most traction when cornering.</p>
]]></description><pubDate>Tue, 10 Feb 2026 04:51:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=46955534</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=46955534</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46955534</guid></item><item><title><![CDATA[New comment by Klaus23 in "Show HN: It took 4 years to sell my startup. I wrote a book about it"]]></title><description><![CDATA[
<p>Perhaps this is what you are looking for: <a href="https://www.deepl.com/en/write" rel="nofollow">https://www.deepl.com/en/write</a><p>It corrects spelling errors and improves awkward wording. You can then go and choose alternative sentences or words. Just don't expect any sort of deeper intelligence.</p>
]]></description><pubDate>Sun, 08 Feb 2026 22:06:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=46939039</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=46939039</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46939039</guid></item><item><title><![CDATA[New comment by Klaus23 in "Autonomous cars, drones cheerfully obey prompt injection by road sign"]]></title><description><![CDATA[
<p>They are analysing VLM here, but it's not as if any other neural network architecture wouldn't be vulnerable. We have seen this in classifier models that can be tricked by innocuous-looking objects, we have seen it in LLMs, and we will most likely see it in any end-to-end self-driving model.<p>If an end-to-end model is used and there is no second, more traditional safety self-driving stack, like the one Mercedes will use in their upcoming Level 2++ driving assistant, then the model can be manipulated essentially without limit. Even a more traditional stack can be vulnerable if not carefully designed. It is realistic to imagine that one printed page stuck on a lamppost could cause the car to reliably crash.</p>
]]></description><pubDate>Sun, 01 Feb 2026 16:58:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=46847497</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=46847497</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46847497</guid></item><item><title><![CDATA[New comment by Klaus23 in "Rubio stages font coup: Times New Roman ousts Calibri"]]></title><description><![CDATA[
<p>Good, and not because of the diversity drama that the US government wants to shoehorn in here. Any font that makes the uppercase "i" and the lowercase "L" look the same is absolute garbage. Yes, I have a strong opinion about this!</p>
]]></description><pubDate>Thu, 11 Dec 2025 19:04:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=46235634</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=46235634</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46235634</guid></item><item><title><![CDATA[New comment by Klaus23 in "SmartTube Compromised"]]></title><description><![CDATA[
<p>> Why do you need Flatpak for sandboxing?<p>You don't, but as far as I know, Flatpak or Snap are the only practical, low-effort ways to do it on standard distros. There's nothing stopping flatpak-like security from being combined with traditional package management and shared libraries. Perhaps we will see this in the future, but I don't see much activity in this area at the moment.</p>
]]></description><pubDate>Mon, 01 Dec 2025 18:14:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=46110815</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=46110815</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46110815</guid></item><item><title><![CDATA[New comment by Klaus23 in "SmartTube Compromised"]]></title><description><![CDATA[
<p>A lot of people installed malware and, to be honest, nothing really happened. They might have had to change their passwords, but it could have been much much worse if Android didn't have good sandboxing.<p>I hope that Flatpak and similar technologies are adopted more widely on desktop computers. With such security technology existing, giving every application full access to the system is no longer appropriate.</p>
]]></description><pubDate>Mon, 01 Dec 2025 12:16:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=46106487</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=46106487</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46106487</guid></item><item><title><![CDATA[New comment by Klaus23 in "Bird flu viruses are resistant to fever, making them a major threat to humans"]]></title><description><![CDATA[
<p>This is simply not true. Bird flu mainly spreads among wild birds and that is where it has its reservoir. It would still exist even if the world was free of bird farms. It also usually doesn't spread between farms because, in the event of an outbreak, all the animals on the affected farm are culled. At most, bird farms slightly increase overall contact between birds and humans.</p>
]]></description><pubDate>Fri, 28 Nov 2025 03:51:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=46075347</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=46075347</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46075347</guid></item><item><title><![CDATA[New comment by Klaus23 in "Germany to classify date rape drugs as weapons to ensure justice for survivors"]]></title><description><![CDATA[
<p>I don't have a background in law, but here are some suggestions. The German penal code often imposes harsher punishments for the same offense if a weapon was involved. Rape, for example, carries a minimum sentence of two years. If a weapon is present, it is a minimum of three years. If the weapon is used, the minimum sentence is 5 years.<p>Before the change, date rape drugs would have fallen under a minimum of three years because of a separate clause.<p>Classifying them as weapons would also affect crimes other than rape.<p>Additionally, if legal substances can be used as date rape drugs, classifying them as weapons would give the police more authority to act in certain situations.</p>
]]></description><pubDate>Sun, 23 Nov 2025 04:41:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=46020805</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=46020805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46020805</guid></item><item><title><![CDATA[New comment by Klaus23 in "Verifying your Matrix devices is becoming mandatory"]]></title><description><![CDATA[
<p>> for me it wasn't really; occasionally it would hit me, but mostly it worked, and I have been using it for encrypted communication since 2020.<p>I think the statistic said that around 10% of users receive at least one "unable to decrypt" message on any given day. That's a lot. Perhaps not for devs who are accustomed to technical frustrations, but for non-technical people, that's far too frequent. Other messaging systems worked much better.<p>> There still can be technical corner cases in the interaction of clients<p>> a talk for details: <a href="https://www.youtube.com/watch?v=ZUSucR2axWI" rel="nofollow">https://www.youtube.com/watch?v=ZUSucR2axWI</a><p>You linked to a German political talk show. If you wanted to show me the talk in which the guy listed reasons such as "network requests can fail and our retry logic is so buggy that it often breaks" and "the application regularly corrupts its internal state, so we have to recover from that, which is not always easily possible", let's just say I wasn't that impressed.<p>> well, even if this was true, they still were brave enough to try and eventually pull it off eventually. Perhaps complain to the competent people who haven't even tried.<p>It isn't a problem that the Matrix team are not federated networking experts. At the time, they had already received millions in investment. That's not FAANG money, but it's still enough to contract the right people to help design everything properly.<p>I'm not mad at them. Matrix was a bold effort that clearly succeeded in its aims. I'm just disappointed that it was so unreliable for such a long time, and still is to some extent.</p>
]]></description><pubDate>Thu, 20 Nov 2025 13:47:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=45992495</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=45992495</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45992495</guid></item><item><title><![CDATA[New comment by Klaus23 in "Verifying your Matrix devices is becoming mandatory"]]></title><description><![CDATA[
<p>Yes, messaging protocols, especially federated ones, are never easy. I just wish we could have skipped the three or four years when Matrix was basically unusable for the average user because end-to-end encryption was switched on by default. Perhaps a clean redesign would have been better. Now they have to change the wheels on a moving car.</p>
]]></description><pubDate>Thu, 20 Nov 2025 11:23:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=45991496</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=45991496</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45991496</guid></item><item><title><![CDATA[New comment by Klaus23 in "Verifying your Matrix devices is becoming mandatory"]]></title><description><![CDATA[
<p>It's not just a corner case. The issue was so prevalent for years that if it was limited to just a few corner cases, the entire protocol must consist of nothing but corner cases.<p>It frequently occurred on the "happy path": on a single server that they control, between identical official clients, in the simplest of situations. There really is no excuse.<p>I'm not saying that building a federated chat network with working encryption is easy. On the contrary, it is very hard. I'm sure the designers had the best intentions, but they simply lacked the competence to overcome such a challenge and ensure the protocol was mostly functional right from the outset.</p>
]]></description><pubDate>Thu, 20 Nov 2025 10:57:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=45991352</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=45991352</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45991352</guid></item><item><title><![CDATA[New comment by Klaus23 in "Verifying your Matrix devices is becoming mandatory"]]></title><description><![CDATA[
<p>It's pretty accurate. I was a bit shocked when I saw that room names were not encrypted. I thought that was such a basic privacy requirement, and it's not hard to implement when you already have message encryption.<p>Matrix seems to have a lot of these structural flaws. Even the encryption praised in the Reddit post has had problems for years where messages don't decrypt. These issues are patched slowly over time, but you shouldn't need to show me a graph demonstrating how you have slowly decreased the decryption issues. There shouldn't be any to begin with! If there are, the protocol is fundamentally broken.<p>They are slowly improving everything, with the emphasis on "slowly". It will take years until everything is properly implemented. To answer the question of whether the future of the protocol is promising, I would say yes. This is in no small part because there are currently no real alternatives in this area. If you want an open system, this is the best option.</p>
]]></description><pubDate>Thu, 20 Nov 2025 02:43:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=45988248</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=45988248</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45988248</guid></item><item><title><![CDATA[New comment by Klaus23 in "Core Devices keeps stealing our work"]]></title><description><![CDATA[
<p>Once again, we have the situation where someone uses an Apache or BSD licence, only to then wonder why others do exactly what the licence allows. If you want others, especially companies, to play nice, you have to make them do so. Use GPL or AGPL.<p>Let's hope Rebble doesn't get steamrollered. They did good work when the original company failed its users.</p>
]]></description><pubDate>Tue, 18 Nov 2025 04:28:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=45961399</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=45961399</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45961399</guid></item><item><title><![CDATA[New comment by Klaus23 in "Steam Machine"]]></title><description><![CDATA[
<p>Perhaps a trusted execution environment based anti-cheat system could be possible.<p>I think Valve said something about working with anti-cheat developers to find a solution for the Steam Deck, but nothing happened. Perhaps they will do something this time.<p>With a TEE, you could scan the system or even completely isolate your game, preventing even the OS from manipulating it. As a last resort, you could simply blacklist the machine if cheats are detected.<p>There would probably still be some cheaters, but the numbers would be so low as to not be a problem.</p>
]]></description><pubDate>Wed, 12 Nov 2025 22:51:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=45908020</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=45908020</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45908020</guid></item><item><title><![CDATA[New comment by Klaus23 in "Macro Splats 2025"]]></title><description><![CDATA[
<p>Gaussian splats can have colour components that depend on the viewing direction. As far as I know, they are implemented as spherical harmonics. The angular resolution is determined by the number of spherical harmonic components. If this is too low, all reflection changes will be slow and smooth, and any reflection will be blurred.</p>
]]></description><pubDate>Sun, 12 Oct 2025 12:52:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=45557894</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=45557894</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45557894</guid></item><item><title><![CDATA[New comment by Klaus23 in "Blender 4.5 LTS"]]></title><description><![CDATA[
<p>A .step or .stp file encodes the model as mathematical shapes, rather than approximating it with polygons, but it doesn't save the entire parametric workflow or history, only the final result. As far as I know, there is no widely adopted file format that also saves this information.</p>
]]></description><pubDate>Fri, 03 Oct 2025 07:57:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=45460257</link><dc:creator>Klaus23</dc:creator><comments>https://news.ycombinator.com/item?id=45460257</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45460257</guid></item></channel></rss>