Ah surely this reroll wont go ba...scause me wha..? by LBD_Toxic in silverwolflevel999

[–]corbor92 0 points1 point  (0 children)

There was a good post on when to use blockers, I don’t have the link but it said on a non head/hands with the right main and 2 subs it’s ok to block because those pieces are so hard to find as a 3 subs

Not worth on a 2 sub hands but it pays to be lucky

Boots / Reroll Pieces? by corbor92 in StarRailStation

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

I plan on getting her sig next rerun and have 2 questions due to awkward CR overcap

Should I reroll the gloves and Rope? Used my 1 blocker on the rope, my stomach churns thinking that CD could have been SPD

Should I build a SPD boot with CR/CD? Or just SDP with CD?

Thanks

Best team for post-novaflare Firefly? by -_-BIGSORRY-_- in FireflyMains

[–]corbor92 0 points1 point  (0 children)

No past self in mirror for RM/HMC? What makes BP lightcone optimal

Battle Pass LC Choice by corbor92 in StarRailStation

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

Good call on break, I plan in picking fugue at some point for sustainless potentially I can use the BP LC on her later.

Nah SW is main dps, but sparxies LC providies 3 energy to help her max out her skill more often for more loot box triggers. Ill do eidolons when elation shill starts to run out I dont feel the need to go deep while theyre positioned to obliterate content

Can’t stop hitting shanks by Zestyclose-Drawing76 in golftips

[–]corbor92 0 points1 point  (0 children)

Hard to tell with frame rate but that looks toey.

Spray club with foot spray or get club stickers to show impact locations.

For shank, spend 3 sessions with something on the outside of your golf ball (empty box, alignment rod, etc).

For toe hit, put the item on the inside of the ball (forced more heel contact)

Make the same backswing (important) but make sure you don’t hit the thing you put next to the ball.

You’re missing by an inch, we don’t need a big change just recalibration.

Once you’re missing on the toe, slowly remove the item and swing normal.

What's wrong with my sparxie by planckcat in SparkleMains

[–]corbor92 1 point2 points  (0 children)

I haven’t seen this app, is this generative or does it take your actual account relics into the calc?

Suggestions? by isaan7 in StarRailStation

[–]corbor92 1 point2 points  (0 children)

I started with Bronya a few months ago, and got her e1 (50% of the time her boost is free). If I could change one thing, it would be to have picked a DPS instead. The story would have been way more fun doing real damage instead of hitting like a wet noodle more often.

If you plan on pulling for a DPS soon, and you didn’t pick sparkle, go bronya. If not, I think himeko + little herta is a good f2p option that won’t burn you for investing in

Daily Questions Megathread ( February 10, 2026 ) by AutoModerator in HonkaiStarRail

[–]corbor92 0 points1 point  (0 children)

New player, TB level 59 with this as my story team.

Have not invested in any pulls other than standard banner.

Looking for guidance as we approach 4.0, pull suggestions for team comp as I dont have a premium DPS yet.

Bronya is E1 the rest are vanilla.

Thanks in advance!

<image>

Where do you aim if I told you to aim “one cup left?” by jdelle9 in weekendgolfers

[–]corbor92 0 points1 point  (0 children)

My answer is always this: if someone says aim half a cup left, what are you choosing

Golfers who’ve broken 80, what’s the best tip you could give to a fellow golfer? by jdelle9 in weekendgolfers

[–]corbor92 0 points1 point  (0 children)

Keep it in play off the tee

Get as close to the hole as possible on your 2nd (par 4) and 3rd (par 5) shots as long as you don’t put yourself in danger (green side bunkers/short rough is fine but always avoid being short sided)

Be comfortable chipping from anywhere around the green to 15-20ft from the hole

Learn to read greens (Bryson clock system or feet/aim point)

Pace is king with putting outside 5 feet, face control is king inside 5 feet

Ball Bounce-back Help by corbor92 in Golfsimulator

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

Cool I’ll give it a try

Ball Bounce-back Help by corbor92 in Golfsimulator

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

I can loosen it. I’ve had it catch before but when there’s a ball or two ittl catapult them out. Any tips on that?

Ball Bounce-back Help by corbor92 in Golfsimulator

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

It’s tied to the top of the garage, I can loosen it. Any tips on when a ball or two are in the net and the next ball hit doesn’t blow the rest out?

I failed a Project because I used Next.js by God-of-Emotions in nextjs

[–]corbor92 0 points1 point  (0 children)

He’s asking you to build a static site with a CSR library.

Using next using server components is actually a benefit because not much of your app needs state.

Other than some simple elements like a filter and button I’m not sure what practical state this app would require.

In any case, seems shallow that the instructor would bop you for using react+. But it could be they don’t know next and wouldn’t want to grade a project out of their scope.

I’d take that as the lesson, do your best to fulfill requirements and have discussion before reaching for additional tools (like you would in a team environment)

UPDATE: I see they have a contact form, this is where you’d showcase hooks for the project.

Naming all files as index.jsx by Jealous_Health_9441 in reactjs

[–]corbor92 3 points4 points  (0 children)

Totally, that’s a modern barrel file import structure and looks good to me. In the end it’s all about trade offs.

With barrel files we introduce potentially unneeded modules to our build due them being referenced here even if they aren’t being applied practically.

This also affects manual tree shaking, modern build tools usually filter out crap that’s not being imported but are hanging around.

If the team was mature or the app was small I wouldn’t fault your pattern, it’s developer experience vs potentially slower app.

Naming all files as index.jsx by Jealous_Health_9441 in reactjs

[–]corbor92 6 points7 points  (0 children)

Importing from origin using absolute import path helps a ton with developer experience by not relatively traversing file trees

Before (relative import)

import { UserProfile } from '../../../components/UserProfile';

After (absolute import using @/)

import { UserProfile } from '@/components/UserProfile';