frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Escape Incident Tracker

https://ai-escape.watch/#registry
1•FinAck-Sec•2m ago•1 comments

Look, Mom, I pressed a button

https://galoisrepresentations.org/2026/09/05/look-mom-i-pressed-a-button/
1•robinhouston•4m ago•0 comments

The Evolution of Coding Agents

https://twitter.com/kushbhuwalka/status/2096856441063870969
1•kushbhuwalka•4m ago•0 comments

LG smart TVs caught logging audio with screen off and snooping on local devices

https://www.notebookcheck.net/LG-smart-TVs-caught-logging-audio-with-screen-off-and-snooping-on-l...
1•chris_overseas•4m ago•0 comments

Show HN: I wrote a guide to rendering video from plain HTML/CSS/GSAP

https://sidheart.gumroad.com/l/lyudd
1•SifatAhmed•4m ago•1 comments

Who Cares If AI Is Conscious–It's Basically Alive

https://www.wired.com/story/who-cares-if-ai-is-conscious-its-basically-alive/
1•joozio•5m ago•0 comments

ORM experience, Redis speed, PostgreSQL durability,functions without boundaries

https://github.com/orbsh/okm
1•orbsh•5m ago•0 comments

Show HN: Plethora, Social platform and SDK around games and interactive content

https://plethora.studio/
1•pratt3000•7m ago•0 comments

Show HN: Open-source agent memory layer, 96% on LongMemEval, local-first

https://github.com/everest-an/Awareness-Market
1•AwarenessAI•9m ago•0 comments

PC Tweaker – Windows settings with per-change restore, built in Rust

https://github.com/AurelioAvila/pc-tweaker-app
1•Aurelioavila•12m ago•0 comments

Necessist, a tool to identify broken tests

https://github.com/trailofbits/necessist
1•mkhq•13m ago•0 comments

Privacy Leakage from Gradients in Split-LLM Training

https://arxiv.org/abs/2609.04382
1•hevalon•13m ago•0 comments

Laffer Curve

https://en.wikipedia.org/wiki/Laffer_curve
1•nomilk•16m ago•0 comments

Canadian Pedestrian Network Database

https://www150.statcan.gc.ca/n1/en/catalogue/34260004
1•marklit•20m ago•0 comments

CRISPR editing of ANGPTL3: one-time precision therapy for dyslipidaemia

https://www.nature.com/articles/s41392-026-02605-8
1•emerongi•22m ago•0 comments

1M Lines of AI-Assisted Code in 2025

https://jonathanclark.com/posts/ai-coding-million-lines-2025.html
1•profstasiak•23m ago•0 comments

Elizabeth Holmes A24 Movie – You Can See Everything – Official Teaser HD [video]

https://www.youtube.com/watch?v=GGJSRFWALTI
1•sounddetective•27m ago•0 comments

Wan 3.0 at 68% of Alibaba Cloud's international list price, Prime at 78%

https://reapi.ai/models/wan-3-0
1•andrew06124•27m ago•0 comments

Pandora's Vox: On Community in Cyberspace (1994)

https://gist.github.com/kolber/2131643
1•Gecko4072•28m ago•0 comments

China Prepares for Space Warfare(apparently)

https://www.reuters.com/world/asia-pacific/us-china-arm-space-warfare-hunter-satellites-orbital-w...
2•KinetiNode•29m ago•0 comments

Show HN: Wb-Flow – Agentic Coding with Planned, Parallel Waves

https://github.com/wissemb11/wb-flow
2•wissemb1•30m ago•0 comments

Show HN: Remove people from photos by brushing over them

https://personremover.org/
2•fourfire•30m ago•0 comments

Astra made Van Gogh in a single pre computed step of 5291 excalidraw shapes

https://twitter.com/hive_echo/status/2096848073033146580
2•echohive42•31m ago•0 comments

Meta blocks accounts protesting Kushner-linked Albanian resort project

https://www.politico.eu/article/meta-blocks-accounts-politicians-journalists-and-activists-protes...
4•vrganj•34m ago•0 comments

Why 'sleepmaxxing' could be making your sleep worse

https://www.bbc.co.uk/news/articles/c99drr70m2eo
3•jeffwass•34m ago•0 comments

I Dislike TypeScript Because I've Never Maintained JavaScript Before

https://mayberay.bearblog.dev/i-dislike-typescript-because-ive-never-maintained-javascript-before/
1•mugamuga•40m ago•0 comments

LessHard: Less wrong about wanting [parody]

https://shimmermathlabs.com/lesshard.html
1•nwhitehead•43m ago•0 comments

What did she see? The intelligence scramble to retrace an accused spys footsteps

https://www.cbc.ca/news/politics/canada-china-spy-nato-intelligence-9.7331493
5•pir8life4me•53m ago•0 comments

23 years documenting the global LED transition of city lighting from space

https://twitter.com/astro_pettit/status/2096763479143469206
5•taubek•56m ago•0 comments

Collaborative Machine Knowledge Platform

https://haidaa.com/
2•AISETR•58m ago•1 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!