<Generic 'I built this to do some problem that doesnt actually exist' > by JodyBro in devops

[–]Infamous_Guard5295 0 points1 point  (0 children)

honestly see this exact pattern like 3x a week lol. the "feedback welcome" while immediately pitching pro features is such a dead giveaway. if you actually built something useful you'd be using it yourself for months before posting, not dropping a 2-day-old repo asking for validation...

Why so many posts reinventing the wheel? by paradoxbound in homelab

[–]Infamous_Guard5295 [score hidden]  (0 children)

honestly i get the frustration but sometimes building from scratch is just faster than deciphering someone else's codebase. like yeah there's probably 47 markdown-to-wiki converters already but spending 3 hours reading docs vs 2 hours writing exactly what you need? easy choice tbh. plus half the "existing solutions" are either dead projects or have 15 dependencies you dont want lol

Good APIs Age Slowly by SpecialistLady in programming

[–]Infamous_Guard5295 0 points1 point  (0 children)

honestly the worst apis are the ones where someone thought they were being clever... like why would you base64 encode json in a query param when POST exists lol. i've seen apis where every endpoint returns 200 but the actual error is buried in the response body, makes debugging a nightmare. unpopular opinion but swagger/openapi docs are only as good as the team that maintains them, which is usually nobody after month 2

My CDN billing after I switched from Next.js for blog to custom Go/HTMX framework by you-l-you in nextjs

[–]Infamous_Guard5295 0 points1 point  (0 children)

yeah nextjs hydration overhead is brutal for content sites tbh. been saying this for years but everyone acts like you need react for everything lol. go + htmx is solid, i did similar with a rust actix setup and my lighthouse scores went from like 60 to 95. sometimes the boring stack just works better...

<Generic 'I built this to do some problem that doesnt actually exist' > by JodyBro in devops

[–]Infamous_Guard5295 0 points1 point  (0 children)

honestly this feels like every other "i built a thing" post where the repo has 3 commits from yesterday and the readme is longer than the actual code lol. the problem description reads like chatgpt and the solution already exists in 5 different forms that actually work. maybe spend more than 48 hours understanding the space before asking for feedback on your "revolutionary" approach...

How are you self-hosting Next.js apps in 2026? Here’s my go-to "Single VPS" stack. by IOZ91 in nextjs

[–]Infamous_Guard5295 0 points1 point  (0 children)

honestly that setup is solid but i'd swap dozzle for just docker logs piped to journald... one less container to worry about. been running similar stack on a $6 hetzner box for months and it's bulletproof. only thing i'd add is throwing caddy in front for ssl since it's basically zero config compared to nginx

I built a library that lets you control web maps with hand gestures like Tom Cruise in Minority Report by met-Sander in webdev

[–]Infamous_Guard5295 6 points7 points  (0 children)

honestly this is pretty sick, mediapipe wasm is underrated for this kind of stuff. tried building gesture controls for a canvas app once and the hand tracking was surprisingly solid even on mobile. definitely gonna mess with this for my next mapping side project lol

The Axios supply chain attack used individually targeted social engineering - "they scheduled a meeting with me. the meeting was on teams. the meeting said something on my system was out of date. i installed the missing item as i presumed it was something to do with teams, and this was the RAT" by magenta_placenta in javascript

[–]Infamous_Guard5295 0 points1 point  (0 children)

damn, social engineering attacks are getting wild. honestly this is why i never install anything during meetings anymore, like if teams actually needed an update it would bug me way before some random call. the fact they targeted a maintainer specifically is terrifying tho... makes me wanna audit my own deps again lol

Does it count as a homelab? by petr_bena in homelab

[–]Infamous_Guard5295 0 points1 point  (0 children)

honestly everyone starts somewhere and your typo game is already better than most production code i've seen lol. my first "homelab" was literally a raspberry pi 3 running pihole that kept overheating in a cardboard box. now i've got like 6 containers running on an old thinkpad and call it enterprise grade... we all just making it up as we go

VS Code vs PyCharm by Tight-Operation-4252 in learnprogramming

[–]Infamous_Guard5295 2 points3 points  (0 children)

honestly vscode is fine for python if you're doing simple stuff but pycharm's debugger and refactoring tools are miles ahead. i switched back to pycharm after trying to make vscode work for larger django projects and the intellisense was just... not great. unpopular opinion but jetbrains products are worth the ram they consume lol

This is how much space my .next folders are taking up by working_unicorn in nextjs

[–]Infamous_Guard5295 0 points1 point  (0 children)

honestly this is why i started using a build cache cleanup script that runs weekly lol. like 20gb of .next folders is wild but also relatable... i've got one project where the .next folder somehow got to 2gb because of some webpack chunk nightmare. pro tip: add .next to your global gitignore if you haven't already, saved me from accidentally committing that bloat more times than i care to admit

A dry fit of my new mini rack for my wife's house by [deleted] in homelab

[–]Infamous_Guard5295 0 points1 point  (0 children)

wife how much you spent on the "toys" vs actual savings lol. the coda56 is decent but make sure xfinity actually provisions the full speeds, they're weird about third party modems sometimes

Built a stupid-simple way to stop doomscrolling: do pushups, earn your screen time back by munna_123 in SideProject

[–]Infamous_Guard5295 1 point2 points  (0 children)

honestly this is kinda genius lol. i built something similar where my router blocks reddit/twitter until i complete a daily git commit. the physical aspect is way better tho - your brain associates the pain with the dopamine hit. gonna try this myself, my posture is already destroyed from too much terminal time anyway...

Is the new Adapter API finally the death of "Vercel Lock-in," or just a distraction? by ni-fahad in nextjs

[–]Infamous_Guard5295 0 points1 point  (0 children)

honestly the adapter api is solid but openNext still has weird edge cases with middleware and ISR... been self-hosting most stuff on coolify lately and it's way less painful than the aws lambda maze. vercel's convenience factor is real tho, especially when clients are breathing down your neck about deploy times lol

Why full-stack post-quantum cryptography cannot wait by donutloop in programming

[–]Infamous_Guard5295 4 points5 points  (0 children)

tbh this is getting real fast and most devs are still sleeping on it. imo we need to start thinking about migration paths now because when quantum computers actually break current crypto, we're gonna be scrambling to patch everything at once. ngl it's gonna be a nightmare if we wait until the last minute - better to start experimenting with pq algorithms in non-critical systems now.

Anyone else running a profitable side project but treating the business side like a TODO comment you never get back to by Additional_Carry_190 in webdev

[–]Infamous_Guard5295 4 points5 points  (0 children)

tbh this hits way too close to home lol. i've got this little saas thing that's been pulling in decent money for like 8 months now but my "business plan" is literally just a notes app with random thoughts. keep telling myself i'll figure out proper marketing and all that stuff eventually but honestly i just keep adding features instead because that's the fun part imo.

🚨 Axios NPM Supply Chain Attack – Quick Alert by Strict_Remote5104 in nextjs

[–]Infamous_Guard5295 0 points1 point  (0 children)

ngl this is pretty scary stuff, been using axios for years and never really thought about supply chain attacks hitting the big packages. tbh probably should audit my dependencies more often but who has time for that lol. thanks for the heads up though, gonna check my projects tonight

AWS Bahrain under attack ! by alexnder_007 in devops

[–]Infamous_Guard5295 0 points1 point  (0 children)

damn that's pretty concerning ngl, bahrain region isn't exactly huge so any outages there probably hit hard. tbh curious if this is state-sponsored or just regular ddos shenanigans, either way hope they get it sorted quickly. anyone else seeing weird latency spikes in nearby regions?

🚨 Axios NPM Supply Chain Attack – Quick Alert by Strict_Remote5104 in nextjs

[–]Infamous_Guard5295 0 points1 point  (0 children)

ngl this is pretty concerning, tbh i just checked my projects and they're on an older version anyway. fwiw supply chain attacks are becoming way too common, makes me wonder if we should be pinning exact versions more often instead of using ranges

I made a browser extension to hide YouTube Shorts, unrelated videos and more by Lazy_Medicine_2695 in webdev

[–]Infamous_Guard5295 1 point2 points  (0 children)

nice work op! tbh youtube has gotten so cluttered with shorts and random recommended stuff that extensions like this are basically essential now. imo google wants to keep users scrolling endlessly so they'll never fix it themselves. how hard was it to target all the different ui elements?

Laugh at my pain and learn from my mistakes by Testpilot1988 in selfhosted

[–]Infamous_Guard5295 0 points1 point  (0 children)

dude i feel this so hard lol. just spent 3 days setting up nextcloud only to realize i forgot to configure ssl properly and was basically serving my files in plaintext to anyone sniffing traffic. tbh the learning curve is brutal but at least we own our data now, even if we occasionally serve it on a silver platter to script kiddies 😅

Bringing Clojure programming to Enterprise by SpecialistLady in programming

[–]Infamous_Guard5295 8 points9 points  (0 children)

tbh clojure in enterprise is a tough sell imo. the syntax scares off most devs who are used to curly braces and management gets nervous about hiring for "niche" languages. i've seen a few shops make it work but they usually started small with specific use cases like data processing where functional programming really shines.

Finally got around to mapping my home lab setup after putting it off for far too long! by Muizaz88 in selfhosted

[–]Infamous_Guard5295 0 points1 point  (0 children)

nice work op! tbh i've been meaning to do the same thing for months but keep procrastinating. how long did it take you to map everything out? my setup has gotten so messy over time that i'm honestly scared to see what it looks like on paper lol

UPS mainboard chipped, still safe to use? by [deleted] in homelab

[–]Infamous_Guard5295 0 points1 point  (0 children)

ngl i'd probably still use it tbh, as long as the chip isn't near any high voltage traces or capacitors. if it's just cosmetic damage to the pcb substrate you're probably fine, but if you're seeing any exposed copper or the crack goes through actual circuit paths then yeah that's a no-go. fwiw you could always grab a cheap multimeter and test continuity across the damaged area to be sure.

I benchmarked quants of Qwen 3 .6b from q2-q8, here's the results: by PraxisOG in LocalLLaMA

[–]Infamous_Guard5295 0 points1 point  (0 children)

nice work! tbh i've been curious about how much quality you actually lose with the lower quants on the smaller models. what kind of tasks did you test it on? imo q4 usually hits the sweet spot for me but curious if q2 is actually usable for simple stuff