frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Opus 4.7 has turned into an overzealous query cop, devs complain

https://www.theregister.com/2026/04/23/claude_opus_47_auc_overzealous/
1•freedomben•1m ago•0 comments

You probably wouldn't notice if an AI chatbot slipped ads into its responses

https://theconversation.com/you-probably-wouldnt-notice-if-an-ai-chatbot-slipped-ads-into-its-res...
2•geox•5m ago•0 comments

Possibility of modifying an image to see without glasses? (2010)

https://stackoverflow.com/questions/2563471/is-it-possible-to-modify-an-image-so-someone-with-myo...
1•zeristor•5m ago•1 comments

Meta signs agreement with AWS to power agentic AI on Amazon's Graviton chips

https://www.aboutamazon.com/news/aws/meta-aws-graviton-ai-partnership
1•ksec•8m ago•1 comments

Why LLMs Can't Replace Strategic Insight

https://hbr.org/2026/03/researchers-asked-llms-for-strategic-advice-they-got-trendslop-in-return
1•Antibabelic•11m ago•0 comments

The art of splitting without splitting

https://www.youtube.com/watch?v=jr8KxZvosYI
1•RebootStr•11m ago•0 comments

Rust open-source headless browser for AI agents and web scraping

https://github.com/h4ckf0r0day/obscura
2•guerby•19m ago•0 comments

Gleam gets source maps, 1.16.0

https://gleam.run/news/javascript-source-maps/
1•birdculture•27m ago•0 comments

A fun 5 minute take on AI in business

https://www.youtube.com/watch?v=nDL3Ch7Nz8c
1•lifeisstillgood•28m ago•0 comments

DeFi United calls on the world for $292M rsETH relief

https://defiunited.world/
2•kindkang2024•33m ago•0 comments

I wrote an async LSM storage engine in Rust

https://github.com/mehrdad3301/tiny-lsm
2•mehrdad__3301•35m ago•1 comments

Code Is Free Now. What's Left Is Us

https://p.ocmatos.com/blog/code-is-free-now-whats-left-is-us.html
1•pmatos•36m ago•0 comments

Agentic AI for Hormuz Shock Modelling

https://avkcode.github.io/blog/hormuz-shock.html
1•KyleVlaros•38m ago•0 comments

Elon Musk's near-daily online posts about race are turning off some fans

https://www.washingtonpost.com/technology/2026/04/24/musk-online-posts-race-whiteness/
4•vrganj•41m ago•0 comments

You don't have to be filthy rich to enjoy an airport shower

https://www.nytimes.com/2026/04/24/travel/airport-lounges-showers-beds.html
1•strogonoff•43m ago•0 comments

Markdown (Aaron Swartz: The Weblog)

http://www.aaronsw.com/weblog/001189
1•tahazsh•43m ago•0 comments

Vanishing Culture: A Report on Our Fragile Cultural Record

https://archive.org/details/vanishing-culture-2026
2•stared•44m ago•0 comments

SiGit Code: local-first coding agent

https://github.com/getsigit/sigit
1•kampak212•46m ago•0 comments

Show HN: StudyHall – A Virtual Workspace

https://studyhall.app
3•kornatzky•51m ago•0 comments

A Dose of Wisdom from Silicon Valley's Favorite Prophet

https://www.nytimes.com/2026/04/24/opinion/ezra-klein-podcast-stewart-brand.html
2•throwrg25•53m ago•0 comments

The Wind in the Willows and reading out loud

https://interconnected.org/home/2026/04/24/willows
1•Tomte•56m ago•0 comments

Why 'Atomic Habits' may not be working for you (2023)

https://www.krishnabharadwaj.info/why-atomic-habits-may-not-be-working-for-you/
1•n_e•58m ago•0 comments

What Is the Next Moat?

https://substack.com/profile/73011963-ming/note/c-248876715
1•dooku0721•59m ago•0 comments

South Africa's Draft Capital Flow Management Regulations, 2026

https://bitcoinke.io/2026/04/the-south-africa-capital-flow-management-draft-regulations-2026/
1•DavGit•1h ago•0 comments

•1h ago

Different AI Models All in One Platform

https://www.chatcomparison.ai/
2•chatcomparison•1h ago•0 comments

Rust Memory Management: Ownership vs. Reference Counting

https://slicker.me/rust/ownership_and_borrowing_vs_reference_counting.html
3•vinhnx•1h ago•0 comments

Caching Expensive Functions in Rust

https://kocharhook.com/post/5/caching-expensive-functions-in-rust/
3•vinhnx•1h ago•0 comments

What Happens When You Build an Inode-Style Vector in Rust

https://sot.dev/inode-style-vector-in-rust.html
2•vinhnx•1h ago•0 comments

FlipHTML5 Pdf Downloader

https://fliphtml5.aivaded.com
1•godsbee•1h ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•1y ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•1y ago
Whenever it gets in a cycle of fucking up, I ask it to break the code down into smaller functions and write a test suite for each individually.

Tell it what language or packages to use or it might make selections that add dependencies or require installing stuff on your computer.

Tell it how you want your code written or it will be an extra chore to accommodate linting requirements.

Basically just being very explicit.

GianFabien•1y ago
I mostly write low-level code in Python and JS. When working with a new API, I would sometimes find it difficult to locate information to fix problems. With ChatGPT I simply rubber duck my problem. It usually only takes a couple of iterations to zoom into the core solution.
Flundstrom2•1y ago
Copilot in visual studio to fix compiler errors and let it type all the boilerplate code by TAB-ing. Sometimes it even manages to spit out an entire - and correct - function.

Mistral Le Chat for more advanced questions and figuring out things that copilot can't.