frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Protecting children is a good thing, but the policy proposals remain harmful

https://www.cato.org/blog/keeping-kids-safe-good-policy-proposals-are-still-bad-speech-innovation...
1•01-_-•1m ago•0 comments

Evaluating Claude's dbt Skills: Building an Eval from Scratch

https://rmoff.net/2026/03/13/evaluating-claudes-dbt-skills-building-an-eval-from-scratch/
1•rmoff•1m ago•0 comments

1M context window now generally available for Claude Opus and Sonnet 4.6

https://twitter.com/claudeai/status/2032509548297343196
1•tosh•6m ago•0 comments

Ask HN: Is "fast, cheap, correct – pick two" still true in software development?

1•VWWHFSfQ•7m ago•2 comments

Pandas Exercises for Data Analysis (Interactive)

https://machinelearningplus.com/python/101-pandas-exercises-python-interactive/
2•selva86•9m ago•1 comments

Why physical AI is becoming manufacturing's next advantage

https://www.technologyreview.com/2026/03/13/1134184/why-physical-ai-is-becoming-manufacturings-ne...
2•joozio•11m ago•0 comments

AI‑driven fraud and corporate crime: Risks, controls and insurance implications

https://www.wtwco.com/en-us/insights/2026/02/ai-driven-fraud-and-corporate-crime-risks-controls-a...
1•mooreds•11m ago•0 comments

Nvidia: Parrot

https://nvlabs.github.io/parrot/index.html
1•tosh•12m ago•0 comments

Your Phone Is an Entire Computer

https://medhir.com/blog/your-phone-is-an-entire-computer
2•medhir•12m ago•0 comments

AI writing has a homogeneity problem

https://usenoren.ai/blog/why-ai-writing-sounds-the-same
1•snoren•14m ago•1 comments

Adobe to Offer $75M in Free Services to Settle Government Lawsuit

https://www.bloomberg.com/news/articles/2026-03-13/adobe-cancellation-lawsuit-settled-for-150-mil...
3•1vuio0pswjnm7•14m ago•0 comments

Opus 4.6 1M is now the default Opus model for Claude Code users

https://www.threads.com/@boris_cherny/post/DV1Wt9XkcwB
2•rob•14m ago•1 comments

Ask HN: Did Claude Code just bump Opus default to 1M context?

1•9wzYQbTYsAIc•15m ago•1 comments

Adobe will pay $75M to settle US cancellation fee lawsuit

https://www.theverge.com/tech/894555/adobe-75-million-doj-settlement-subscriptions
3•speckx•15m ago•0 comments

Why people in L.A. are strapping cameras on their bodies to do chores

https://www.latimes.com/business/story/2026-03-12/why-people-in-la-are-strapping-cameras-on-their...
1•megabless123•16m ago•0 comments

How to Secure a Terraform Scripts

1•sandipan1988•16m ago•0 comments

Adobe pays $75M to settle over termination fees, subscription cancellations

https://www.reuters.com/world/adobe-pay-75-million-resolve-us-lawsuit-over-fees-subscription-canc...
3•1vuio0pswjnm7•16m ago•0 comments

Show HN: Context Gateway – Compress agent context before it hits the LLM

https://github.com/Compresr-ai/Context-Gateway
6•ivzak•16m ago•3 comments

Custom clothing is cheap and easy to order

https://pilk.website/4/custom-clothing-is-cheap-and-easy
1•npilk•16m ago•0 comments

MLX: Basics

https://ml-explore.github.io/mlx/build/html/usage/quick_start.html
1•tosh•17m ago•0 comments

Show HN: Stint – Fire-and-forget AI agent orchestration

https://github.com/ilocn/stint
1•niceguy1827•18m ago•0 comments

Show HN: Let AI agents debug your Valkey/Redis

https://www.npmjs.com/package/@betterdb/mcp
1•kaliades•19m ago•0 comments

Aircraft Lease

https://en.wikipedia.org/wiki/Aircraft_lease
1•kamaraju•20m ago•0 comments

Who is footing the AI energy bill? Debate over data center electricity costs

https://www.cnbc.com/2026/03/13/ai-data-centers-electricity-prices-backlash-ratepayer-protection....
2•1vuio0pswjnm7•20m ago•0 comments

Productivity and Entropy

https://www.subbu.org/articles/2026/productivity-and-entropy/
2•kiyanwang•21m ago•1 comments

What's My ΔE(OK)JND?

https://www.keithcirkel.co.uk/whats-my-jnd/
2•grezesf•21m ago•1 comments

DoShare Personal Cloud - Your Cloud, Your Rules

https://getcloud.doshare.me
1•vednig•22m ago•0 comments

Tomorrow's World: Nellie the School Computer 15 February 1969 – BBC [video]

https://www.youtube.com/watch?v=f1DtY42xEOI
1•stevekemp•22m ago•0 comments

John Carmack about open source and anti-AI activists

https://twitter.com/id_aa_carmack/status/2032460578669691171
4•tzury•23m ago•0 comments

Gamers' Worst Nightmares About AI Are Coming True

https://www.wired.com/story/gamers-ai-nightmares-are-coming-true/
4•Brajeshwar•24m ago•1 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•10mo ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•10mo 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•10mo 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•10mo 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.