frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Right-sizes LLM models to your system's RAM, CPU, and GPU

https://github.com/AlexsJones/llmfit
1•bilsbie•32s ago•0 comments

Tell HN: Discover using old phone numbers from data broker for SMS 2FA

1•throwawaycDpvY•2m ago•0 comments

Show HN: I built speedmux, a libghostty-powered terminal multiplexer

https://github.com/webforspeed/speedmux
1•n89nanda•3m ago•1 comments

TeX Live 2026 is released

https://tug.org/pipermail/tex-live/2026-March/052232.html
2•gucci-on-fleek•5m ago•2 comments

Noordung's "Wohnrad" – the precursor to rotating space station architecture

https://www.sciencedirect.com/science/article/pii/S0094576525008616
1•pmcjones•6m ago•0 comments

Why are Chinese EVs cheaper than Tesla

https://restofworld.org/2026/why-are-chinese-evs-cheaper-than-tesla/
2•colinprince•6m ago•0 comments

ea.js – Echelon Analytics

https://ea.js.org/
2•velmu•6m ago•0 comments

Show HN: Reveal.js via CDN Template Repo

https://github.com/pacharanero/reveal-js-cdn-template
1•pacharanero•6m ago•0 comments

Show HN: Joey – MCP client that runs on your phone

https://benkaiser.github.io/joey-mcp-client/
1•benkaiser•7m ago•0 comments

Show HN: Jam Storyteller – Attention? Memory Is All You Need

https://github.com/mathorn1973/twistjamstoryteller/releases/tag/v1.0
1•amthorn•8m ago•1 comments

Show HN: Service Book – Smart maintenance tracking for every car owner

https://yourservicebook.com/
1•sectorthree•9m ago•0 comments

The Rabbit Woman of Gowanus (2015)

https://www.theawl.com/2015/02/the-rabbit-woman-of-gowanus/
1•Thorondor•11m ago•0 comments

IPv6-Mostly Networks: Deployment and Operations Considerations

https://datatracker.ietf.org/doc/html/draft-ietf-v6ops-6mops
1•zacwest•15m ago•0 comments

Processing UK rail data in real-time (2025)

https://aran.dev/posts/processing-uk-rail-data-in-real-time/
1•teleforce•18m ago•0 comments

The ROLV CPU Breakthrough

https://rolv.ai
1•heggenhougen•23m ago•1 comments

Given AI, should I still consider becoming a computer programmer? Yes, and...

https://htmx.org/essays/yes-and/
2•rsyring•24m ago•0 comments

SSHKit – An Elixir Toolkit for Performing Tasks on One or More Servers

https://github.com/bitcrowd/sshkit.ex
1•TheWiggles•25m ago•0 comments

HN: I built a Bitcoin meme site with 21-episode fake Satoshi interviews

https://satoshisaidwhat.com
1•FunAnalyst5490•27m ago•1 comments

The US-Israeli Strike on Iran: A Game-Changer for Ukraine?

https://www.kyivpost.com/opinion/70953
1•JumpCrisscross•31m ago•0 comments

The New Cool Thing: Being Human

https://www.honest-broker.com/p/the-new-cool-thing-being-human
1•paulpauper•34m ago•0 comments

Suspected insiders make over $1.2M by betting on U.S.'s Iran strike

https://www.coindesk.com/markets/2026/02/28/suspected-insiders-make-over-usd1-2-million-on-polyma...
4•airhangerf15•34m ago•1 comments

Show HN: Ductwork – A Go platform for running AI agents on autopilot

https://github.com/dneil5648/ductwork
1•dneil8675•34m ago•0 comments

Bets on Fate of Iran's Khamenei Spark Uproar at Leading Prediction Markets

https://www.wsj.com/world/middle-east/bets-on-fate-of-irans-khamenei-spark-uproar-at-leading-pred...
2•paulpauper•35m ago•0 comments

U.S. Races to Accomplish Iran Mission Before Munitions Run Out

https://www.wsj.com/world/middle-east/u-s-races-to-accomplish-iran-mission-before-munitions-run-o...
3•ParentiSoundSys•35m ago•1 comments

Show HN: Code-Graph-RAG – Knowledge graph RAG for any codebase

https://github.com/vitali87/code-graph-rag
1•vitali87•35m ago•1 comments

Allegations of insider trading over prediction-market bets tied to Iran conflict

https://www.morningstar.com/news/marketwatch/20260301140/allegations-of-insider-trading-over-pred...
3•paulpauper•36m ago•0 comments

The Rectangular Cows: Geometric Livestock in 19th-Century Paintings

https://rarehistoricalphotos.com/rectangular-cows/
1•ZeljkoS•37m ago•0 comments

Breeze QtWidgets style changes to help us prepare for Union

https://akselmo.dev/posts/breeze-and-union-preparing/
1•birdculture•38m ago•0 comments

Show HN: PartyHub Rental – Marketplace for party equipment rentals

https://www.partyhubrental.com
1•eibrahim•38m ago•0 comments

Show HN: I'm 15. I mass published 134K lines to hold AI agents accountable

https://github.com/nobulexdev/nobulex
5•nobulexdev•39m ago•11 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!