frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How fast is autonomous AI cyber capability advancing?

https://www.aisi.gov.uk/blog/how-fast-is-autonomous-ai-cyber-capability-advancing
1•dcre•53s ago•1 comments

What is your AIQ? How good are you at using Claude Code/Codex?

https://www.aiqrank.com
1•tylerg•3m ago•0 comments

Greater Manchester still says no to NHS data platform with Palantir at its heart

https://www.theregister.com/public-sector/2026/05/13/greater-manchester-still-says-no-to-nhs-data...
2•Bender•4m ago•0 comments

Audrey: Local-first memory guard for AI agents (source)

https://github.com/Evilander/Audrey
1•evilanders•4m ago•0 comments

What's with all the slide decks? A polycausal theory

https://dynomight.substack.com/p/slides
1•crescit_eundo•4m ago•0 comments

U.S. Intelligence Shows Iran Retains Substantial Missile Capabilities

https://www.nytimes.com/2026/05/12/us/politics/iran-missiles-us-intelligence.html
3•hebelehubele•5m ago•0 comments

Underrated Ideas in Biotech

https://nikomc.com/essays/underrated-ideas-01.html
1•mailyk•5m ago•0 comments

FCC walks back router update ban before it bricks America's network security

https://www.theregister.com/networks/2026/05/12/fcc-walks-back-router-update-ban-before-it-bricks...
2•Bender•5m ago•0 comments

Analog Computer Applications: The Lorenz-attractor [pdf]

https://anabrid.com/media/pages/publikation-dateien-nur-zur-verwaltung-der-dateien/f4766de51c-174...
1•tosh•6m ago•0 comments

NBA's Rwanda ties face scrutiny after sanctions-linked BAL withdrawal

https://www.theguardian.com/sport/2026/apr/25/nba-rwanda-sanctions-bal-apr-withdrawal-kagame
1•PaulHoule•6m ago•0 comments

SpaceX targets May 19 for debut of Starship Version 3, Launch Pad 2

https://spaceflightnow.com/2026/05/12/spacex-targets-may-19-for-debut-of-starship-super-heavy-ver...
1•bookmtn•6m ago•0 comments

Most teams optimize the prompt. Agentic systems have more moving parts

https://www.aevyra.ai/posts/prompt-optimization-agentic-systems.html
2•agunapal•6m ago•0 comments

Show HN: EleutherAI / Lm-Evaluation-Harness

https://github.com/EleutherAI/lm-evaluation-harness
1•marvinified•7m ago•0 comments

Wireloom: A Markdown extension for UI wireframes

https://github.com/StardockCorp/Wireloom
1•watbe•7m ago•0 comments

Scientists find insects may feel pain after crickets nurse sore antenna

https://www.theguardian.com/science/2026/may/13/insects-feel-pain-research
1•YeGoblynQueenne•7m ago•0 comments

BitLocker-protected drives can now be opened using files on a USB stick

https://www.tomshardware.com/tech-industry/cyber-security/microsoft-bitlocker-protected-drives-ca...
1•Timofeibu•7m ago•0 comments

In Praise of Acoustic Mathematics

https://link.springer.com/article/10.1007/s00283-026-10512-7
1•sebg•8m ago•0 comments

Show HN: BossHogg: A PostHog CLI for Agents

https://github.com/aaronkwhite/bosshogg-cli
1•aaronkwhite•8m ago•0 comments

How do agents see your website?

https://what-do-agents-see.runtype.app/
2•zackangelo•8m ago•0 comments

Discover: A Love Letter to RSS

https://brine.dev/posts/discover-a-love-letter-to-rss
1•speckx•9m ago•0 comments

The unmet needs in human disease index

https://www.convoke.bio/blog/introducing-the-unmet-needs-index
1•sebg•9m ago•0 comments

CloudFront's flat-rate plan (CDN+WAF+DNS) now scales to 6B req and 600TB/mo

https://aws.amazon.com/blogs/networking-and-content-delivery/cloudfront-premium-flat-rate-plan-su...
1•cristiangraz•10m ago•0 comments

Show HN: Ledger – Claude Code Token Spend Analyzer

https://github.com/delta-hq/cc-ledger
1•tsv650•10m ago•0 comments

Unknowable Math Can Help Hide Secrets

https://www.quantamagazine.org/how-unknowable-math-can-help-hide-secrets-20260511/
1•Xcelerate•11m ago•0 comments

Google Unveils Googlebook, a New AI Laptop Built Around Gemini

https://www.macrumors.com/2026/05/12/google-unveils-googlebook/
1•Brajeshwar•12m ago•0 comments

Some Proposals for Reviving the Philosophy of Mathematics (1979) [pdf]

https://gwern.net/doc/math/1979-hersh.pdf
1•sebg•12m ago•0 comments

Filen deleted all of my data. A heads-up for others

https://old.reddit.com/r/filen_io/comments/1t3r055/filen_deleted_all_of_my_data_a_headsup_for_oth...
1•tcp_handshaker•13m ago•0 comments

DeepSeek and Grok hallucinated the same fictitious OpenBSD manpage quote

https://stuart-thomas.com/research/the-empirical-council/
1•ethical•15m ago•2 comments

One in seven prefer consulting AI chatbots to seeing a doctor, UK study shows

https://www.theguardian.com/society/2026/may/13/one-in-seven-prefer-ai-chatbots-to-seeing-doctor-...
1•chrisjj•17m ago•1 comments

Skip – One Swift Codebase. Two Native Platforms

https://skip.dev/
3•nikolay•17m 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.