frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Free Money AI Bond Buildout Is Gone

https://www.bloomberg.com/news/newsletters/2026-08-07/the-free-money-ai-bond-buildout-is-gone
1•1vuio0pswjnm7•9m ago•0 comments

Cuban government open to the idea of an Arab investor to develop 'Trump Island'

https://english.elpais.com/international/2026-08-06/cuban-government-open-to-the-idea-of-an-arab-...
1•SilentM68•10m ago•1 comments

Lucid whistleblower lawsuit links dismissed warning to Air recall that grew 16x

https://runtimewire.com/article/exclusive-lucid-whistleblower-lawsuit-links-dismissed-warning-to-...
1•ryanmerket•12m ago•0 comments

Translating the Renaissance: 17,000+ historical source texts

https://sourcelibrary.org
1•dr_dshiv•19m ago•0 comments

Wrangling Evals

https://sackfield.substack.com/p/wrangling-evals
1•sackfield•30m ago•0 comments

Ask HN: How can I tell which LLM's have been trained on what?

1•RantyDave•31m ago•2 comments

The Hat and the Spectre – Recent Groundbreaking Discoveries in Mathematics

https://momath.org/the-hat/
1•vismit2000•32m ago•0 comments

Chenxiaolong/BasicSync: A simple app for running Syncthing on Android

https://github.com/chenxiaolong/BasicSync
1•aiNohY6g•39m ago•0 comments

Show HN: Framewrite – Turn any video into a document you'll use

https://framewrite.cc/
1•thepace•40m ago•0 comments

Obscura: Headless browser engine. For web scraping and AI agent automation

https://github.com/h4ckf0r0day/obscura
1•thunderbong•41m ago•0 comments

Non Vim TUI for K8s that you don't hate

https://github.com/olafurbergs/krowser
1•obergs•44m ago•0 comments

I fought the slop and I won (unslopping LLM output)

https://castform.com/blog/unslop/
1•BoredomIsFun•47m ago•0 comments

Trumpists' assault on science isn't just harming America – it's harming them

https://www.theguardian.com/commentisfree/2026/aug/07/trump-scientific-research-universities
9•devonnull•48m ago•0 comments

CSS: The bomb inside your inbox

https://portswigger.net/research/css-the-bomb-inside-your-inbox
1•OuterVale•49m ago•1 comments

Homade OS Also PLS Comment

1•TACOCODER•50m ago•1 comments

I watched 13 legal pages for two weeks, three of them changed

https://www.indiehackers.com/post/i-watched-13-legal-pages-for-two-weeks-three-of-them-changed-1d...
2•antoniustyo•53m ago•0 comments

Privacy experts warn of gaps in NZ law, as camera glasses hit Kmart shelves

https://www.rnz.co.nz/news/science-and-technology/933579/privacy-experts-warn-of-gaps-in-nz-law-a...
3•billybuckwheat•54m ago•0 comments

The Nature of Technology

https://sites.santafe.edu/~wbarthur/thenatureoftechnology.htm
5•teleforce•55m ago•0 comments

Show HN: I Built a Carbles Game

https://carbles.app/
1•bmcd•57m ago•0 comments

Trump administration has spent nearly $4B to cancel offshore wind farms

https://techcrunch.com/2026/08/07/trump-administration-has-spent-nearly-4b-to-cancel-offshore-win...
8•higginsniggins•57m ago•2 comments

Show HN: Zero-token memory retrieval for Pi

https://github.com/skorotkiewicz/zero-mem
1•modinfo•57m ago•0 comments

(Warren) Buffett indicator – a measure of valuations

https://en.wikipedia.org/wiki/Buffett_indicator
1•gurjeet•59m ago•0 comments

Simon Claims Polynomial-Time Quantum Algorithm for Lattice Problems

https://postquantum.com/security-pqc/simon-quantum-algorithm-lattice-pqc/
1•cevi•1h ago•0 comments

Timeline of the OpenAI accidental attack against Hugging Face

https://simonwillison.net/2026/Aug/7/openai-timeline/
1•bonsai_spool•1h ago•0 comments

Debugging Information for Inlined Functions

https://lwn.net/Articles/1083985/
1•pykello•1h ago•0 comments

Troxler's Fading

https://en.wikipedia.org/wiki/Troxler%27s_fading
3•thunderbong•1h ago•0 comments

Tearable UI

https://pushmatrix.github.io/tearable/
1•yen223•1h ago•0 comments

Towards a Risk Assessment of Malicious Skill Files in Coding Agents

https://arxiv.org/abs/2608.05223
1•sbulaev•1h ago•0 comments

I got a browser running inside the terminal and let Claude Code control it

https://www.reddit.com/r/vibecoding/comments/1vifa9f/i_got_a_browser_running_inside_the_terminal_...
1•syumei•1h ago•0 comments

A browser golf career SIM with no back end, just LocalStorage

https://www.rainydaygc.com/
1•mdstrobe•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•1y ago

Comments

zljdanceholic•1y 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!