frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Deep Dive into 4-Wave Interleave FP8 GEMM

https://rocm.blogs.amd.com/software-tools-optimization/4wave-fp8gemm/README.html
1•skidrow•27s ago•0 comments

Show HN: I'm 15, built an AI that watches your screen and acts before you ask

https://github.com/Helmus101/weave
1•anqer•30s ago•0 comments

Flexible Rate Limit Resets for Codex (bank rate limit resets)

https://community.openai.com/t/flexible-rate-limit-resets-for-codex-and-a-method-to-get-a-reset/1...
1•embedding-shape•2m ago•0 comments

A Metacircular Interpreter in Rhombus

https://github.com/racket/rhombus/blob/master/rhombus/rhombus/tests/example-interp.rhm
1•spdegabrielle•6m ago•1 comments

AI is potentially a Dunning-Kruger effect amplifier

https://twitter.com/i/status/2066825204207091926
1•binyu•7m ago•0 comments

We built an agent that runs our AI data platform

https://encord.com/blog/merlin-encord-mcp-agentic-intelligence/
2•ulrikhansen54•9m ago•0 comments

Databricks Launches LTAP: A Unified OLAP/OLTP Data Architecture

https://www.databricks.com/company/newsroom/press-releases/databricks-launches-ltap-first-lake-tr...
2•thehaikuza•9m ago•1 comments

Predicting model behavior before release by simulating deployment

https://openai.com/index/deployment-simulation/
1•0xedb•10m ago•0 comments

The feedback loops behind Kubernetes

https://planetscale.com/blog/the-feedback-loops-behind-kubernetes
2•CSDude•11m ago•0 comments

Hecate, Hardened Osint Platform

https://github.com/synchancybersecurity/Hecate
2•enkimecca•12m ago•0 comments

U.S. pulling ocean sensors a 'shock' for Canadian research as El Niño nears

https://www.timescolonist.com/local-news/us-pulling-ocean-sensors-a-shock-for-canadian-research-a...
30•ResearchAtPlay•12m ago•1 comments

PHP Through a Screen Reader: Small Syntax Choices That Matter

https://thephp.foundation/blog/2026/06/16/php-through-a-screen-reader-small-syntax-choices-that-m...
1•itafroma•12m ago•0 comments

Noctua introduces NL-LC1 all-in-one liquid coolers

https://www.noctua.at/en/news/noctua-introduces-nl-lc1-all-in-one-liquid-coolers
5•georgs_•13m ago•0 comments

Rabbit Hole: The Lorem Ipsum Mystery [video]

https://www.youtube.com/watch?v=kL1PDqzqhM4
1•luizfzs•14m ago•0 comments

Show HN: Next.js boilerplate with Better Auth, PostgreSQL and Shadcn/UI

https://github.com/mmilanovic4/forge
1•mmilanovic4•14m ago•0 comments

Tyler Cowen: A Dangerous Turn in AI Regulation

https://www.thefp.com/p/tyler-cowen-a-dangerous-turn-in-ai
1•paulpauper•14m ago•0 comments

How to Catch a Chess Cheater

https://www.uschess.org/index.php/June/How-To-Catch-A-Chess-Cheater-Ken-Regan-Finds-Moves-Out-Of-...
1•bookofjoe•14m ago•0 comments

Students Are Using a 'Backdoor' to Attend Their Dream Schools

https://www.wsj.com/us-news/education/college-admissions-alternative-enrollment-programs-communit...
1•paulpauper•14m ago•0 comments

Show HN: Ril: a parallel data streaming tool for Python

https://github.com/dannypesic/ril
1•dpesic•15m ago•0 comments

Can Online Activity Be Regulated? Evidence from Adult Websites

https://www.nber.org/papers/w35322
2•paulpauper•15m ago•0 comments

Nobody wants to tell me why they only listen to their own Suno slop

https://www.theverge.com/ai-artificial-intelligence/937059/nobody-wants-to-tell-me-why-they-only-...
2•thebigship•15m ago•0 comments

Claudity

https://danielmay.co.uk/posts/claudity/
1•speckx•15m ago•0 comments

Ask HN: Looking for mobile app ideas with real user demand

3•habeebmd•17m ago•0 comments

AI Consciousness:The Delusionals and the Philosopher's Bench

https://www.avidfayaz.com/writings/delusionals/the-delusionals-and-the-philosophers-bench
7•Avid_F•17m ago•0 comments

Show HN: Write Your GitHub Actions in TypeScript

https://github.com/dedalus-labs/hollywood
3•windsor•18m ago•2 comments

There's more than one way to be a 10x engineer

https://orischwartz.com/posts/theres-more-than-one-way-to-be-a-10x-engineer.html
1•fleaflicker•19m ago•0 comments

The Rivian R2's Radio Needs Cell Signal the Wilderness Doesn't Have

https://www.carscoops.com/2026/06/rivian-r2-fm-radio/
2•MBCook•19m ago•1 comments

Anyone give me a strong mobile app idea

2•habeebmd•19m ago•0 comments

Show HN: Dopamine – An MIT-Licensed Open-Source Cross-Platform Effects Library

https://github.com/10in30/dopamine/
1•jmckenty•20m ago•0 comments

Build your project Zig-style

https://fnordig.de/2026/06/16/build-your-project-zig-style/
1•caleb_thompson•20m 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.