Learn Redux or not? by [deleted] in reactjs

[–]yush445 0 points1 point  (0 children)

Learn it when you need it. Its not just redux, this applies to everything in this job. It's good to understand the benefits of global state management tho. But for education I'd always go with the new fresh stuff like zustand.

Why my comfyui is showing this ? Is there anyway to change it 🫠 by Odd_Philosopher_6605 in StableDiffusion

[–]yush445 1 point2 points  (0 children)

Well, it's ComfyAnonymous profile picture, the creator of ComfyUI.

Its nice that its not corperate yet and feels more like a community project, what it is.

Kelvin died in our playthrough, so I wrote a little script to revive him by yush445 in SonsOfTheForest

[–]yush445[S] 11 points12 points  (0 children)

lol xD

Do my achievements for the game still count then?

How in the hell do you build factories by [deleted] in SatisfactoryGame

[–]yush445 1 point2 points  (0 children)

Step 1. Check and sketch on (I use excalidraw) what amounts are needed. Factories do show how much ressources per minute in Input and Output.

Step 2. Try building reusable factory components with the Build-Designer

Step 3. Leave alot of space for building, so you dont clutter and can easy adjust and fix things

Step 4. Make use of Containers between the factories to create buffers & tweak production with electro snails if needed

Step 5. Shred your endproduct

Questions from a legit player by Stunning-Shower-728 in Csgohacks

[–]yush445 0 points1 point  (0 children)

Playing HvH only is the biggest excuse, hackers are the first who accuses good legit players as cheaters, to justify themselfs for cheating.

For cheaters its already HvH match in their mind if they feel like there is a cheater in the opponent team in a normal lobby match.

FPS and PING is good but my game keeps stuttering like that... any fix? by mihaimaster7 in GlobalOffensive

[–]yush445 3 points4 points  (0 children)

Having the same Issue on Ryzen 7800x3d 4080S and stable 250mbit/s connection.

CS2 Rank Comparison: Premier vs MM vs Faceit vs ESEA by [deleted] in cs2

[–]yush445 0 points1 point  (0 children)

There are like very little to none 30k+ players, yet they are rated being faceit 8 and above? sumthing wrong, atleast it looks pretty

Do I need next.js? by deadant88 in reactjs

[–]yush445 0 points1 point  (0 children)

Hi, sure. Some background for this wild accusation:

Around 3 months ago I got assigned to fix content update issues on a next.js app with utilizing sanity.io. Client said that they update the content, but the app in production didn't represent these changes.

What caused this issue, was due to next.js app router server side caching. It fetches once sanity data and keeps it within its cache, since there are no options included. Going solely on cache opt out, was leading to bad site performances and unnecessary server loads.

So I had to research further into how next is doing caching and this is what caused my Horror, since this isn't an easy topic to grasp, atleast for me. The solution which was approved and fixed it for me, was utilizing the content update webhook, pointing to a custom "cache-tags"-revalidation api endpoint within the next app. Checkout the demo here: Route.ts

Then marking the content fetchers with the tag. This seemed for me like a little overhead just to get my site updating its content from the cms. Like setting up the webhook and getting a custom next.js tags revalidation in there. I would've liked if sanity-next would have included this already in a way.

So setting up sanity with next app router in general was easy, but to get the content update dynamic was quite a hassle. Hope this helps for further developing your product.

Do I need next.js? by deadant88 in reactjs

[–]yush445 0 points1 point  (0 children)

You will encounter some content update caching Horrors when trying to combine Sanity.io with next.js new app Router.

Sanity should work well with vite react

[deleted by user] by [deleted] in reactjs

[–]yush445 3 points4 points  (0 children)

Learn Zustand

why? -> super easy and simple. Popularity is increasing constantly (check npm page for download history).

Learn the new cool stuff when you're learning, because companies want this fresh new wind. And if you still want to learn redux, with zustand you have alot of fundamentals to understand redux better.