frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Ported Xonotic to WASM

https://dpgame.xonotic.workers.dev/
1•astlouis44•17s ago•0 comments

County to pay $192,783 to 3 employees who lost their jobs over Covid vaccine

https://padailypost.com/2026/06/04/county-agrees-to-pay-employees-in-vaccine-dispute-but-who-will...
1•MilnerRoute•26s ago•0 comments

Show HN: Startup sci-fi novel that took me 5 years to write

https://www.blockchainednovel.com/
1•mck-•33s ago•0 comments

Do Agents.md Files Help Coding Agents?

https://arxiv.org/abs/2602.119883649136323252397
1•pretext•36s ago•0 comments

Show HN: Open-Source, Local First, GitHub Stars Management and Search

https://orbit-oneq.vercel.app/
1•alonronin•1m ago•0 comments

Uber Freight sees earlier peak season, strong Mexico demand

https://www.freightwaves.com/news/borderlands-mexico-uber-freight-sees-earlier-peak-season-strong...
1•crescit_eundo•1m ago•0 comments

What its like to be an AI Artist [video]

https://www.youtube.com/watch?v=mcYl70vq_Ns
1•dana321•2m ago•1 comments

Eight indicted in alleged carrier impersonation scheme; $4.49M in cargo losses

https://www.freightwaves.com/news/eight-indicted-in-alleged-carrier-impersonation-scheme-prosecut...
1•crescit_eundo•2m ago•0 comments

LenPEG

https://www.dangermouse.net/esoteric/lenpeg.html
1•tosh•2m ago•0 comments

Show HN: Hostinger KVM 8 – Forensic Audit of "Dedicated" Infrastructure

https://github.com/figuerapro/hostinger-forensic-audit-PKE-FORENSIC-2026-001
1•figuerapro•3m ago•0 comments

How private yards became autonomous trucking's most promising frontier

https://www.freightwaves.com/news/autonomous-yard-trucks-isee-tico-2027
1•crescit_eundo•3m ago•0 comments

Game Theory/Mechanism Design for AI Safety

https://helenqu.com/blog/posts/emergence_3/
1•_hqu•4m ago•0 comments

Two Leaps to 1000 Tokens/s on a 1T-Parameter Model

https://www.tilert.ai/blog/breaking-1000-tps.html
1•__natty__•6m ago•0 comments

Show HN: Live Code Techno with Posara, Visual-Audio Engine I Made

https://soundcloud.com/rusty-ocean-blue/sets/posara-vol-1
1•knh190•6m ago•0 comments

'They take you out of life, out of time': a journey into Spain's cave paintings

https://www.theguardian.com/science/2026/jun/02/journey-into-spain-palaeolithic-cave-paintings-al...
1•NaOH•6m ago•0 comments

Do AI tutors empower or enslave learners? [pdf]

https://arxiv.org/abs/2507.06878
1•herbertl•8m ago•0 comments

Datatype – variable font that turns text into charts

https://franktisellano.github.io/datatype/
2•pavel_lishin•9m ago•0 comments

Hormonal signalling reorganizes 3D chromatin in adipocyte thermogenesis

https://www.oecd.org/en/publications/2025/07/oecd-fao-agricultural-outlook-2025-2034_3eb15914/ful...
1•PaulHoule•9m ago•0 comments

AutoMegaKernel: Compile an LLM into one provably-correct CUDA megakernel

https://github.com/RightNow-AI/AutoMegaKernel
2•OsamaJaber•10m ago•0 comments

Rewrite AI-generated text to read naturally, reducing AI-detector flags

https://bingbangboom-dolus-rewrite.hf.space/
1•halleyscomet•10m ago•0 comments

Bending Spoons S-1

https://www.sec.gov/Archives/edgar/data/2004711/000110465926071170/tm2613674-7_f1.htm#TOC
2•mattmarcus•12m ago•0 comments

Memory Caching: RNNs with Growing Memory

https://arxiv.org/abs/2602.24281
1•ttruett•12m ago•0 comments

Show HN: Quick games disguised as boring spreadsheets

https://boredspreadsheet.com/workbook
3•kevinclelland•16m ago•0 comments

Show HN: I Built a Dashboard for Every 2026 World Cup Squad

https://worldcup-2026-dashboard.pages.dev/
2•emot•17m ago•0 comments

Intel ISPC

https://ispc.github.io/
1•tosh•17m ago•0 comments

AI in Software Development. Boosting or Slowing Your Productivity

https://olegdubovoi.com/publications/ai-in-software-development-boosting-or-slowing-your-producti...
1•empiree•18m ago•0 comments

Plans to stop children taking nude images

https://www.gov.uk/government/news/new-plans-to-stop-children-taking-sharing-or-viewing-nude-images
2•0xedb•18m ago•1 comments

The difference in perspectives between superpowers is shaping the race for AI

https://www.nytimes.com/2026/05/14/opinion/china-trump-ai-xi.html
1•yogthos•20m ago•0 comments

Show HN: A Slack like interface where you can run a company of AI employees

https://www.tryguildly.com/
1•spiken23•21m ago•0 comments

The AI vibe shift is real: Why the backlash is growing

https://mashable.com/tech/ai-backlash-vibe-shift
2•cdrnsf•22m 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!