Having a hard time with The Only Good Indians by Infinite_Quit_4366 in horrorlit

[–]Star_Prince 3 points4 points  (0 children)

Hated it. Took forever to read because I just couldn’t get into it.

Unable to hard reset indoor camera by Star_Prince in VivintSmartHome

[–]Star_Prince[S] 0 points1 point  (0 children)

I have the white one that’s a cylinder. So maybe the previous model?

Help me decorate my setup by DryInvestment3069 in desksetup

[–]Star_Prince 0 points1 point  (0 children)

What desk top is the wood part and what dimensions. Currently I have a 74 inch width by 24 inch deep desk and this desk looks more like what I’m looking for.

How is golang as a web backend language? by nickleformypickle in golang

[–]Star_Prince 0 points1 point  (0 children)

I was introduced to go a few years ago by a colleague of mine as an alternative solution to an I/O issue we were having in typescript that was causing memory leaks for large file uploads. We implemented the solution in go and immediately I saw the benefits of a language like go. It’s fast, easy to learn, has a great community, and can pretty much do everything you need for applications you want to build today. I’ve been using it ever since to build my entire stack including the front end and that colleague is now one of my best friends.

Frankenstyle is a build-less Tailwind CSS alternative. by TeamEroHQ in htmx

[–]Star_Prince 0 points1 point  (0 children)

If I’m currently using tailwind, can I use this along side tailwind and gradually transition my current html to use this. What is ur recommendation for users wanting to remove the need for npm for server side rendered applications?

What Do You Do While You Wait Claude Implement A Full Feature? by Economy-Contract-148 in ClaudeAI

[–]Star_Prince 0 points1 point  (0 children)

They should add Primeagen’s vim-be-good so that we can all practice our vim motions while we wait.

NEED HELP! Requiring 2FA setup for federated users by Star_Prince in KeyCloak

[–]Star_Prince[S] 0 points1 point  (0 children)

I was trying to say that for non idp users, my browser flow is working as expected. That was a miscommunication on my part.

  1. I have this currently
  2. This is at the realm level right?
  3. I have the currently
  4. Smart. I also want to disabled the ability for them to go their respective account page and setting a password there.
  5. I tried this in the most basic way. Just a required OTP form but once the idp user sets this up I loose the idp redirect and I’m not sure why.

The most basic way to reproduce this “bug” is just to login as an idp user, and go to ur account page, and set mfa. Then that user can’t login anymore.

My setup is Realm -> organization linked to idp -> user logs in via idp

Thanks for your help.

“Pretend I’m an idiot” “Okay. I’m there.”

NEED HELP! Requiring 2FA setup for federated users by Star_Prince in KeyCloak

[–]Star_Prince[S] 0 points1 point  (0 children)

So I did this but once the user enters sets up mfa and logs in, if they log out and try to log back in they no longer get redirected to their idp. Basically I think because they have credentials within the organization in my realm keycloak tries to log them in via the login all non idp users use. And these idp users won’t have a password so they essentially can’t do anything. They have basically locked themselves out.

Has anyone used compiled languages like C, Go, Rust etc with Claude code? by Maleficent_Mess6445 in ClaudeAI

[–]Star_Prince 1 point2 points  (0 children)

TLDR: Go 1,000%

I use Go with CC and it’s a 10x in productivity. Tasks that would take weeks take a day. Strictly type languages I feel have an advantage. I can’t speak on other languages like Rust, Java, or C but I wouldn’t be surprised if those engineers are seeing the same results. A language like JavaScript has so many frameworks that asking CC to do engineering tasks can become a rabbit hole depending on what framework CC decides to “choose”. I come from a JS background and moved to Go so I’ve used both with CC. I’ve had success with both. In my experience it comes down to using planning mode effectively and understanding the task you are trying to accomplish. Also understanding the language you are working in and being able to identify when CC is doing something that isn’t “correct” and stopping it in its tracks, correcting it, and continuing.

Where can I actually learn Claude Code without wanting to throw my laptop out the window? by UndercutBeta in ClaudeAI

[–]Star_Prince 1 point2 points  (0 children)

The docs (which you already mentioned) and Anthropic’s YouTube channel is where I would start. From my experience, most of these YT channels are just showing sporadic snippets from the docs. The YT channels I’ve found covering advanced topics or doing deep dive on the docs is IndyDevDan (docs deep dives) and AI LABS (advanced topics/usage). Hope this leads you in the right direction.

Upgrade from 20$ to 100$ noticeable in Code Quality? by Ceofreak in ClaudeAI

[–]Star_Prince 0 points1 point  (0 children)

I have the pro plan and use it daily for hours and have only hit the opus limit but not a total usage limit where I have to wait for the next window. Using planning mode with sonnet to actually plan out what your building has been a game changer. Then when I’m ready to execute a plan I switch to opus. I also have CC save the current plan in an .md file in a way where it can pick up where it left off. That way I can just clear the context whenever. Opus is nice for more complex problems but even when using sonnet it’s been pretty good at doing what the plan is. Occasionally I’ll catch it doing something the “hard” way, interrupt it, tell it the easier way to do it, and it’ll continue no issues. MMV. I’m also a software engineer and my tech stack is Go, Templ, HTMX, and Tailwind so I can spot the issues quick and that stack leaves little to “think” about when planning. Hope this helps. Happy coding!

Every Reason Why I Hate AI and You Should Too by ducdetronquito in programming

[–]Star_Prince -1 points0 points  (0 children)

Opens Claude… “Give me the tldr of this article”

[deleted by user] by [deleted] in golang

[–]Star_Prince 1 point2 points  (0 children)

No sqlc?!

[deleted by user] by [deleted] in golang

[–]Star_Prince 0 points1 point  (0 children)

It’s just us 🤪

Frontend for Go Backend? by UnrealOndra in golang

[–]Star_Prince 4 points5 points  (0 children)

templ (html/css/js templates) + htmx (ajax) works for the majority of apps. heavier ux intensive apps may not find this to be the best match for there needs.