frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ban commits/transactions using AST analysis and linters

https://www.droppedasbaby.com/posts/db-commits/
2•offbyone42•2m ago•0 comments

Show HN: Book a Billboard in NYC Times Square

https://bookabillboard.today/
1•HarshaaVardhan•3m ago•0 comments

The Self-Sabotage Paradox: Frontier Labs Are Killing Their Moat

https://www.bargo.ai/research/self-sabotage-paradox-frontier-labs
1•abipal15•3m ago•0 comments

How do you stay familiar with the code when it's written by an LLM?

https://www.aha.io/engineering/articles/staying-familiar-with-the-code-when-its-written-by-an-llm
2•justinweiss•4m ago•0 comments

Smart Cellular Bricks: Towards Collective Intelligence for the Physical World

https://sakana.ai/smart-cellular-bricks/
1•gmays•4m ago•0 comments

Kimi K3: Open Frontier Intelligence

https://twitter.com/Kimi_Moonshot/status/2077830229968683203
2•nekofneko•4m ago•0 comments

Claude – Errors for multiple models

https://status.claude.com/incidents/kqbd7wm6hnnr
1•shorsher•5m ago•0 comments

Kimi Code

https://www.kimi.com/code
1•sebmellen•6m ago•0 comments

AI enthusiasts are in race against time, AI skeptics are in race against entropy

https://charity.wtf/p/ai-enthusiasts-are-in-a-race-against
1•ai_critic•6m ago•0 comments

Performing live migrations of VMs at scale

https://www.sailresearch.com/blog/performing-live-migrations-of-massive-vms-at-scale
1•bobstax•7m ago•0 comments

Act-2 Preview: Generalizing Reliability

https://www.sunday.ai/blog/act-2-preview
1•hubraumhugo•8m ago•0 comments

Rust-powered API framework for Django

https://github.com/dj-bolt/django-bolt
1•Onavo•8m ago•0 comments

Telegram shortlinks knocked offline over sanctioned VPN connection

https://www.theregister.com/security/2026/07/16/telegram-shortlinks-knocked-offline-over-sanction...
2•nyku•9m ago•0 comments

What If David Chalmers's "Hard Problem" of Consciousness Isn't Real?

https://medium.com/@timventura/what-if-david-chalmerss-hard-problem-of-consciousness-isn-t-real-7...
1•timventura•11m ago•0 comments

Kimi K3: Open Frontier Intelligence

https://www.kimi.com/blog/kimi-k3
3•mfiguiere•13m ago•0 comments

Do This Before You Contact Your SQL Server Consultant

https://marlonribunal.com/do-this-before-you-contact-your-sql-server-consultant/
1•MarlonPro•14m ago•1 comments

Truth Social will sell Wall Street quicker access to posts

https://www.cnn.com/2026/07/16/business/truth-social-data-wall-street
1•2OEH8eoCRo0•14m ago•0 comments

Ask HN: Did you make any resolutions this year?

1•anee769•17m ago•0 comments

The Invisible Selection

https://www.bitchute.com/video/JSf5mZkFaq6d/
1•untiledsource•17m ago•0 comments

Show HN: Be the ChatBOT

https://bethechatbot.com/
3•keito•18m ago•0 comments

Ambry – LinkedIn's distributed object store

https://github.com/linkedin/ambry
1•samaysharma•19m ago•0 comments

FDA approves new best-in-class cholesterol pill

https://www.reuters.com/legal/litigation/mercks-cholesterol-pill-gets-us-fda-approval-2026-07-16/
3•ssgodderidge•20m ago•1 comments

Large Open-Weight MoEs Are Converging on Lower Expert Activation Ratios

https://twitter.com/ayushpai0/status/2077817066619351456
1•ayushpai•21m ago•0 comments

Scrawled signature names a Maya astronomer for the first time

https://www.science.org/content/article/scrawled-signature-names-maya-astronomer-first-time
2•gmays•21m ago•0 comments

Power of Reach

https://www.bitchute.com/video/hrdtHJykZcgb/
1•untiledsource•21m ago•0 comments

Thoughts on Typing – Guido Van Rossum (PyCon 2026) [video]

https://www.youtube.com/watch?v=_SRFZODQtxw
3•dwrodri•22m ago•0 comments

We've adding Inkling and 52 small apps one-shotted by it to our arena.

https://arena.logic.inc/compare/asteroid-game/?models=inkling&view=side-by-side
2•sgk284•23m ago•2 comments

We have an all time high in monthly contributors

https://en.osm.town/@simon/116928965352287178
2•aendruk•24m ago•0 comments

Authenticity

https://www.bitchute.com/video/Fmj6mC6DgnWU/
1•untiledsource•25m ago•0 comments

Paintings in a Different Style

https://www.experimentlog.com/blog/paintings-in-a-style-of-a-different-artist
1•iweczek•26m 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!