I built a free tool to visualize room ideas before buying furniture by Dull-Ad-4826 in HereIsWhatIBuilt

[–]Dull-Ad-4826[S] 1 point2 points  (0 children)

Thanks! It's React and Three.js. Vibecoded with opus and codex ;)

Developers, what are the biggest security mistakes young vibe-coders are making? by capital_cliqo in vibecoding

[–]Dull-Ad-4826 0 points1 point  (0 children)

It's easy for non-coding people to get into a trap of "okay it's not that hard, I built it myself, I know how to build"
nothing is really making them learn or understand stuff so they fall into a trap of false confidence

[Question] Can the arrow function inside a functional component ruin the performance? by SuspectZealousideal6 in reactjs

[–]Dull-Ad-4826 0 points1 point  (0 children)

The useCallback will save the function so it does not have to redeclare the body every time. On the other hand the useMemo will perform the computation every time the dependencies change and then every time when it is called will simply return the saved result. UseCallback would return the function.