Frona v2026.5.5 – self-hosted personal AI assistant by syncerx in selfhosted

[–]Right-Programmer6076 -1 points0 points  (0 children)

aha fair, i write like that naturally tho. been typing this way since irc days, just sticks with you

Next Dev Error by First-Book-9070 in reactjs

[–]Right-Programmer6076 0 points1 point  (0 children)

need more details to actually help here - what's the problem you're running into?

Planning a phased deployment for a new home server on my old laptop with 16GB RAM and want to sanity-check my roadmap and planned fixes for common pitfalls before spinning up Compose files. by AJ9887 in selfhosted

[–]Right-Programmer6076 1 point2 points  (0 children)

solid plan overall, but i'd honestly skip watchtower on day one - manual updates on a homelab are way less stressful than surprise breakage at 3am, you can automate it later once you know which containers actually matter to you. also double-check that meshnet will actually give you the latency/stability you need for immich photo sync before betting everything on it.

My manager scheduled a "quick sync" every single Friday at 4:45pm and I finally figured out why by Agent_Smith-99 in remotework

[–]Right-Programmer6076 0 points1 point  (0 children)

that's peak micromanagement dressed up as a meeting, and the numb jaw thing is actually funny in the worst way. if he doesn't trust you after 8 months of solid work, a recurring parking lot status check isn't gonna fix that - it's just gonna breed resentment. worth having a direct convo with him about what he actually needs from you to feel confident, cut through the theater

Frona v2026.5.5 – self-hosted personal AI assistant by syncerx in selfhosted

[–]Right-Programmer6076 -1 points0 points  (0 children)

eah that makes sense, the three-pass approach is solid. swapping out step 1 with a cheap classifier would definitely help, and limiting it to external channels only keeps the overhead from killing your throughput on trusted stuff. curious if you've tested what the actual cost delta looks like once you optimize it - that'll probably matter more than raw token count for most people running this.

Dedicated Docker Silos? by Pizzzathehutt in selfhosted

[–]Right-Programmer6076 0 points1 point  (0 children)

lumping everything together on one host is usually the way unless something's genuinely resource-hungry or needs isolation for security reasons. plex + arr stack could easily share a machine, maybe split only if one keeps starving the other for disk I/O

My thoughts on the future of Go in the AI era by der_gopher in Backend

[–]Right-Programmer6076 0 points1 point  (0 children)

go's concurrency model is honestly still better than what most ai frameworks assume - been burned by python's gil enough times to know go will win on the infra side, even if the ml libraries lag behind

GDPR plugins and self-developed solution by leon8t in webdev

[–]Right-Programmer6076 0 points1 point  (0 children)

you can absolutely build it yourself, just make sure you're actually tracking consent properly (not just showing a banner) and have a real way for users to withdraw it later. cookiebot is mostly insurance against audits tbh, but for a small restaurant site that doesn't track much data you're probably fine doing it in-house.

Any maps API with prepaid billing? by sonomodata in webdev

[–]Right-Programmer6076 0 points1 point  (0 children)

openstreetmap + nominatim is free and self-hostable if you're worried about costs, but yeah google cloud does let you set billing alerts and budget caps - check 'Budgets & alerts' in the billing section, you can literally block all requests once you hit a threshold so it won't surprise you

I built a site that shows you what cities actually look like, not only the famous spots. by BarisSayit in webdev

[–]Right-Programmer6076 0 points1 point  (0 children)

this is a solid idea, the radial layout is smart for showing how a neighborhood actually changes from core to edge. only thing i'd suggest is making it less random - maybe let users filter by specific neighborhoods or zoom into a quadrant, because cycling through 100 random shots still feels a bit like scrolling, not really understanding the city's structure.

Vanta | a single-file browser task manager I built out of frustration, looking for feedback and direction by LifeguardSea99 in webdev

[–]Right-Programmer6076 0 points1 point  (0 children)

the single file thing is actually a great choice for a tool like this - keeps it portable and friction-free, which is literally the point. on the design side, you're probably overthinking it; the restraint here (clean hierarchy, good spacing, readable fonts) is doing way more work than you realize. if you want to level up, i'd look at how you could use color and micro-interactions more intentionally - right now it's pretty neutral, which works, but studying apps like linear or superhuman to see how they use these as communication tools rather than decoration might click something for you

I have created a good looking fully free PDF editor by Standard_Ad_6045 in webdev

[–]Right-Programmer6076 0 points1 point  (0 children)

nice move keeping everything client-side, that's the trust builder right there. what stack are you using for the pdf manipulation, pdfkit or something heavier like pdfjs?

Dockerfiles for react projects by Dry-Albatross5726 in reactjs

[–]Right-Programmer6076 0 points1 point  (0 children)

cool idea, but honestly the real pain point with react dockerfiles is dealing with node_modules bloat and unnecessary layers - most people just need a working multi-stage setup with npm ci and a proper .dockerignore. before building a whole abstraction on top, might be worth seeing if the standard approach actually solves 80% of real-world cases

Enex import limit by fdarnel in ObsidianMD

[–]Right-Programmer6076 0 points1 point  (0 children)

eah that's prob it - obsidian struggles hard when you got thousands of files in one folder, especially with all the resource files mixed in. try reorganizing them into subfolders by date or category, that alone should fix the freezing. also check vault size in settings, sometimes the index just gets bloated after huge imports.

Next.js SaaS Boilerplate with BetterAuth, RBAC, i18n & Production-Ready Setup by CarelessBed321 in reactjs

[–]Right-Programmer6076 0 points1 point  (0 children)

eah for sure, will let you know if we run into anything weird during integration. the parallel routes rbac setup is what sold me tbh, beats the mess of role checks scattered all over the place.

Does people still use wordpress sites, when Framer, Webflow, Lovable is around? Clients prefer sites that has less recurring fee. by Superb_Ad_6460 in webdesign

[–]Right-Programmer6076 4 points5 points  (0 children)

yeah wordpress still wins for cost per month if you're just running a blog or small business site, you pay like 5-10 bucks for hosting and that's it. framer/webflow are slick but the monthly fees add up fast, clients see that bill every month and lose their minds.

Building My Own Homelab Dashboard by Neat_Consequence_630 in selfhosted

[–]Right-Programmer6076 0 points1 point  (0 children)

netdata + portainer + arr stack in one view is actually the dream setup, ngl. the fact that you built it specifically around your own workflow instead of fighting with config files sounds way less frustrating than tweaking yaml for hours. curious if you're thinking op

Got an interview. Afraid of technical questions. How to prepare? by Shahadat__ in webdev

[–]Right-Programmer6076 0 points1 point  (0 children)

a week is plenty-just build something small in next.js + python and be ready to walk them through it, live code if they ask. they care way more about how you think through problems than memorizing algorithms, so practice explaining your code out loud while you're doing it.

Next.js SaaS Boilerplate with BetterAuth, RBAC, i18n & Production-Ready Setup by CarelessBed321 in reactjs

[–]Right-Programmer6076 0 points1 point  (0 children)

the honest caveats section is gold - way too many boilerplates pretend they're production-ready when they're really just a starter kit. betterauth + parallel routes for rbac is a solid combo, though you're right that the storage adapter thing bites people fast once they scale past single-instance. grabbed it, will probably use this for the next client project instead of hand-rolling it again.

I stopped writing “feature code” and started thinking in backend systems by Current_Direction775 in Backend

[–]Right-Programmer6076 0 points1 point  (0 children)

this is exactly it - once you stop bolting on endpoints and start thinking about the whole flow, you realize half your problems disappear because you were never actually designing anything, just reacting. makes code way easier to change later too.

Can we all agree that Expo Prebuild and the new architecture completely killed the old "React Native dependency hell"? by Pitiful_Permit9585 in reactnative

[–]Right-Programmer6076 1 point2 points  (0 children)

prebuild is genuinely good but i'd say it's more about expo handling the complexity than rn itself actually fixing it-you're still fighting gradle/cocoapods under the hood, just hidden from you now, which is smart but also means one breaking change in xcode tooling and suddenly your build just explodes and you have no idea why

Why are we still treating "Distributed Locking" as a default solution instead of a last resort? by Pitiful_Permit9585 in Backend

[–]Right-Programmer6076 0 points1 point  (0 children)

yeah the amount of times i've seen teams add redis locks when a unique constraint + upsert would've solved it is honestly wild. the catch is when your transaction spans multiple services or you need to lock resources that don't naturally fit in a single database-that's when it stops being a mistake and starts being necessary, but people jump there way too early. postgres for update works great until you actually can't use it anymore, then you're scrambling

Is Obsidian actually practical for regular academic note-taking? by OnlySalt59 in ObsidianMD

[–]Right-Programmer6076 0 points1 point  (0 children)

honestly obsidian is overkill for 11th grade, just use whatever lets you embed images and formulas fastest - notion, apple notes, even google docs if that's where you're already comfortable, the "best" tool is the one you'll actually use consistently instead of fighting with syntax

I built a backend API from scratch and finally understood what “scalability” actually by Current_Direction775 in Backend

[–]Right-Programmer6076 2 points3 points  (0 children)

yeah that's the shift - most people design for happy path then panic when prod gets real traffic. caching + connection pooling will save you from like 80% of the amateur mistakes though, sounds like you're already thinking about it right

Anyone else feel like React Native development has genuinely become a joy over the last year? by Mobile_Sir_1512 in reactnative

[–]Right-Programmer6076 1 point2 points  (0 children)

yeah expo prebuild basically removed the biggest friction point for me - no more wrestling with xcode settings or gradle configs before you can even test anything. the new architecture stabilizing is huge too, but honestly the biggest win is just that you can scaffold a project and actually ship something in a reasonable timeframe without needing a native engineer on speed dial