科技前沿
Host a Side Event during TechCrunch Founder Summit Week in Boston
Want to tap into the energy of 1,100+ startup founders, investors, and tech leaders descending on Boston for the Founder Summit 2026 on June 9? Host your own Side Event during “Founder Summit Week,” happening June 4-10!
AI 资讯
Apple is working on iPhone-to-Windows copy-paste
Apple is working on a feature that will allow users in the European Union to copy content on their iPhone and paste it onto their Windows PC (or vice versa), as spotted earlier by MacRumors. The move comes in response to an interoperability request from Microsoft that asks Apple to open up its Universal Clipboard […]
AI 资讯
Diana Pfeil: Building Confidence in Probabilistic Systems
AI systems can change without the code changing. That makes “is this correct?” a much harder question. I talked with Diana Pfeil about evals, input drift, prompt versioning, model deprecations, and the maintenance work hiding behind all this new capability. Curious how teams here are handling it in production. https://maintainable.fm/episodes/diana-pfeil-building-confidence-in-probabilistic-systems submitted by /u/robbyrussell [link] [留言]
科技前沿
You can now bug your WhatsApp group chats with an @all ping
Surely nobody you know will overuse this...
AI 资讯
We’re giving away a back-to-school bag filled with over $800 of free tech
It’s time for yet another giveaway. We raided The Verge’s closet full of tech in New York City to stuff as much can fit into a Nomatic Messenger Bag. It’s overstuffed, to say the least, and if you’re chosen as the winner of this sweepstakes on August 18th, the bag and its contents (valued at […]
AI 资讯
Spotify now has over 300M subscribers
Notably, the company saw its subscriber base swell by 9% in the second quarter despite raising prices in several regions this year.
AI 资讯
OpenAI says Apple's trade secrets lawsuit is "aggressive and oddly personal"
“We do not have, nor want, any of their trade secrets,” the ChatGPT maker says.
AI 资讯
India moves to give its instant payments network a business model
The legislation lays the groundwork for a potential overhaul of India's zero-merchant-discount-rate regime, under which businesses have not paid fees to accept UPI payments since 2020.
科技前沿
Never put your phone in the refrigerator — here's why
Condensation plus electronics are a bad combo.
开源项目
🔥 chatboxai / chatbox - Powerful AI Client
GitHub热门项目 | Powerful AI Client | Stars: 41,302 | 163 stars this week | 语言: TypeScript
开源项目
🔥 mailcow / mailcow-dockerized - mailcow: dockerized - 🐮 + 🐋 = 💕
GitHub热门项目 | mailcow: dockerized - 🐮 + 🐋 = 💕 | Stars: 13,228 | 50 stars this week | 语言: JavaScript
开源项目
🔥 OWASP / CheatSheetSeries - The OWASP Cheat Sheet Series was created to provide a concis
GitHub热门项目 | The OWASP Cheat Sheet Series was created to provide a concise collection of high value information on specific application security topics. | Stars: 32,791 | 111 stars this week | 语言: Python
开源项目
🔥 quickwit-oss / tantivy - Tantivy is a full-text search engine library inspired by Apa
GitHub热门项目 | Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust | Stars: 15,644 | 11 stars today | 语言: Rust
开源项目
🔥 FalkorDB / FalkorDB - A super fast Graph Database uses GraphBLAS under the hood fo
GitHub热门项目 | A super fast Graph Database uses GraphBLAS under the hood for its sparse adjacency matrix graph representation. Our goal is to provide the best Knowledge Graph for LLM (GraphRAG). | Stars: 5,224 | 252 stars today | 语言: Rust
开源项目
🔥 LargeModGames / spotatui - A fast, standalone terminal music player in Rust: native Spo
GitHub热门项目 | A fast, standalone terminal music player in Rust: native Spotify streaming plus local, Subsonic, radio, and YouTube sources. | Stars: 1,134 | 2 stars today | 语言: Rust
开源项目
🔥 Coldcard / firmware - ❄️ Firmware and simulator for Coldcard Hardware Wallet
GitHub热门项目 | ❄️ Firmware and simulator for Coldcard Hardware Wallet | Stars: 747 | 11 stars today | 语言: Python
开源项目
🔥 huangruiteng / loopx - Lightweight loop engineering state kernel for long-running A
GitHub热门项目 | Lightweight loop engineering state kernel for long-running AI agent teams. Agent-loop agnostic across Codex, Claude Code, and other coding agents, with durable goals, quota-aware auto-wake, executable todos, evidence logs, and verifiable handoffs. | Stars: 1,436 | 618 stars today | 语言: Python
开源项目
🔥 gabime / spdlog - Fast C++ logging library.
GitHub热门项目 | Fast C++ logging library. | Stars: 29,344 | 9 stars today | 语言: C++
开源项目
🔥 uber / ADR - ADR secures enterprise AI agents through observability, secu
GitHub热门项目 | ADR secures enterprise AI agents through observability, security benchmarking, and threat detection. Deployed at Uber. | Stars: 534 | 140 stars today | 语言: Python
AI 资讯
Claude Code + 300 Docs: I Built a Personal Knowledge DB With 4 Retrieval Layers. 3 Broke.
I have 312 docs in my personal knowledge DB. Tweets, arxiv abstracts, Zenn articles, blog posts, YouTube transcripts. Claude Code writes to it, reads from it, and cites out of it every day. That number is not a brag. It is the reason I finally have data on which retrieval strategy holds up in an LLM-native workflow. I tried four. The one I ship is the one I tried last and expected to lose. Three of the four broke in ways that are worth naming, because the broken versions are what most tutorials will tell you to build. The setup, so we agree on what got benchmarked The knowledge DB is called context-forge internally. It is a folder, some markdown files, and a SQLite table. Claude Code adds to it via CLI, searches via CLI, and reads the underlying markdown directly when it needs the full text. It took eight hours to build the CLI, three months to accumulate the 312 documents at a pace of one to five per day, and about 15 minutes a day of my time to keep it flowing. Each doc has metadata: source URL, a credibility score 1-5, one to three categories, a short summary. The autoregistration pipeline is Claude Code itself: I paste a URL, it fetches, summarizes, scores, categorizes, writes the markdown, commits, and updates the SQLite index. The pipeline is not the interesting part. The retrieval strategy is. I ran each of the four strategies for two weeks against the same day-to-day tasks: writing a chapter, answering "what did that person say about X," and building an argument for a decision. Same me, same DB, different retriever. Layer 1: pure semantic RAG (vector embeddings). Broke at 200 docs The first version was the textbook answer. Embed every document with a sentence transformer, store the vectors in SQLite with a similarity index, retrieve the top-k on every query. This is the pattern Silicon Slopes covers for code-level RAG and Anthropic itself has an issue open for a built-in version . It worked at 50 docs. It worked at 100. Around 200 documents it started retrie