<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: p410n3</title><link>https://news.ycombinator.com/user?id=p410n3</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 17 May 2026 10:05:16 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=p410n3" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by p410n3 in "Gwtar: A static efficient single-file HTML format"]]></title><description><![CDATA[
<p>> For example, .js files are supported for loading locally<p>Technically yes, but last time i tried that it gives you CORS errors now. You can start your browser with CORS disabled, but that makes sharing your .html file impossible. So back we go to inlining stuff :)</p>
]]></description><pubDate>Mon, 16 Feb 2026 12:16:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47034096</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=47034096</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47034096</guid></item><item><title><![CDATA[New comment by p410n3 in "Show HN: yolo-cage – AI coding agents that can't exfiltrate secrets"]]></title><description><![CDATA[
<p>The whole issue is why i stopped using in-editor LLMs and wont use Agents for "real" work. I cant be sure of what context it wants to grab. With the good ol' copy paste into webui I can be 100%sure what the $TECHCORP sees and can integrate whatever it spits out by hand, acting as the first version of "code review". (Much like you would read over stackoverflow code back in the day).<p>If you want to build some greenfield auxiliary tools fine, agents make sense but I find that even gemini's webui has gotten good enough to create multiple files instead of putting everything in one file.<p>This way I also dont get locked in to any provider</p>
]]></description><pubDate>Wed, 21 Jan 2026 16:34:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=46707969</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=46707969</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46707969</guid></item><item><title><![CDATA[New comment by p410n3 in "Have Taken Up Farming"]]></title><description><![CDATA[
<p>This fits them I would say. I was, at a time, chasing the dragon of software minimalism. Y'know, using lynx to browse the web, using suckless software and so on. I was using KISS Linux for a while and even tried to make a package for suckless slock (which iirc was accepted only after someone from the KISS team basically redid my build scripts). So I kinda see myself as a fan of dylan and a great influence on my formative years. (Edit: Formative years apparently means 0-8. I meant more like 16-20 - my bad )<p>What alwas struck me about dylan araps's software was that the minimalism didnt come from a lack of scope or complexity, but rather the approach to use as much of the tools that were "already there" (at least thats my way to interpret this - i might be wrong).
The pure bash bible is describing how to do common tasks in pure bash. Tasks that usually were done with external tools like sed an awk etc. Then later came the pure sh bible, doing the same for POSIX sh and therefore shedding the dependency on bash-isms. 
This represented to me a chase to go "deeper".<p>And this part clearly seems to still be a driving force to this day. Farming and producing olive oil and wine by hand, no chemicals no bullshit - that sounds like dylan araps alright. Looking at the website you can also see this spirit everywhere. Go ahead and disable JS on <a href="https://wild.gr/wine" rel="nofollow">https://wild.gr/wine</a> - the image slider still works. It uses inputs and CSS transforms. Makes the markup ever so slightly more complicated, and future changes ever so slightly more involved (unless the code is generated). But lets not kid ourselves, how often are those kind of web elemts updated?<p>It is once again a project that excels in "using whats already there" and I personally really like that, and even though I am not rocking KISS linux and DWM anymore, this way of thinking is still with me to this day, and I believe it was taught to me by dylan araps. For that I am thankful!</p>
]]></description><pubDate>Thu, 15 Jan 2026 12:26:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=46631471</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=46631471</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46631471</guid></item><item><title><![CDATA[New comment by p410n3 in "AI coding assistants are getting worse?"]]></title><description><![CDATA[
<p>I agree with both of your points since I use LLMs for things I am not good at and dont give a single poop about. The only things i did with LLMs are three examples from the last two years:<p>- Some "temporary" tool I built years ago as a pareto-style workaround broke. (As temporary tools do after some years). Its basically a wrapper that calls a bunch of XSLs on a bmecat.xml every 3-6 months. I did not care to learn XSL back then and I dont care to do it now. Its arcane and non-universal - some stuff only works with certain XSL processors. I asked the LLM to fix stuff 20 times and eventually it got it. Probably got that stuff off my back another couple years.<p>- Some third party tool we use has a timer feature that has a bug where it sets a cookie everytime you see the timer once per timer (for whatever reason... the timers are set to end a certain time and there is no reason to attach it to a user). The cookies have a life time of one year. We run time limited promotions twice a week so that means two cookies a week for no reason. Eventually our WAF got triggered because it has a rule to block requests when headers are crazy long - which they were because cookies. I asked an LLM to give me a script that clears the cookie when its older than 7 days because I remember the last time i hacked together cookie stuff it also felt very "wtf" in a javascript kinda way and I did not care to relive that pain. This was in place until the third party tool fixed the cookie lifetime for some weeks.<p>- We list products on a marketplace. The marketplace has their own category system. We have our own category system. Frankly theirs kinda suck for our use case because it lumps a lot of stuff together, but we needed to "translate" the categories anyway. So I exported all unique "breadcrumbs" we have and gave that + the categories from the marketplace to an LLM one by one by looping through the list. I then had an apprentice from another dept. that has vastly more product knowledge than me look over that list in a day. Alternative would have been to have said apprentice do that stuff by hand, which is a task I would have personally HATED so I tried to lessen the burden for them.<p>All these examples are free tier in whatever I used.<p>We also use a vector search at work. 300,000 Products with weekly updates of the vector db.<p>We pay 250€ / mo for all of the qdrant instances across all environments and like 5-10 € in openai tokens. And we can easily switch whatever embedding model we use at anytime. We can even selfhost a model.</p>
]]></description><pubDate>Fri, 09 Jan 2026 15:14:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=46554741</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=46554741</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46554741</guid></item><item><title><![CDATA[New comment by p410n3 in "I'm Kenyan. I don't write like ChatGPT, ChatGPT writes like me"]]></title><description><![CDATA[
<p>Fair. I was probably just projecting. I cant even figure out when to use a comma in my native language. So caring about which type of hyphen was used feels like overly sophisticated to me - because <i>I</i> dont care myself.</p>
]]></description><pubDate>Mon, 15 Dec 2025 13:07:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=46274011</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=46274011</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46274011</guid></item><item><title><![CDATA[New comment by p410n3 in "I'm Kenyan. I don't write like ChatGPT, ChatGPT writes like me"]]></title><description><![CDATA[
<p>I always thought the whole argument was about explicitly using em dash and / or en dash. Aka — and –.<p>Because while people OBVIOUSLY use dashes in writing, humans usually fell back on using the (technically incorrect) hyphen aka the "minus symbol" - because thats whats available on the keyboards and basically no one will care.<p>Seems like, in the biggest game of telephone called the internet, this has devolved into "using any form of dash = AI".<p>Great.</p>
]]></description><pubDate>Mon, 15 Dec 2025 12:45:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=46273761</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=46273761</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46273761</guid></item><item><title><![CDATA[New comment by p410n3 in "Google de-indexed Bear Blog and I don't know why"]]></title><description><![CDATA[
<p>Do you have any resources here? The /r/seo subreddit seems vers superficial coming from an web agency background so its hard to find legit cases versus obvious oversights. Often people make a post describing a legit sounding issue on there just to let it shine through that they are essentially doing seo spam.</p>
]]></description><pubDate>Fri, 12 Dec 2025 11:38:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=46243169</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=46243169</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46243169</guid></item><item><title><![CDATA[New comment by p410n3 in "Google de-indexed Bear Blog and I don't know why"]]></title><description><![CDATA[
<p>What "changes in methodology applied by Google in September" are you referring to? There surely is a public announcement that can be shared? Most curious to hear as a shop I built is experiencing massive issues since august / september 2025</p>
]]></description><pubDate>Fri, 12 Dec 2025 11:36:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=46243147</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=46243147</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46243147</guid></item><item><title><![CDATA[New comment by p410n3 in "Google de-indexed Bear Blog and I don't know why"]]></title><description><![CDATA[
<p>I ran into the same thing! My site still isnt indexed and I would REALLY like to not change the URL (its a shop and the url is printed on stuff) - redirects are my last resort.<p>But basically what happened: In august 2025 we finished the first working version of our shop. I wanted to accelerate indexing after some weeks because only ~50 of our pages were indexed and submitted the sitemap and <i>everything</i> got de-indexed within days. I thought for the longest time that its content quality because we sell niche trading cards and the descriptions are all one liners i made in Excel. ("This is $cardname from $set for your collection or deck!"). And because its single trading cards we have 7000+ products that are very similiar. (We did do all product images ourselves I thought google would like this but alas).<p>But later we added binders, whole sets and took a lot of care with their product data. The frontpage also got a massive overhaul - no shot. Not one page in index. We still get traffic from marketplaces and our older non-shop site. The shop itself lives on a subdomain (shop.myoldsite.com). The normal site also has a sitemap but that one was submitted 2022. I later rewrote how my sitemaps were generated and deleted the old ones in search console hoping this would help. It did not. (The old sitemap was generated by the shop system and was very large. Some forums mentioned that its better to create a chunked sitemap so I made a script that creates lists with 1000 products at a time as well as an index for them.)<p>Later observations are:<p>- Both sitemaps i deleted in GSC are still getting crawled and are STILL THERE. You cant see them in the overview but if you have the old links they still appear as normal.<p>- We eventually started submitting product data to google merchant center as well. It works 100% fine and our products are getting found and bought. The clicks still even show up in search console!!!! So I have a shop with 0 indexed pages in GSC that gets clicks every day. WTHeck?<p>So like... I dont even know anymore. Maybe we also have to restart like the person in the blog did and move the shop to a new domain and NEVER give google a sitemap. If I really go that route I will probably delete the cronjob that creates the sitemap in case google finds it by itself. But also like what the heck? I have worked in a web agency for 5 years and created a new webpage about every 2-8 weeks so i roughly launached about 50-70 webpages and shops and i NEVER saw that happen. Is it an ai hallucinating? Is it anti spam gone too far? Is it a straight up bug that they dont see? Who knows. I dont<p>(Good article though and I hope maybe some other people chime in and googlers browsing HN see this stuff).</p>
]]></description><pubDate>Fri, 12 Dec 2025 09:05:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=46242240</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=46242240</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46242240</guid></item><item><title><![CDATA[New comment by p410n3 in "How I use my terminal"]]></title><description><![CDATA[
<p>Lets go one level deeper: What's the reason that the vim disgners keyboards had hjkl as arrow keys? Because it made sense for it to be the home row. I still use arrow keys though</p>
]]></description><pubDate>Tue, 24 Jun 2025 10:53:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=44364764</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=44364764</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44364764</guid></item><item><title><![CDATA[New comment by p410n3 in "Apple Invites"]]></title><description><![CDATA[
<p>So since RCS is now here, Apple needed a new way to force people into buying iPhones by direct social pressure from peers.<p>(In the US)</p>
]]></description><pubDate>Tue, 04 Feb 2025 16:41:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=42934753</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=42934753</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42934753</guid></item><item><title><![CDATA[New comment by p410n3 in "Researchers identify major driver of inflammatory bowel and related diseases"]]></title><description><![CDATA[
<p>As mentioned in another comment my step moms UC is likely stress related. My crohns doesnt seem to be; but sport helps me a ton. Something thats interesting is that even with MC and also PSC there are multiple "forms" of it.<p>My doc says my crohns is inflaming the whole end part of my colon somewhat consistently; my small intestines are fine. Many other patients of hers have inflammations at specific parts that are more severe, and also sometiumes the small intestines are affected.<p>And then my PSC seems to (so far) only affect my small ducts; which doesnt mean it cant get more severe but so far is "less damaging" then "normal" PSC. No one seems to <i>really</i> know if these are the same disease, related or entirely different. Its kinda crazy tbh</p>
]]></description><pubDate>Thu, 06 Jun 2024 16:47:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=40599579</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=40599579</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40599579</guid></item><item><title><![CDATA[New comment by p410n3 in "Researchers identify major driver of inflammatory bowel and related diseases"]]></title><description><![CDATA[
<p>My (non-bio) mom has UC and her one big flare up in life was high school exam time she said (she still has nightmares about that time). Since then only small episodes easily treated with prednisolone, but often easily attributed to stress as well. Like days before an important work event: problems. Team members being ill and she has to cover: problems.<p>I personally have Crohns and PSC as well, and I think less stress helped; but I am on Rinvoq (INN-Upadacitinib) and eat psyllium husks and still have occasional diarrhea, what  helps A TON however is sport. I skateboard (and whenever I find the time I go HARD), and 1-2 days after I am always good, colon wise. When I dont skate for a week and eat slightly fatty i have problems, but when skate on a friday and then order opne of those disguting cheap pizzas from that greek place i am still good (i dont do this often but it happens).<p>Why I have these autoimmun diseases is also an interesting question. My biological parents are both good in that regard, so is my extended family. However I do know my bio-mom smoked while pregnant, and i passively smoked in the household up until I was 12 (and then started smoking at 14, quit with 18)<p>So maybe thats part of it too<p>Its very interetsing all that, also scary</p>
]]></description><pubDate>Thu, 06 Jun 2024 16:41:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=40599506</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=40599506</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40599506</guid></item><item><title><![CDATA[New comment by p410n3 in "EU data shows PHEVs emit 350% more CO2 than tested values"]]></title><description><![CDATA[
<p>That makes sense! I'd still assume thats way less then ideal on fuel usage. Again anecdotal but my gramps is charging his on a regular wall plug. Takes long but gets the job done. And if not you still get to drive anyway, you're never stuck.</p>
]]></description><pubDate>Mon, 15 Apr 2024 11:58:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=40039336</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=40039336</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40039336</guid></item><item><title><![CDATA[New comment by p410n3 in "EU data shows PHEVs emit 350% more CO2 than tested values"]]></title><description><![CDATA[
<p>See my comment, my grandpas neighbors are seemingly doing that</p>
]]></description><pubDate>Mon, 15 Apr 2024 11:51:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=40039284</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=40039284</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40039284</guid></item><item><title><![CDATA[New comment by p410n3 in "EU data shows PHEVs emit 350% more CO2 than tested values"]]></title><description><![CDATA[
<p>Personal anecdotes ahaead:<p>I'm German. My grandpa was an electrical engineer. He is very enthusiastic about his PHEV and talks about it alot. He bought one because not only is he interested, but also PHEV sales got heavily subsidized (i think like 6000€ or smth) and so many people bought one in his area as well. Apparently, a surprising amount of old middle class German people bought PHEVs and literally never charge it. My grandpa told me he onced asked his neighbor for a cable and that thing was brand new.<p>I'm not sure if its ignorance or deliberate though. If you never use the battery the resale value might be higher? It's also literally just an anecdote but it was surprising</p>
]]></description><pubDate>Mon, 15 Apr 2024 11:50:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=40039275</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=40039275</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40039275</guid></item><item><title><![CDATA[New comment by p410n3 in "AWS Icon Quiz"]]></title><description><![CDATA[
<p>I have red green color blindness (deuteranopia) and i have no idea if my answer is right or wrong on until i change my monitor settings to high saturation. (I usually turn that off because it messes a lot with other colors)</p>
]]></description><pubDate>Thu, 31 Aug 2023 19:15:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=37342315</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=37342315</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37342315</guid></item><item><title><![CDATA[New comment by p410n3 in "How to Yubikey"]]></title><description><![CDATA[
<p>That implies people leave it plugged in, which is not advisable. Also ignores the fact that these keys have certain phishing protections. 2fa will fail when you're on a cloned phishing page, so you can't enter your totp code in a fake site. I use mine ALONGSIDE a traditional encrypted pw manager</p>
]]></description><pubDate>Fri, 10 Mar 2023 12:30:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=35093556</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=35093556</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35093556</guid></item><item><title><![CDATA[New comment by p410n3 in "How to own an airline in 3 easy steps and grab the TSA nofly list along the way"]]></title><description><![CDATA[
<p>Can Confirm. I was big into telegram communities at that time and joined when her group was public. I have nothing to prove because I delete all my stuff but the indictment shows screenshots and transcripts from the group. She literally posted selfies on Twitter sometimes.<p>I don't agree with most of her more radical views and find her methods to be too extreme, but she clearly stood behind them and didn't hide</p>
]]></description><pubDate>Fri, 20 Jan 2023 12:33:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=34452225</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=34452225</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34452225</guid></item><item><title><![CDATA[New comment by p410n3 in "Analyzing iOS 16 Lockdown Mode: Browser Features and Performance"]]></title><description><![CDATA[
<p>> make the Lockdown mode browser look to external websites like it isn't in Lockdown mode.<p>This will be instantly defeated by benchmarking the js performance. But disabling JIT is a VERY important step to harden your browser. This is one of these things where you have to actually choose between privacy and security</p>
]]></description><pubDate>Thu, 21 Jul 2022 14:40:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=32179962</link><dc:creator>p410n3</dc:creator><comments>https://news.ycombinator.com/item?id=32179962</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32179962</guid></item></channel></rss>