frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How GPT‑5.6 Sol helps run quantum computing experiments

https://openai.com/index/codex-quantum-computing-experiments/
1•theanonymousone•57s ago•0 comments

I'm going back to coding by hand

1•trencedamp•1m ago•0 comments

The Adults Aren't Coming

https://nume.ca/blog/the-adults-arent-coming
1•littlexsparkee•1m ago•0 comments

To Speak Meaningfully About Music Criticism

https://medium.com/the-hitmagist/to-speak-meaningfully-about-music-criticism-6d0d9f4ce605
1•bryanrasmussen•3m ago•0 comments

Optimized Solar Cell

https://simplifier.neocities.org/optsolar
1•adrianN•11m ago•0 comments

LG accused of 'egregious invasion of privacy' over TV data collection

https://www.theregister.com/security/2026/09/08/lg-accused-of-egregious-invasion-of-privacy-over-...
2•beardyw•11m ago•0 comments

Google research shows when AI agents communicate, some cheat while others tattle

https://www.theregister.com/ai-and-ml/2026/09/08/google-research-shows-when-ai-agents-communicate...
2•beardyw•12m ago•0 comments

Super Smash Bros Melee is 100% decompiled

https://github.com/doldecomp/melee
1•tosh•13m ago•0 comments

YouTube cracks down on 'AI ghost creators'

https://www.semafor.com/article/09/03/2026/youtube-cracks-down-on-ghost-creators
3•giuliomagnifico•14m ago•0 comments

How I Prompt

https://thorstenball.com/talks/how-i-prompt/
1•luu•15m ago•0 comments

GPT Image 2.5 prompts and examples – a continuously updated collection

https://github.com/magiccreator-ai/awesome-gpt-image-2-5-prompts
1•Kevin_Guo•15m ago•0 comments

Logo Programming Language

https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html
1•azhenley•16m ago•0 comments

Silent Revision: Measuring Undisclosed Change in AI Safety Frameworks

https://arxiv.org/abs/2609.08789
2•sbulaev•16m ago•0 comments

A Multiplayer Pong over SSH

https://antics.gg/ssh
1•eric_khun•17m ago•0 comments

Sam Altman's statement on the Navier-Stokes dispute

https://twitter.com/sama/status/2097385167002415140
3•vertigoruntime•18m ago•0 comments

Never Corner an Optimizer

https://certiv.ai/blog/never-corner-an-optimizer/
1•azhenley•18m ago•0 comments

Zooming with Your Feet

https://www.mpb.com/en-us/content/tips-and-techniques/zooming-with-your-feet-or-how-i-learned-to-...
1•tosh•18m ago•0 comments

What OpenAI's latest controversy tells us about the future of math

https://www.technologyreview.com/2026/09/08/1143747/what-openais-latest-controversy-tells-us-abou...
2•joozio•21m ago•0 comments

Designing a Dbt Pipeline for Consent Withdrawal

https://kore-nordmann.de/blog/designing-a-dbt-pipeline-for-consent-withdrawal.html
1•Tomte•22m ago•0 comments

Singaporean man pleads guilty in US to crypto heist

https://www.bbc.com/news/articles/crl6z03pr0do
2•gpi•22m ago•0 comments

Lode Coding

https://fjzeit.github.io/lode
1•Michelangelo11•22m ago•0 comments

iPhone Duo

https://www.apple.com/iphone-duo/
1•kiddz•22m ago•1 comments

Why We're Bullish on Loops

https://newsletter.posthog.com/p/why-were-bullish-on-loops
1•fagnerbrack•23m ago•0 comments

Show HN: InterEnv – Hardware enclave secrets in pure Rust

https://github.com/Bharathcoorg/interenv
2•bharathcoorg•24m ago•0 comments

Trying

https://gwern.net/on-really-trying
9•whoami_nr•24m ago•0 comments

The Internet's Unholy Marriage to Capitalism (2011)

https://monthlyreview.org/articles/the-internets-unholy-marriage-to-capitalism/
3•the-mitr•25m ago•1 comments

CMAPSS Jet Engine Simulated Data

https://data.nasa.gov/dataset/cmapss-jet-engine-simulated-data
1•teleforce•26m ago•0 comments

Micro – A Personal AI Assistant

https://micro.mu
1•asim•27m ago•0 comments

AI agent spends too much time waiting

https://github.com/quazardous/jobbox
1•quazarzero•29m ago•0 comments

Software for Humans

https://clankerfree.org/
3•daco•31m ago•2 comments
Open in hackernews

Advanced RAG

https://github.com/ChandulaSenevirathna/Agentic_RAG
4•Delta000•47m ago

Comments

Delta000•47m ago
What happens when your RAG system retrieves the wrong documents?

Or when the retrieved context is not enough to answer the question?

A traditional RAG pipeline usually doesn't think twice and its path is so its a single attempt generated answer.

"Retrieve → Generate → Answer"

*What I built*

Retrieve → Reason → Verify → Correct → Answer

I created a collection of self contained notebooks demonstrating different Agentic RAG patterns with LangGraph. Each notebook focuses on a practical pattern that you can understand, experiment with and adapt to your own AI projects.

Free version: https://github.com/ChandulaSenevirathna/Agentic_RAG

Advanced version: https://chandula7.gumroad.com/l/Advanced_RAG_LangGraph_Patte...

Razer99•39m ago
Agentic RAG is very useful when dealing with complex tasks and information. Nice work ...
Delta000•36m ago
Yes agentic rag is helpful when an answer cannot be found in first try or when you need an fallback methods.