HN user

dezmou

708 karma
Posts45
Comments93
View on HN
lamotte-laturballe.see-around.app 3mo ago

Show HN: Gaussian splatting for real estate promotion

dezmou
2pts4
github.com 5mo ago

Epstein-ô-matic – Turn your memories into crimes

dezmou
2pts0
epsteinomatic.com 5mo ago

Epsteinomatic: Turn Your Memories into Crimes

dezmou
6pts3
www.youtube.com 1y ago

The first YouTube video was uploaded 20 years ago

dezmou
2pts0
model.modez.pro 2y ago

Show HN: Interactive 360 model engine for real estate

dezmou
1pts0
www.unixtimestamp.com 2y ago

The Unix timestamp will begin with 17 this Tuesday

dezmou
330pts75
news.ycombinator.com 2y ago

Ask HN: How those websites play sound without user interaction first?

dezmou
3pts3
eth-storage.com 2y ago

Store Files in the Ethereum Blockchain

dezmou
2pts0
betterprogramming.pub 2y ago

Painless WebGPU Programming with Taichi.js

dezmou
2pts0
old.reddit.com 3y ago

R/Place

dezmou
1pts0
guesstube.com 3y ago

Show HN: Guess the number of views of a random YouTube video

dezmou
6pts1
neuilly.hive-maquette3d.fr 3y ago

Show HN: A real estate orbital display engine

dezmou
6pts1
neuilly.hive-demo.fr 3y ago

Show HN: An orbital model engine for real estate

dezmou
2pts0
news.ycombinator.com 3y ago

Ask HN: Do you think online poker will survive IA?

dezmou
1pts2
eth-storage.com 3y ago

Show HN: Store your files in the Ethereum blockchain

dezmou
3pts4
github.com 3y ago

SHA-256 Using WebGPU

dezmou
3pts0
github.com 3y ago

UseRender, The React Hook that you shamefully dream of having

dezmou
1pts0
github.com 3y ago

Unboga,a open source board game inspired by Gin Rummy

dezmou
1pts0
github.com 3y ago

Mind-Vis is a framework for decoding human visual stimuli from brain recording

dezmou
2pts0
github.com 3y ago

Web Assembly ImageMagick

dezmou
3pts0
gildas-lormeau.github.io 4y ago

Compress data faster than rust in JavaScript

dezmou
3pts0
www.xe.com 4y ago

1.0 Euro is now worth $1.0 USD

dezmou
252pts7
news.ycombinator.com 4y ago

Ask HN: Is there a service to store information that becomes public if I die

dezmou
2pts5
news.ycombinator.com 4y ago

Ask HN: Does uBlock hide the content of your Gmail?

dezmou
6pts6
avax-store.com 4y ago

Show HN: Easily store your files in the blockchain

dezmou
1pts0
www.youtube.com 4y ago

Guy spent 4000 hours to build a replica of the Ford GT-40

dezmou
2pts0
boston.cbslocal.com 4y ago

Man Can’t Get Heart Transplant Because He’s Not Vaccinated Against Covid

dezmou
7pts9
opensea.io 4y ago

OpenSea delisted the Olive Garden NFT

dezmou
7pts6
cryptobriefing.com 4y ago

Ethereum Launches London Hardfork Including EIP-1559

dezmou
3pts0
allthings.how 5y ago

You Can’t Disable Taskbar Button Grouping in Windows 11

dezmou
3pts1

OP did miss the vscode extension for claude code, it is still terminal based but: - it show you the diff of the incoming changes in vscode ( like git ) - it know the line you selected in the editor for context

Ok so I tested it by CD into a directory, and open a file from another directory, create an empty function and selecting the function in the editor, and asking claude to just "fill the function" it knew which text was selected in which file and filled the function, this will gain me some time

The extension say "Tab awareness: Claude can see which files you have open in the editor" I don't know how to activate this, it would help me to not have to CD in the terminal each time

So I won't get anything more that the file compare that appear when claude in terminal ask to modify a file ?

One day I was asked to take on a web development assignment. The aim was to make the website delivered by a guy look more like the figma model. The guy had used tailwind. That's when I realized that tailwind is great for rapid prototyping, but if you really want something precise, nothing beats raw css. Needless to say, the mission was hell.

By Updated I mean that more than comparing virtual DOM to real DOM. - If you have a useEffect without dependendy, it trigger it. - If you have some map, filter, sort, any lambda in your template, it will be executed again. And that is true for your component and every children recursively.

"If you pass a prop to a child component, it will update whenever you change state"

Well if you update a state, every children of your component is updated as well regardless of if they have a prop passed.

I know there are way to make react trully reactive like Valtio using proxy or maybe Zustand, but my point is that useState or useContext is not "reactive" at all, you must call a function to rerender the components.