Feed aggregator

Larry Wall Quotes

Hacker News - Fri, 03/07/2025 - 1:42am
Categories: Hacker News

Powerdrill AI

Hacker News - Fri, 03/07/2025 - 1:40am

Article URL: https://powerdrill.ai/

Comments URL: https://news.ycombinator.com/item?id=43287800

Points: 1

# Comments: 1

Categories: Hacker News

Smile Like Zuck

Hacker News - Fri, 03/07/2025 - 1:34am

Article URL: https://smilelikezuck.com/

Comments URL: https://news.ycombinator.com/item?id=43287784

Points: 2

# Comments: 0

Categories: Hacker News

Lambda Form in React

Hacker News - Fri, 03/07/2025 - 1:32am

How about writing this in React? I'm a bit stuck on passing parameters.

```tsx import { useEffect, useState } from "react";

function HookRender({ render }: { render(): React.ReactNode }) { return render(); }

function Demo() { const [list, setList] = useState< { id: number; text: string; }[] >([]); return ( <> {list.map((item) => { return ( { const [a, setA] = useState(0); useEffect(() => { //do something }, [a]); return {item.text}; }} /> ); })} ); } ```

Comments URL: https://news.ycombinator.com/item?id=43287775

Points: 1

# Comments: 0

Categories: Hacker News

Pages