frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Poppy – a simple app to stay intentional with relationships

https://poppy-connection-keeper.netlify.app/
1•mahirhiro•3m ago•0 comments

Franken Style: a nobuild CSS framework inspired by tailwind and Shadcn

https://franken.style/
1•yashasolutions•3m ago•1 comments

BM25

https://arpitbhayani.me/blogs/bm25/
2•arpitbbhayani•4m ago•0 comments

Ask HN: MacBook or ThinkPad for Compsci

1•helloworlddd•7m ago•0 comments

Show HN: Textideo – Generate video, audio, and 3D assets in one timeline

https://textideo.com/image-to-3d
1•Nancylily•8m ago•1 comments

A new way of editing videos

https://kudoflix.com/
1•mandrixx•12m ago•0 comments

China Tells Top Refiners to Suspend Diesel and Gasoline Exports

https://www.bloomberg.com/news/articles/2026-03-05/china-tells-top-refiners-to-suspend-diesel-and...
2•toomuchtodo•15m ago•0 comments

Home Made GPS Receiver

http://www.aholme.co.uk/GPS/Main.htm
2•jacquesm•16m ago•0 comments

Sound and Silence: What made Alexander Graham Bell invent the telephone? (1998)

https://www.newyorker.com/magazine/1998/04/13/sound-and-silence
1•mitchbob•18m ago•1 comments

TerraPower gets OK to start construction of its first nuclear plant

https://arstechnica.com/science/2026/03/terrapower-gets-ok-to-start-construction-of-its-first-nuc...
1•krunck•20m ago•0 comments

Agentic Engineering Anti Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/anti-patterns/
2•pchristensen•23m ago•2 comments

Show HN: Magpie – Fight AI sycophancy in code review with multi-model debate

https://github.com/liliu-z/magpie
1•leo_e•24m ago•0 comments

Terminal Graphics Protocol

https://sw.kovidgoyal.net/kitty/graphics-protocol/
1•vinhnx•25m ago•0 comments

LLM Prose Tells

https://git.eeqj.de/sneak/prompts/src/branch/main/prompts/LLM_PROSE_TELLS.md
2•dougb5•26m ago•0 comments

Biosciences breeds controversy while trying to revive mammoths

https://www.npr.org/2026/03/04/nx-s1-5704318/colossal-woolly-mammoth-dire-wolf
4•andsoitis•26m ago•1 comments

Las Vegas hotels begin taking foreign currency as tourism woes deepen

https://www.sfgate.com/travel/article/vegas-foreign-currency-21955655.php
3•c420•31m ago•0 comments

Building Claude Code with Boris Cherny

https://newsletter.pragmaticengineer.com/p/building-claude-code-with-boris-cherny
1•vinhnx•36m ago•0 comments

Async Dags in Bash

https://blog.howardjohn.info/posts/bash-dag/
1•ingve•36m ago•0 comments

Haida Salmon Restoration Corporation

https://en.wikipedia.org/wiki/Haida_Salmon_Restoration_Corporation
1•koverda•37m ago•1 comments

Harness engineering: leveraging Codex in an agent-first world

https://openai.com/index/harness-engineering/
1•ianrahman•43m ago•0 comments

Max Schwarzer is leaving OpenAI for Anthropic

https://twitter.com/max_a_schwarzer/status/2028939154944585989
1•tiahura•45m ago•0 comments

Tabular Foundation Models Still Need One Thing: Multi-Table Aggregation

https://wesmadrigal.github.io/GraphReduce/tutorial_auto_feature_engineering/
1•madman2890•50m ago•1 comments

AI perspective from a former Block DevRel

https://blog.moot.dev/chasing-the-ai-high-clay-kilns-and-the-red-queens-race/
3•karlhughes•51m ago•0 comments

Regulator contacts Meta over workers watching intimate AI glasses videos

https://www.bbc.com/news/articles/c0q33nvj0qpo
16•csomar•51m ago•1 comments

Show HN: PostgreSQL for AI – A book on pgvector, RAG, and in-database ML

https://book.zeybek.dev/
1•zeybek•52m ago•1 comments

TurboCast – Turn YouTube videos and articles into AI podcasts

https://turbocast.net/
1•Jasonleo•53m ago•0 comments

More kids, teens injured in e-bike wrecks, study finds

https://medicalxpress.com/news/2026-03-kids-teens-bike.html
4•WaitWaitWha•56m ago•2 comments

Coasty.ai Is Generally Available

1•PrateekJ17•56m ago•0 comments

Hello Developer: March 2026

https://developer.apple.com/news/?id=zmqipz05
2•surprisetalk•1h ago•0 comments

Iran War, Taiwanese Chips, and a Blueprint for Species Survival

https://talking-about-ai.com/the-morning-everything-connected.html
1•planobilly•1h ago•0 comments
Open in hackernews

An Enterprise-Level Retrieval-Augmented Generation System

https://comfyai.app/article/llm-applications/enterprise-level-rag-hands-on-practice-II
6•zljdanceholic•10mo ago

Comments

zljdanceholic•10mo ago
How can we search the wanted key information from 10,000+ pages of PDFs within 2.5 hours? For fact check, how do we implement it so that answers are backed by page-level references, minimizing hallucinations?

RAG-Challenge-2 is a great open-source project by Ilya Rice that ranked 1st at the Enterprise RAG Challenge, which has 4500+ lines of code for implementing a high-performing RAG system. It might seem overwhelming to newcomers who are just beginning to learn this technology. Therefore, to help you get started quickly—and to motivate myself to learn its ins and outs—I’ve created a complete tutorial on this.

We have a complete graph to explain its workflow where multiple tools are used: Docling for parsing PDFs, LangChain for chunking text, faiss for vectorization and similarity searching, and chatgpt for LLMs.

Besides, I also outline the codeflow, demonstrating the running logic involving multiple python files where starters can easily get lost. Different files are colored differently. The purpose of showing this is not letting you memorize all of these file relationships. It works better for you to check the source code yourself and use this as a reference if you find yourself lost in the code.

The original project of Ilya Rice design its RAG system for answering questions of annual reports from companies, so he only designed three types of question response format for that challenge: a name, a number, or a boolean. But to ask questions about technical stuff, we absolutely ask general questions like How does RoPE work? to know about some concepts and the like Therefore, I further modify the system logic to fit this need by customizing an AnswerWithRAGContextExplanationPrompt class and automatically matching the most related chapter and corresponding pages via searching through all faiss databases (only retrieve the top-1) The final performance is demonstrated below (not cherry-picked, only tested once).

- What's the steps to train a nanoGPT from scratch? The answer is:

Training nanoGPT from scratch involves several clearly defined steps. First, set up the environment by installing necessary libraries, using either Anaconda or Google Colab, and then download the dataset (e.g., tinyShakespeare). Next, tokenize the text into numerical representations and split the data into training and validation sets. Define the model architecture including token/positional embeddings, transformer blocks with multi-head self-attention and feed-forward networks, and layer normalization. Configure training hyperparameters and set up an optimizer (such as AdamW). Proceed with a training loop that performs forward passes, computes loss, backpropagates, and updates parameters, while periodically evaluating performance on both training and validation data. Finally, use the trained model to generate new text from a given context.

All code are provided on Colab and the tutorial is referenced here. Hope this helps!