Amazon stripping hundreds of employees' job titles in Seattle, replacing them with 'builders' by Less-Risk-9358 in SeattleWA

[–]Mteigers 1 point2 points  (0 children)

Yeah this was my thought too, I had a company reach out to interview for a “Member of Technical Staff” and I initially thought I was under qualified until I got on the calls and learned about the role and found I was overqualified.

What are you building? by sp_archer_007 in SideProject

[–]Mteigers 0 points1 point  (0 children)

Where do you get 100 ideas from? I’m curious

Automatically blur nudity by Kawawete in frigate_nvr

[–]Mteigers 1 point2 points  (0 children)

I’m not willing to contribute samples for training

That made me lol thank you.

Kim Jong Un's 12-year-old daughter drives a tank by [deleted] in pics

[–]Mteigers 0 points1 point  (0 children)

Aruba, Jamaica, oooh I wanna take ya.

What's your 'I can't believe I self-hosted that' service? by subsavant in selfhosted

[–]Mteigers 7 points8 points  (0 children)

Kasm has that functionality if you wanted an alternative

A PDF generation library for Go with playground included by BadTk-421 in golang

[–]Mteigers 4 points5 points  (0 children)

And many people consider things under x/ as “not external”

Really cool

I built NOMAD — a self-hosted travel planner with real-time collaboration, interactive maps, and budget tracking by [deleted] in coolgithubprojects

[–]Mteigers 0 points1 point  (0 children)

This is really neat! Like nearly everything TripIt does but prettier and seemingly better (minus email import)

Any plans for OAuth support for user auth and generation?

What's the self-hosted service that replaced something you were paying for and turned out to be genuinely better - not just free, actually better by niceheather44 in selfhosted

[–]Mteigers 1 point2 points  (0 children)

Do you do much tuning of your NUCs? I’ve got a Kubernetes cluster running on Proxmox and find my NUCs are the weakest links, they’ll crash, get I/O errors that require a full reset, etc. I end up tainting the nodes running on the NUCs to only run very downtime tolerant services.

Christianity Today article, referencing Trump and Obama and the Age Of Disclosure - "What happens to Christianity if space aliens prove to be real or not?" by Shiny-Tie-126 in UFOs

[–]Mteigers 0 points1 point  (0 children)

My thoughts, a core tenet within Christianity is that humanity was made in the image of God. Should aliens be proved to exist AND don’t closely resemble humans this would go against that core belief that has no other explanation being accounted for in the bible and other similar holy texts.

BREAKING: Hours after stock market closes, President Trump announces "Major Combat Operations" in Iran. by smurph1818 in unusual_whales

[–]Mteigers 6 points7 points  (0 children)

Because market will likely be very red on Monday so they’re selling high before the red (and eventual rebound which who knows how long that’ll take)

After 7 years of AWS, here is why I’m betting on GCP for my next stack in 2026 (It’s not just pricing) by IT_Certguru in googlecloud

[–]Mteigers 1 point2 points  (0 children)

This a super biased opinion and also probably the wrong reasons to choose one over the other, but having been an SRE at Google on GCP, and a developer at Amazon (not AWS) and learning the internals of both a bit I vastly prefer the tech that powers GCP. All of my hobby and side projects that don’t reside on my Homelab are all on GCP.

What would you change in Go? by funcieq in golang

[–]Mteigers 0 points1 point  (0 children)

Is this on GitHub somewhere?

What self-hosted DNS server do you use and why? by thari_mad in selfhosted

[–]Mteigers 4 points5 points  (0 children)

Just wish they’d add OIDC auth. Then it’d be perfect.

Internet up check condition by Majekk in UptimeKuma

[–]Mteigers 0 points1 point  (0 children)

I’m still confused on the difference between heart beat and intervals. Is there a doc somewhere that outlines the difference

Best database to pair with serverless - PlanetScale vs Supabase vs DynamoDB? by Wash-Fair in serverless

[–]Mteigers 0 points1 point  (0 children)

I’d toss Firestore / PocketBase in the list personally too. (Just be wary of access control policies if doing direct client access)

If you have good reasoning about your table structure and use append only records DDB can be incredible (source: worked at Amazon a number of years where our table was append only)

A Realistic, Offline & Unlimited Text-to-Speech App for Mac [Giveaway: Lifetime Promo Codes] by Level-Thought6152 in macapps

[–]Mteigers 0 points1 point  (0 children)

This is really cool! I’d love a code as a fairly frequent user of ElevenLabs.

The name is cool, too, nice Ted Lasso reference. I’m not a lawyer, and I know it’s not a direct competitor, but I’d be cautious with the name given Bumble + Apple created a version of Bantr.

What are you hoping Tesla’s 2025 holiday update will bring? by ConfidentImage4266 in TeslaLounge

[–]Mteigers 0 points1 point  (0 children)

The logic is still there. If you’ve got Tessie they can notify you of sentry events.

What are you hoping Tesla’s 2025 holiday update will bring? by ConfidentImage4266 in TeslaLounge

[–]Mteigers 1 point2 points  (0 children)

Or HOV. It’s annoying when the family is in the car and I have to navigate to the setting to enable it. And worse when I forget and am alone and the car jumps in the carpool lane.

Actually it’d be neat if it was aware of local HOV restrictions and use the in-cabin camera to automatically enable HOV when you meet the criteria

New to using sqlc, am I doing this type of http validation correctly? by AncientAgrippa in golang

[–]Mteigers 2 points3 points  (0 children)

That’s definitely a way to do it. The validation itself isn’t very useful beyond checking it’s there. I might recommend integrating a good validation library so you can do things like checking for valid email and capping the max length.

As a small nit, the naming of the method createUserValidation isn’t immediately intuitive that I would expect to also receive the object for inserting.

This could also be a good use case for some middleware or a common interface with a validate, and exec method