frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Built the Same App with Five GUI Frameworks: Tauri Slint Egui Dioxus Flutter

https://medium.com/@yalovoy/i-built-the-same-app-with-five-gui-frameworks-tauri-slint-egui-dioxus...
1•zero-ground-445•14m ago•0 comments

Khufu Ship

https://en.wikipedia.org/wiki/Khufu_ship
2•polivier•14m ago•0 comments

Show HN: I built a codebase analysis MCP: Stria

https://github.com/Reliary/stria
1•microbass•15m ago•1 comments

US takes step to halt Nvidia AI chip shipments to Chinese firms outside China

https://www.reuters.com/world/china/us-takes-step-halt-nvidia-ai-chip-shipments-chinese-firms-out...
1•tartoran•19m ago•0 comments

Qwen-VLA: Vision-Language-Action Modeling Across Tasks, Environments, and Robots

https://www.dcard.tw/f/relationship/p/255790583?cid=d3500548-d505-400c-8906-1449999188de
1•maxloh•24m ago•0 comments

Claude Code Ultracode

https://note.com/tolove/n/n08cf64926fd4?hl=en-US
3•hmokiguess•34m ago•0 comments

Beyond Tokenmaxxing

https://dhrumil.ca/thoughts/beyond-tokenmaxxing
2•dhrumilcse•36m ago•0 comments

OllamaMQ New Version v0.2.7

https://github.com/Chleba/ollamaMQ
3•chleba•36m ago•0 comments

Ad Infini­Tum

https://matthiasott.com/notes/ad-infinitum
3•yurivish•37m ago•1 comments

Stand and Deliver Revisited

https://reason.com/2002/07/01/stand-and-deliver-revisited-2/
2•pcfwik•38m ago•0 comments

Iran: The Internet Is Back, but Something Has Changed

https://emot.substack.com/p/when-the-internet-disappears
2•emot•39m ago•0 comments

Scaling Trust – Can We Create Programmable Trust?

https://cahootzcoops.com/blog/scaling-trust-can-we-coordinate-economics-beyond-a-boss-and-create-...
1•DeonRob•42m ago•0 comments

Illinois budget – new tax on targeted advertising, social media data collection [pdf]

https://www.ilga.gov/documents/legislation/104/SB/PDF/10400SB3019ham001.pdf
3•stockresearcher•45m ago•1 comments

What Kind of Clock Is an LLM?

https://isthisanart.substack.com/p/what-kind-of-clock-is-an-llm
1•HR01•45m ago•0 comments

Ben Affleck: AI company he sold to Netflix for $600M leads to 'more human work'

https://finance.yahoo.com/sectors/technology/articles/ben-affleck-says-ai-company-103500057.html
2•indigodaddy•55m ago•0 comments

San Francisco Popos (Privately Owned Public Open Spaces) Sorted by Distance

https://tools.encona.com/sfpopos
3•rahimnathwani•58m ago•1 comments

Claude Code OS: self-updating operational memory for Claude Code (open source)

https://github.com/bernardohcrocha/claude-code-os/
2•bernardohcr•1h ago•0 comments

Show HN: RedFlag – self-hosted update manager with a supply chain gate

https://github.com/Fimeg/RedFlag
1•Fimeg•1h ago•0 comments

Team Topologies as the Infrastructure for Agency

https://matthewskelton.com/blog/team-topologies-as-the-infrastructure-for-agency
2•wapasta•1h ago•0 comments

Karpathy LLM Wiki pattern integrated into Obsidian agenic workflow

https://github.com/pssah4/vault-operator
3•pssah4•1h ago•0 comments

Science sleuths uncover more than 100 suspicious images Thermo Fisher antibody

https://www.nature.com/articles/d41586-026-01706-2
4•Bender•1h ago•0 comments

Google wants to release up to 32M good mosquitoes California and Florida

https://ktla.com/news/google-wants-to-release-up-to-32-million-good-mosquitoes-in-california-and-...
3•Bender•1h ago•0 comments

William Chester Minor

https://en.wikipedia.org/wiki/William_Chester_Minor
1•petethomas•1h ago•0 comments

Gen Z are 'zebra striping' to avoid hangovers, scientists say it works

https://www.dailymail.com/sciencetech/article-15854983/Gen-Z-zebra-striping-avoid-hangovers-scien...
3•Bender•1h ago•2 comments

The Anarchist's Workbench [pdf]

https://blog.lostartpress.com/wp-content/uploads/2020/07/AWB_Consumer_June-2020_v5.1-1.pdf
2•wesleyd•1h ago•0 comments

Memo from the Interstellar Information Service – Re: Earth's Latest Space "Plan"

https://samhenrycliff.medium.com/memo-from-the-interstellar-information-service-re-earths-latest-...
1•6stringmerc•1h ago•0 comments

OpenJDK: Removal of the JVM Compiler Interface (JVMCI), in JDK 27

https://bugs.openjdk.org/browse/JDK-8382582
2•alasr•1h ago•0 comments

Harvard Graduation Speaker: "The Mission of Your Generation Is to Destroy AI"

https://www.yahoo.com/entertainment/tv/articles/harvard-graduation-speaker-unloads-ai-130000122.h...
4•poly2it•1h ago•4 comments

How Servers Work: A Hands-On Introduction to TCP Sockets

https://labs.iximiuz.com/tutorials/how-servers-work-tcp-sockets
1•birdculture•1h ago•0 comments

New AI Agent Architecture to fix LLM deviations and token costs

https://github.com/botcircuits-ai/botcircuits-agent
1•nexcatara•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!