frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GlobalDex – AI agent readiness index with WebMCP detection

https://globaldex.ai
1•saeba•1m ago•0 comments

Show HN: Execute local LLM prompts in remote SSH shell sessions

https://github.com/tgalal/promptcmd
1•smudgy3746•2m ago•0 comments

LLM Time

https://graydon2.dreamwidth.org/322732.html
1•WhyNotHugo•2m ago•0 comments

He Was Chevron's Man in Venezuela–and a CIA Informant

https://www.wsj.com/world/americas/chevron-venezuela-cia-moshiri-c88670fc
1•impish9208•4m ago•1 comments

Context windows aren't the bottleneck. Context quality is

https://contextshift.io/p/first-principles-of-ai-context
1•proportionate•4m ago•1 comments

Estaria – eBook Haven

https://free-book-haven-84.lovable.app
1•Archus•5m ago•0 comments

Humanoid robots get to work at German BMW factory [video]

https://electrek.co/2026/03/14/humanoid-robots-get-to-work-at-german-bmw-factory-video/
1•Bender•5m ago•0 comments

Writing a game of Snake in one language that compiles to 6 others natively

https://github.com/notactuallytreyanastasio/temper_snake
1•rhgraysonii•6m ago•0 comments

Ben Affleck sells his AI postproduction startup to Netflix

https://www.theguardian.com/technology/2026/mar/06/ben-affleck-sells-ai-postproduction-startup-in...
1•kaycebasques•6m ago•0 comments

NetBlocks: Iran's internet blackout enters day 16

https://mastodon.social/@netblocks/116232059137625268
1•throwawayheui57•6m ago•0 comments

Brain Abstracted: Simplification in the History and Philosophy of Neuroscience

https://direct.mit.edu/books/oa-monograph/5741/The-Brain-AbstractedSimplification-in-the-History
1•XzetaU8•6m ago•0 comments

TLA+ as a Design Accelerator: Lessons from the Industry

http://muratbuffalo.blogspot.com/2026/03/tla-as-design-accelerator-lessons-from.html
2•erdal1•7m ago•0 comments

Convictions for Parents of Teen Shooters Put Wyoming Gun Culture Under Scrutiny

https://cowboystatedaily.com/2026/03/14/parents-murder-convictions-put-wyoming-gun-culture-under-...
1•Bender•7m ago•0 comments

An AI burned every credit staring at a shirt. That's not a tool

https://github.com/Nixelad001/flint-methodology
1•nixelad001•7m ago•1 comments

Reentrancy (Computing)

https://en.wikipedia.org/wiki/Reentrancy_(computing)
1•kamaraju•8m ago•0 comments

Show HN: I made an API letting people search in real AI – human conversations

https://apify.com/aiso/aiso-conversations-intelligence
1•bentannen•10m ago•0 comments

Interactive Periodic Table of Oil shows key streams in global oil markets

https://www.spglobal.com/energy/en/news-research/infographics/content-design-infographics/platts-...
1•felineflock•11m ago•0 comments

BrokenArXiv: How often do LLMs claim to prove false theorems?

https://matharena.ai/brokenarxiv/
1•robinhouston•11m ago•0 comments

Comprehension Debt – the hidden cost of AI generated code

https://addyosmani.com/blog/comprehension-debt/
1•cdrnsf•12m ago•1 comments

When do you get 2× Claude?

https://site.aignited.id/claude-2x.html
1•Alifatisk•13m ago•0 comments

Ladybird Browser Is in for a Rusty Future [video]

https://www.youtube.com/watch?v=fXnuR6nXJzc
1•atombender•15m ago•0 comments

Canada and Nordics seek closer 'middle power' cooperation

https://www.reuters.com/world/americas/canada-nordics-seek-closer-middle-power-cooperation-2026-0...
1•madspindel•16m ago•0 comments

Ukraine opens battlefield data access to allies' AI models

https://www.reuters.com/business/aerospace-defense/ukraine-opens-battlefield-data-access-allies-a...
1•e12e•17m ago•1 comments

Why Hollywood Is Facing a Unhappy Ending [video]

https://www.youtube.com/watch?v=VJ_kPcLAKv0
1•mgh2•18m ago•0 comments

Deep-sea natural compound targets cancer cells through a dual mechanism

https://phys.org/news/2026-03-deep-sea-natural-compound-cancer.html
1•Brajeshwar•18m ago•0 comments

The modern formatting addiction in writing

https://dynomight.substack.com/p/formatting
1•walterbell•19m ago•0 comments

Compiling to WebAssembly

https://ktye.github.io/wa/
1•tosh•20m ago•0 comments

MacBook Neo Is the Most Repairable MacBook in 14 Years

https://www.ifixit.com/News/116152/macbook-neo-is-the-most-repairable-macbook-in-14-years
4•FrojoS•21m ago•0 comments

Brazil publishes a list of companies needing age verification, includes Ubuntu

https://www.gov.br/anpd/pt-br/assuntos/noticias/em-acao-de-monitoramento-do-eca-digital-a-anpd-es...
3•iamnothere•21m ago•2 comments

MacBook Neo emerges as company's most repairable laptop in more than a decade

https://www.reuters.com/world/china/apple-macbook-neo-emerges-companys-most-repairable-laptop-mor...
1•FrojoS•21m 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!