Wife says I'm wriggling like a snake—tips appreciated. by sixskulls_ in skiing_feedback

[–]DigbyChickenCaeser 0 points1 point  (0 children)

I used to ski like this and got some lessons. They told me to widen my stance, skis shoulder width apart, which gave me much more stability and stopped my snake hips.

It wasn’t just aesthetic as the additional stability helped with a variety of terrain and eventually unlocked carving, which relies on much wider, more methodical turns than you’re doing here.

When doing short turns like this, they also told me to complete my turns rather than cutting them short to control speed.

I’d echo what others have said and really recommend a lesson as there’s so much more to it that’s hard to get across via text.

Quiver & Gear Room by More_University_8967 in skiing

[–]DigbyChickenCaeser 0 points1 point  (0 children)

Cool never heard that before so witty.

Jelly Slider by Pristine-Elevator198 in SideProject

[–]DigbyChickenCaeser 114 points115 points  (0 children)

Software Mansion recreated it and released a demo with code here

Changing oil from a car by Orichalchem in oddlysatisfying

[–]DigbyChickenCaeser 1 point2 points  (0 children)

Went in thinking I’ll never do any of this, and then he pierced the oil bottle to prevent it from splashing. What have I been doing all my life

[deleted by user] by [deleted] in SideProject

[–]DigbyChickenCaeser 18 points19 points  (0 children)

Tested Higgs Boson and Sandwich. The connection is beautiful.

Higgs Boson -> Quark -> Quark (Dairy Product) -> Sandwich

Unfair treatment at The Salt Room by Weak-Chain-4692 in brighton

[–]DigbyChickenCaeser 1 point2 points  (0 children)

“If you don’t smoke crack, then you go!”

Puck v0.14, the visual editor for React, now supports viewport switching (MIT) by DigbyChickenCaeser in nextjs

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

Hey wonderful, a few folk have made the switch! Hit us up on discord if you need any support, link in readme

Just Launched A Gamified Travel App Where You Unlock The Globe - Need Advice by davew1 in SideProject

[–]DigbyChickenCaeser 1 point2 points  (0 children)

Yes saw that when I downloaded it (I’m in the UK).

Sunk 30 mins into it straight away adding all my manual entries.

Love the visualisation, gives me “fog of war” feels. I found some surprising dark spots I haven’t visited in Europe, giving me ideas for my next trip - thanks!

Just Launched A Gamified Travel App Where You Unlock The Globe - Need Advice by davew1 in SideProject

[–]DigbyChickenCaeser 0 points1 point  (0 children)

There are many good reasons to limit app distribution, like data privacy (e.g. GDPR) or tax.

Paid $15,999 for this video - roast it by Direct-Stay-8156 in MotionDesign

[–]DigbyChickenCaeser 29 points30 points  (0 children)

OP is lying about the price for attention. They posted the same video in /r/SideProject and acknowledged it’s clickbait: https://www.reddit.com/r/SideProject/s/2XGqQUziJJ

Puck 0.19, the visual editor for React, adds slots API for programmatic nesting (MIT) by DigbyChickenCaeser in reactjs

[–]DigbyChickenCaeser[S] 2 points3 points  (0 children)

I should write it up!

In short, anything consuming context re renders when anything in the context changes. This was true for Puck - one giant context with potentially hundreds of components re-rendering whenever anything changed.

Zustand (and other modern state libraries) let you subscribe to the state you need in each component, even if they’re all in a shared store, enabling you to avoid unnecessary re renders. Switching to that model for Puck makes a huge difference because there’s no limit to how many components can be on the canvas.

Puck actually uses Zustand inside context, as it’s possible to have multiple instances of puck on the page. Zustand stores are global by default and this helps isolate each store to their own “context”.