frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

EPI – forensic evidence containers for AI agentSCITT-compatible, EU AI Act-ready

https://github.com/mohdibrahimaiml/epi-recorder
1•afridi_epilabs•33s ago•0 comments

Dealing with Incomplete Copyleft Source That Doesn't Correspond

https://sfconservancy.org/blog/2026/may/17/incomplete-corresponding-source-code-copyleft-agpl/
1•jacquesm•1m ago•0 comments

ElliQ is a surprisingly helpful companion robot for older adults

https://www.theverge.com/gadgets/928806/elliq-intuition-robotics-hands-on
1•sohkamyung•3m ago•0 comments

Just make your own usage brake for Cloudflare

https://github.com/eap5662/serverless-sentinel
1•es0teric5662•3m ago•1 comments

Court grants Musk's bid to add Craig Federighi to Apple/OpenAI lawsuit

https://9to5mac.com/2026/05/15/court-grants-musks-bid-to-add-craig-federighi-to-apple-openai-laws...
2•hdjY28•4m ago•0 comments

Fabricked: Misconfiguring Infinity Fabric to Break AMD SEV-SNP

https://xca-attacks.github.io/fabricked/
2•negura•4m ago•0 comments

So you want to deploy FN-DSA

https://keymaterial.net/2026/05/13/so-you-want-to-deploy-fn-dsa/
1•contact9879•10m ago•0 comments

Grounding AI shopping agents using personas learned from raw clickstream data

https://arxiv.org/abs/2605.14205
1•memoriesdotzip•10m ago•0 comments

The Law of Leaky Abstractions (2002)

https://www.joelonsoftware.com/2002/11/11/the-law-of-leaky-abstractions/
1•oldmanrahul•13m ago•0 comments

Anthropic's $1.5B Settlement with Publishers

https://abhishek-shankar.com/posts/the-pirated-corpus-was-always-a-balance-sheet-item
1•catstyler•13m ago•0 comments

Prowl: Native macOS codings agent orchestrator

https://tangled.org/onev.cat/Prowl
1•nerdypepper•16m ago•0 comments

LeakyLM: AI Assistants Are Leaking Your Conversations

https://leakylm.github.io/
1•lucasluitjes•16m ago•0 comments

Review: Cultivated Salmon

https://justismills.substack.com/p/review-cultivated-salmon
1•networked•18m ago•0 comments

Shipping my first mobile app with AI

https://blog.foundingengineer.com/p/what-i-learned-building-my-first
2•rpatni•21m ago•0 comments

AI Agents Ran 27,000 Experiments. Their Biggest Discovery

https://medium.com/@vektormemory/660-ai-agents-ran-27-000-experiments-their-biggest-discovery-was...
1•vektormemory•31m ago•2 comments

ThinkPad: From IBM's Bento Box to Lenovo's AI Workstations

https://www.jdhodges.com/blog/thinkpad-history/
1•zdw•31m ago•0 comments

Tokenomics: Is it cost effective to refresh Claude's cache, or let it expire?

https://skids.dev/blog/anthropic-cache-tokenomics/
2•ryanskidmore•36m ago•0 comments

Installing a Payphone at My House

https://bert.org/2022/06/02/payphone/
1•skinfaxi•37m ago•0 comments

AI Wearables Are Coming but They'll Need to Pass the Coffee Shop Test to Survive

https://www.inc.com/connor-jewiss/ai-wearables-are-coming-but-theyll-need-to-pass-this-crucial-co...
3•connorjewiss•38m ago•0 comments

Ask HN: What are the system exists for execution of physical verifiable events?

2•abhishek2580•39m ago•1 comments

The Internet is not dead

https://blog.woblick.dev/en/2026/the-internet-is-not-dead/
1•Kovah•40m ago•0 comments

Two EA-18 fighter jets collide at Mountain Home airshow, pilots ejected safely

https://idahonews.com/news/local/two-f-18-fighter-jets-have-crashed-during-an-airshow-at-mountain...
2•ChrisArchitect•42m ago•0 comments

Peter G. Neumann, Who Warned of Computer Security Risks, Dies at 93

https://www.nytimes.com/2026/05/17/obituaries/peter-g-neumann-dead.html
5•rdl•44m ago•2 comments

Killing a `Cow` made my JSON formatter 42% faster

https://jacobasper.com/blog/killing-a-cow-made-my-json-formatter-42-percent-faster/
2•linolevan•45m ago•0 comments

Free 3D Mockup Video for Apps and Websites

https://www.freemockup.video/
1•buildwithdeni•45m ago•0 comments

GenCAD

https://gencad.github.io/
3•dagenix•47m ago•0 comments

Man vs. Machine [Live]

https://twitter.com/figure_robot/status/2056057735444394142
1•punnerud•48m ago•0 comments

Simpson's Paradox and the Hot Hand in Basketball (1995)

https://fermatslibrary.com/s/simpsons-paradox-and-the-hot-hand-in-basketball#email-newsletter
1•downbad_•56m ago•0 comments

Japan Team Successfully Test Engine for Mach 5 Aircraft, Eyeing 2HR Trip to US

https://mainichi.jp/english/articles/20260511/p2a/00m/0sc/015000c
2•karakoram•1h ago•0 comments

Show HN: Automated QA, Performance Tracking

https://malleon.io
1•godelshalt•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!