<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: neRok</title><link>https://news.ycombinator.com/user?id=neRok</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 20 Jun 2026 15:26:26 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=neRok" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by neRok in "AMD's Ryzen 9 9950X3D2 Dual Edition crams 208MB of cache into a single chip"]]></title><description><![CDATA[
<p>This video made the argument that AMD released it to not give Intel a look-in: [AMD KILLED Intel's 290K Dreams w/ R9 9950X3D2](<a href="https://www.youtube.com/watch?v=u7SyrDPbKls" rel="nofollow">https://www.youtube.com/watch?v=u7SyrDPbKls</a>)</p>
]]></description><pubDate>Sat, 28 Mar 2026 09:47:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=47553103</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=47553103</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47553103</guid></item><item><title><![CDATA[New comment by neRok in "Forget Flags and Scripts: Just Rename the File"]]></title><description><![CDATA[
<p>Thinking more, Microsoft should definitely implement this as a standard feature. They should be able to implement it quite quickly, and then promote it as a win for Windows AND dotnet - and they need some wins!<p>So there would need to be standard defined, whereby the exe would basically embed a "protobuf" definition in it's header area, and then a maximally sized "message" could be tacked on to the end of the exe. In the Explorer>file-Properties screen, there could be a config tab that shows the current config (and maybe allows direct editing), plus buttons for import/export/clear config. And as part of the standard, options could be defined as public/shared or private, and thus private fields would get encrypted by the OS/TPM, which means sharing an exe with sensitive info embedded would "not be a risk". The config tab could even have a "meta" option for things like "config changes update this executables modified date" (again for the sync/backup aspect).</p>
]]></description><pubDate>Wed, 18 Mar 2026 12:32:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47424925</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=47424925</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47424925</guid></item><item><title><![CDATA[New comment by neRok in "Forget Flags and Scripts: Just Rename the File"]]></title><description><![CDATA[
<p>That would actually be handy, because I'm personally sick of all the ~2KB ini files that "portable" programs* leave all over the place. It would be awesome if they instead came with a few KB internal padding that was used to store the config (so the filesize doesn't change, to not affect simplistic sync/backup routines), and then silently updated their config on-the-fly.<p>* ini spawning programs include CPU-Z, HWMon, HWiNFO, BulkRenameUtility, HxD (newer versions spawn a settings folder), seemingly every NirSoft + O&O tool - and the master of all spawners: explorer.exe dropping desktop.ini's.</p>
]]></description><pubDate>Wed, 18 Mar 2026 12:16:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47424747</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=47424747</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47424747</guid></item><item><title><![CDATA[New comment by neRok in "Lazycut: A simple terminal video trimmer using FFmpeg"]]></title><description><![CDATA[
<p>> Re-encoding just until the nearest keyframe I'm sure is also possible
Yer, I've done that, and it's a pain to do "manually" (ie, without having a script ready to do it for you). I've also manually sliced the bitstream to re-insert the keyframe, which if applied to my clip5.mp4 example, could potentially reduce the 50* negative ts frames to maybe 2 or 3. It would be easier if there were tools that could "unpack" and "repack" the frames within the bitstream, and allow you to modify "pointers"/etc in the process - but I don't know of any such thing.</p>
]]></description><pubDate>Tue, 17 Mar 2026 10:20:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=47410725</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=47410725</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47410725</guid></item><item><title><![CDATA[New comment by neRok in "Lazycut: A simple terminal video trimmer using FFmpeg"]]></title><description><![CDATA[
<p>Yer, I noticed that this tool was just doing `-ss -i -t` from its demo gif, which is what prompted me to reply. I'm sure people will discover that all sorts of problems will manifest if they don't start a lossless clip on a keyframe. One such scenario is when you make a clip that plays perfect on your PC, but then you send it someone over FB Messenger, and all of a sudden there's a few seconds of extra video at the start!</p>
]]></description><pubDate>Tue, 17 Mar 2026 10:01:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47410594</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=47410594</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47410594</guid></item><item><title><![CDATA[New comment by neRok in "Lazycut: A simple terminal video trimmer using FFmpeg"]]></title><description><![CDATA[
<p>There's nothing easy about it. Here's a taste.<p><pre><code>  # make a 6 second long video that alternates from green to red every second.
  ffmpeg -f lavfi -i "color=red[a];color=green[b];[a][b]overlay='mod(floor(t)\,2)*w'" -t 6 master.mp4; # creates 150 frames @ 25fps.

  # try make a 1 second clip starting at 0sec. it should be all green.
  ffmpeg -ss 0 -i "master.mp4" -t 1 -c copy "clip1.mp4"; # exports 27 frames. you see some red.
  ffmpeg -ss 0 -t  1 -i "master.mp4" -c copy "clip2.mp4"; # exports 27 frames. you see some red.
  ffmpeg -ss 0 -to 1 -i "master.mp4" -c copy "clip3.mp4"; # exports 27 frames. you see some red.

  # -t and -to stop after the limit, so subtract a frame. but that leaves 26...
  # so perhaps offset the start time so that frame#0 is at 0.04 (ie, list starts at 1)?
  ffmpeg -itsoffset 0.04 -ss 0 -i "master.mp4" -t 0.96 -c copy "clip4.mp4"; # exports 25 frames, all green, time = 1.00. success.

  # try make another 1 second clip starting at 2sec. it should be all green.
  ffmpeg -itsoffset 0.04 -ss 2 -i "master.mp4" -t 0.96 -c copy "clip5.mp4"; # exports 75 frames, time = 1.08, and you see red-green-red.
  # maybe don't offset the start, and drop 2 at the end?
  ffmpeg -ss 2 -i "master.mp4" -t 0.92 -c copy "clip6.mp4"; # exports 75 frames, time = 1.08, and you see green-red.
  ffmpeg -ss 2 -t 0.92 -i "master.mp4" -c copy "clip7.mp4"; # exports 75 frames, time = 0.92, and you see green-red.
  
  # try something different...
  ffmpeg -ss 2 -i "master.mp4" -c copy -frames 25 "clip8.mp4"; # video is broken.
  ffmpeg -ss 2 -i "master.mp4" -c copy -frames 25 -avoid_negative_ts make_zero "clip9.mp4"; # exports 25 frames, all green, time = 1.00. success?
  # try export a red video the same way.
  ffmpeg -ss 3 -i "master.mp4" -c copy -frames 25 -avoid_negative_ts make_zero "clip10.mp4"; # oh no, it's all green!</code></pre></p>
]]></description><pubDate>Mon, 16 Mar 2026 23:23:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=47406441</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=47406441</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47406441</guid></item><item><title><![CDATA[New comment by neRok in "Over 80% of 16 to 24-year-olds would vote to rejoin the EU"]]></title><description><![CDATA[
<p>> Still looking for a way out in the meantime.<p>Have you got an ancestor that was born in Canada? [1]<p>It sounds like that a child of a "red coat" born on the lands that would become Canada is sufficient... [2]<p>[1]: [Heads Up: Canadian Genealogy is about to get VERY popular!](<a href="https://old.reddit.com/r/Genealogy/comments/1qqkzte/heads_up_canadian_genealogy_is_about_to_get_very/" rel="nofollow">https://old.reddit.com/r/Genealogy/comments/1qqkzte/heads_up...</a>)<p>> On December 15, 2025 Canada enacted "Bill C-3", granting citizenship to people born before Dec. 15, 2025 with ANY level of Canadian ancestry they can document. (It used to be a "first generation limit")<p>[2]: <a href="https://old.reddit.com/r/Genealogy/comments/1qqkzte/heads_up_canadian_genealogy_is_about_to_get_very/o2hxc1y/" rel="nofollow">https://old.reddit.com/r/Genealogy/comments/1qqkzte/heads_up...</a><p>> ancestors domiciled in the former colony of Newfoundland are still considered as Canadian born or naturalized for the purpose of citizenship by descent.</p>
]]></description><pubDate>Sat, 21 Feb 2026 13:53:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=47100870</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=47100870</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47100870</guid></item><item><title><![CDATA[New comment by neRok in "gRPC: From service definition to wire format"]]></title><description><![CDATA[
<p>> - Configuring the python client with a json string that did not seem to have a documented schema<p>I'm far from an expert, yet I came to believe that what you've described is basically "code smell". And the smell probably comes from seemingly innocuous things like enum's.<p>And you wondered if the solution was using Go, but no, it isn't. I was actually Go at the time myself (this was a few years ago, and I used Twirp instead of Protobuf) - but I realised that RDBMS > "Server(Go)" layer had quirks, and then the "Server(Go)" > "API(JS)" had other quirks -- and so I realised that you may as well "splat" out every attribute/relationship. Because ultimately, that's the problem...<p>Eg: is it a null field, or undefined, or empty, or false, or [], or {}? ...<p>[] == my valentines day inbox. :P</p>
]]></description><pubDate>Sat, 14 Feb 2026 15:23:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=47015187</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=47015187</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47015187</guid></item><item><title><![CDATA[New comment by neRok in "Microsoft account bugs locked me out of Notepad – Are thin clients ruining PCs?"]]></title><description><![CDATA[
<p>Notepad++ isn't [Windows Notepad](<a href="https://apps.microsoft.com/detail/9msmlrh6lzf3" rel="nofollow">https://apps.microsoft.com/detail/9msmlrh6lzf3</a>)</p>
]]></description><pubDate>Sat, 07 Feb 2026 21:22:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=46928201</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=46928201</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46928201</guid></item><item><title><![CDATA[New comment by neRok in "Vitamin D and Omega-3 have a larger effect on depression than antidepressants"]]></title><description><![CDATA[
<p>The first link makes the problem sound like it can happen to anyone, but then when you tease out the details;<p>* Toxicity resulting from lack of monitoring is frequently seen in patients requiring high doses to treat ailments like osteoporosis, renal osteodystrophy, psoriasis, gastric bypass surgery, celiac, or inflammatory bowel disease.<p>* Patients who are on high doses of Vitamin D and taking inadvertently increased amounts of highly fortified milk are also at increased risk for vitamin D toxicity.<p>* According to the latest report from America's Poison Centers (APC), there were 11,718 cases of vitamin D exposure recorded in the National Poison Data System. More than half of these cases were in children younger than 5 years.<p>* The clinical signs and symptoms of vitamin D toxicity manifest from hypercalcemia's effects.<p>* Clinical management of vitamin D toxicity is mainly supportive and focuses on lowering calcium levels.<p>* Isotonic saline should be used to correct dehydration and increase renal calcium clearance.<p>A lot of those point to people drinking too much milk! (enriched milk)<p>* People with osteoporosis thinking "I better drink more milk for strong bones" when they are already on supplements/medicine.<p>* Kids drinking lots of milk and presumably not drinking any water - hence the dehydration.<p>PS: There are a lot of people out there that don't drink any water, and stick to juice or milk or soda, etc. They are not always fat, but that doesn't mean they don't have issues.</p>
]]></description><pubDate>Thu, 29 Jan 2026 12:05:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=46809091</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=46809091</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46809091</guid></item><item><title><![CDATA[New comment by neRok in "Vitamin D and Omega-3 have a larger effect on depression than antidepressants"]]></title><description><![CDATA[
<p>This was linked on here a couple of months ago: [The Big Vitamin D Mistake [2017]](<a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC5541280/" rel="nofollow">https://pmc.ncbi.nlm.nih.gov/articles/PMC5541280/</a>)<p>> A statistical error in the estimation of the recommended dietary allowance (RDA) for vitamin D was recently discovered; in a correct analysis of the data used by the Institute of Medicine, it was found that 8895 IU/d was needed for 97.5% of individuals to achieve values ≥50 nmol/L. Another study confirmed that 6201 IU/d was needed to achieve 75 nmol/L and 9122 IU/d was needed to reach 100 nmol/L.<p>> This could lead to a recommendation of 1000 IU for children <1 year on enriched formula and 1500 IU for breastfed children older than 6 months, 3000 IU for children >1 year of age, and around 8000 IU for young adults and thereafter. Actions are urgently needed to protect the global population from vitamin D deficiency.<p>> ...<p>> Since 10 000 IU/d is needed to achieve 100 nmol/L [9], except for individuals with vitamin D hypersensitivity, and since there is no evidence of adverse effects associated with serum 25(OH)D levels <140 nmol/L, leaving a considerable margin of safety for efforts to raise the population-wide concentration to around 100 nmol/L, the doses we propose could be used to reach the level of 75 nmol/L or preferably 100 nmol/L.</p>
]]></description><pubDate>Thu, 29 Jan 2026 11:47:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=46808915</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=46808915</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46808915</guid></item><item><title><![CDATA[New comment by neRok in "Microsoft drops AI sales targets in half after salespeople miss their quotas"]]></title><description><![CDATA[
<p>About 2 years ago I was using Whisper AI locally to translate some videos, and "hallucinations" is definitely the right phrase for some of its output! So just like you might expect from a stereotypical schizo: it would stay on-task for a while, but then start ranting about random things, or "hearing things", etc.</p>
]]></description><pubDate>Fri, 05 Dec 2025 04:47:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=46156931</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=46156931</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46156931</guid></item><item><title><![CDATA[New comment by neRok in "Tested: 1981 Datsun 280ZX Turbo (1981)"]]></title><description><![CDATA[
<p>Don't forget the OS Giken TC24-B1 from 1976: <a href="https://japanesenostalgiccar.com/sema-2009-os-giken-tc24-b1-twin-cam-l-series-head/" rel="nofollow">https://japanesenostalgiccar.com/sema-2009-os-giken-tc24-b1-...</a></p>
]]></description><pubDate>Tue, 02 Dec 2025 04:56:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=46117726</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=46117726</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46117726</guid></item><item><title><![CDATA[New comment by neRok in "Some people can't see mental images"]]></title><description><![CDATA[
<p>Just to elaborate on the "fast-facts"/post-it-note point I made: it seems there's actually a lot of "facts" ("conclusions") stored in a readily available manor in my brain. All the references/data that lead to these conclusions are stored in some deeper "archive" section though, and aren't readily available.<p>I guess you could compare them as if they are API's to different LLM's, and my "consciousness" is the web-browser. So it's like;<p><pre><code>  - `fast_facts.llm` is a micro model with good breadth and fast response times, but it has little depth. So it's API can be fetch'd without worrying about it blocking the main-thread/browser.  
  - `all_data.llm` is a full size model, but it's slow to respond, and "costs" more to run. So in the browser, it is only lazily-loaded (ie, not always used), and it has to be called async style because you have to wait for the results to slowly "stream in".
</code></pre>
And stream they do, because back to my example conversation where someone asks "how are they arrogant?" — whilst I likely wouldn't immediately remember any examples (unless they happened very recently), at that point the request to `all_data.llm` would have been sent, and so after some umm's and ahh's, I might have an answer. Or I might just say "I can't remember off the top of my head, but also ..." start talking about something else, and then after 30 seconds I will drop the classic "but actually, i just remembered, ...".</p>
]]></description><pubDate>Thu, 30 Oct 2025 20:40:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=45765048</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=45765048</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45765048</guid></item><item><title><![CDATA[New comment by neRok in "Some people can't see mental images"]]></title><description><![CDATA[
<p>Regarding "a propensity to hold grudges" and "easily move on, forget, not hold grudges": I find this to be the case. I can easily hold a grudge, because it's like the grudge is a post-it-note stuck to the front of my book-of-knowledge. This means I can readily recall the grudge, and that I can also easily forget/move-on from the grudge (just remove the note).<p>Continuing with the post-it-note analogy, the note can only hold a small amount of information, and so the grudge will be recorded as something simple like "fuck ___, they're an arrogant twat". So then the situation arises where you're talking to someone else and they ask "what do you think about ___?"; and so you answer "I can't stand them, they're so arrogant"; to which they respond "oh really, how so?"; and you can't give an answer, because it wasn't written on the note.<p>I think this ties in with memories not making you feel the relevant emotions, because the emotion you felt was also just saved as a "fact". I have found though that if I step through all the facts of an "event" and consider each "moment" along the way, that I can often generate the relevant emotion. So say I was remembering an argument, I can remember various facts about the argument and that I was angry about it, but I can't feel that anger. But if I walk through the moments, like `they said this, which made me think that, to which I rightly responded with...`, then eventually I'll start to feel angry just like I would have.<p>For an analogy on how I think memories are stored differently: then for non-aphantasiacs, I reckon their brain must save `memory.zip`, which contains `video, audio, smells, emotions, etc`. For a person like myself with aphantasia however, it's like I asked ChatGPT for a summary of `memory.zip`, and then I only saved the summary.<p>Saying that though, I do wonder about the connection between "fact based memories" and aphantasia's lack of mental imagery. Because if >50% of the usefulness of `memory.zip` is from the video, but you can't "see" the video because you aphantasia — then has your brain decided/learned to not bother saving `memory.zip` and instead just save the summary, or are all components of `memory.zip` also corrupt/unplayable?</p>
]]></description><pubDate>Thu, 30 Oct 2025 20:19:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=45764847</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=45764847</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45764847</guid></item><item><title><![CDATA[New comment by neRok in "Tags to make HTML work like you expect"]]></title><description><![CDATA[
<p>A uBlock filter can do it: `||news.ycombinator.com/*$replace=/<html/<!DOCTYPE html><html/`</p>
]]></description><pubDate>Mon, 27 Oct 2025 15:50:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=45722388</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=45722388</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45722388</guid></item><item><title><![CDATA[New comment by neRok in "From burner phones to decks of cards: NYC teens adjusting to the smartphone ban"]]></title><description><![CDATA[
<p>I imagine some would like to play pokemon cards, but the kids are priced out!</p>
]]></description><pubDate>Thu, 11 Sep 2025 22:38:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=45216822</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=45216822</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45216822</guid></item><item><title><![CDATA[New comment by neRok in "'Make invalid states unrepresentable' considered harmful"]]></title><description><![CDATA[
<p>> Invalid state is usually due to a bug<p>I don't think the article is referring to that sort of issue, which sounds fundamental to the task at hand (calculations etc). To me it's about making the code flexible with regards to future changes/requirements/adaptions/etc. I guess you could consider Y2K as an example of this issue, because the problem with 6 digit date codes wasn't with their practicality at handling dates in the 80's/90's, but about dates that "spanned" beyond 991231, ie 000101.</p>
]]></description><pubDate>Mon, 08 Sep 2025 06:49:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=45165312</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=45165312</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45165312</guid></item><item><title><![CDATA[New comment by neRok in "I am giving up on Intel and have bought an AMD Ryzen 9950X3D"]]></title><description><![CDATA[
<p>> I think a lot of it boils down to load profile and power delivery<p>You said the right words but with the wrong meaning! On Gigabyte mobo you want to increase the "CPU Vcore Loadline Calibration" and the "PWM Phase Control" settings, [see screenshot here](<a href="https://forum.level1techs.com/t/ddr4-ram-load-line-calibration-completely-missing-in-gigabyte-x570-board-uefi/164123" rel="nofollow">https://forum.level1techs.com/t/ddr4-ram-load-line-calibrati...</a>).<p>When I first got my Ryzen 3900X cpu and X570 mobo in 2019, I had many issues for a long time (freezes at idle, not waking from sleep, bios loops, etc). Eventually I found that bumping up those settings to ~High (maybe even Extreme) was what was required, and things worked for 2 years or so until I got a 5950X on clearance last year.<p>I slotted that in to the same mobo and it worked fine, but when I was looking at HWMon etc, I noticed some strange things with the power/voltage. After some mucking about and theorising with ChatGPT (it's way quicker than googling for uncommon problems), it became apparent that the ~High LLC/power settings I was still using were no good. ChatGPT explained that my 3900X was probably a bit "crude" in relative quality, and so it needed the "stronger" power settings to keep itself in order. Then when I've swapped to 5950X, it happens to be more "refined" and thus doesn't need to be "manhandled" — and in fact, didn't like being manhandled at all!</p>
]]></description><pubDate>Mon, 08 Sep 2025 06:09:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=45165092</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=45165092</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45165092</guid></item><item><title><![CDATA[New comment by neRok in "FFmpeg 8.0"]]></title><description><![CDATA[
<p>Chrome and Firefox use FFmpeg libraries to decode media, so it's in more places than you might think! (But also, ChatGPT said it's not used in Android browser apps because they would use Android's "native" media stack).</p>
]]></description><pubDate>Sat, 23 Aug 2025 00:01:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=44991507</link><dc:creator>neRok</dc:creator><comments>https://news.ycombinator.com/item?id=44991507</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44991507</guid></item></channel></rss>