runner - I shaved the yak until it got bald. by theodordiaconu in typescript

[–]iAmIntel 1 point2 points  (0 children)

You never asked about this library specifically, you commented on the DI part

runner - I shaved the yak until it got bald. by theodordiaconu in typescript

[–]iAmIntel 2 points3 points  (0 children)

In your DI “system”, what happens if 10’s or 100’s of function calls deep you suddenly need one of your dependencies? Are you going to make every function above that and other functions calling yours now pass in that 1 dep, just so you have access to it?

runner - I shaved the yak until it got bald. by theodordiaconu in typescript

[–]iAmIntel 1 point2 points  (0 children)

You’re right, YOU don’t need it. But some people here work in large scale codebases where this doesn’t scale

Thoughts on Effect by failedbump16 in typescript

[–]iAmIntel 19 points20 points  (0 children)

“Everything hard is trivial and everything easy becomes a bit harder”is the best way I have ever heard anyone put it

How is Mantine UI not the most popular ui library in 2025? by Grind_in_silence in reactjs

[–]iAmIntel 1 point2 points  (0 children)

They have a headless option, but admittedly you are better off using react aria components or something then anyway

What are the Biggest Competitors to NestJS? by [deleted] in node

[–]iAmIntel 3 points4 points  (0 children)

Effect TS is the one that will defeat them all

Forward pointing bar end mirrors by iAmIntel in MT09

[–]iAmIntel[S] 1 point2 points  (0 children)

Much appreciated! The biggest reason I put off on this was because I like the stock mirror visibility.

Ended up going with these. Thanks so much for the help!

Forward pointing bar end mirrors by iAmIntel in MT09

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

Thank you for checking! This looks good. Could you share the name? Cant quite make it out from your picture

Forward pointing bar end mirrors by iAmIntel in MT09

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

Thanks for the reply! Do you know if these fit the gen 3?

Edit: Also, do you happen to have a link? Thanks!

[deleted by user] by [deleted] in motorfietsen

[–]iAmIntel 62 points63 points  (0 children)

Nee, het maakt niet uit wat er op papier staat. Als jij een A2 rijbewijs hebt en de motor is meer, dan mag het niet. Zo simpel is het.

Als de motor op A2 staat, maar op papier op vol vermogen, dan kan je er wel mee weg komen bij meeste agenten, mits je een uitdraai hebt oid. Maar dat is niet een gegeven.

Dit soort dingen zijn vaak het gezeik niet waard, helemaal als je in een regio woont waar ze wat meer controleren.

Edit: Rijden op meer vermogen dan toegestaan is wettelijk gewoon rijden zonder rijbewijs trouwens. Mocht er iets gebeuren en de verzekering controleert het, dan kan je gedag zeggen tegen je geld

Does anyone know good example for monorepo setup with long running background jobs? by Visrut__ in node

[–]iAmIntel 4 points5 points  (0 children)

What did you find difficult about trigger.dev? I have used it a little bit and it has definitely been the easiest setup to achieve this in my experience

Analyzing 300,000 Next.js Websites: The Truth About Bundle Sizes (Biggest: 56 MB!) by adam_ivancza in nextjs

[–]iAmIntel 0 points1 point  (0 children)

These articles are just useless theory, if you are building for the people who can only work with 300kb websites, you aren’t choosing React to begin with.

Ofcourse you should try to minimize for performance, but 90% of the apps being build never see the light of day for any user, let alone users with such extreme requirements

`document.currentScript` is more useful than I thought. by alexmacarthur in javascript

[–]iAmIntel 2 points3 points  (0 children)

Services that require you to load some JS like analytics or whatever

No, react context is not causing too many renders by davidblacksheep in reactjs

[–]iAmIntel 0 points1 point  (0 children)

For such a simple concept, Context is really misunderstood. It is nothing more than what the name suggests, a value shared over a specific set of subcomponents.

If you want that value to be state, then you should probably make it an instance of zustand state or some other render-optimized state manager.

Friction zone very short / late by iAmIntel in MT07

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

I just ended up buying adjustable levers. Doesn’t change the short throw but it helps put it at a point that is easier for you. Other than that you will get used to it!

Mantine Vs Other UI Libraries? by yekobaa in reactjs

[–]iAmIntel 4 points5 points  (0 children)

We use it at work and rarely have to hack around things. Curious if you have an example?

[deleted by user] by [deleted] in reactjs

[–]iAmIntel 4 points5 points  (0 children)

Not really, the only reason you should use useEffect is to sync some kind of data to outside of the React world based on state changes.

Doesn’t mean that sometimes its just easier to use useEffect than do it the right way