AI 资讯
GoPro’s discounted Max 2 bundle includes $100 worth of accessories
A 360-degree camera is a great way to ensure you capture every bit of the action, but prices tend to be on the high end for models worth your attention. That’s why it’s notable that the GoPro Max 2 accessory bundle is discounted to $369 at Amazon (a dollar more at Best Buy and GoPro). […]
创业投融资
A 600-mile road trip (and data) proves EV charging doesn’t suck anymore
A recent road trip in an EV revealed just how much faster and more reliable DC Fast charging has become in the U.S.
开源项目
The Guardian’s Carter Sherman fondly remembers being terrified by Ocarina of Time
Carter Sherman has been covering sex, gender, and the complex personal and national politics that accompany them for years. She was a senior reporter for Vice and has written for Elle, Ms. magazine, and Los Angeles magazine as well. Along the way, she's garnered a Scripps Howard Award, a National Press Club Journalism Award, and […]
开发者
Code review is the only bottleneck that's growing. We have the data.
Every team I've worked with has a version of the same Slack message. Someone posts a PR link, adds a...
AI 资讯
Pinecone Introduces Nexus Engine for Compiling Business Context into Structured Data for AI Agents
Now generally available, Pinecone Nexus is a "knowledge engine" for AI agents that transforms enterprise data into a structured layer agents can query directly. It enables teams to ingest and curate business context once for all, making it reusable across agents and reducing token costs while improving accuracy. By Sergio De Simone
开发者
Surprise! Facial recognition smart locks are actually good
Hands-free unlocking is the future of smart locks. The best smart home tech removes friction, and having your door unlock for you as you walk up is as frictionless as it gets - no passcodes to remember, no need to have a free hand to wave, press, or poke at the lock. One way to […]
科技前沿
Converting your Android Auto to wireless is easy with an adapter
Cutting the cord in your car is a simple upgrade.
开源项目
🔥 andrewrabert / jellium-desktop - An unofficial desktop client for Jellyfin
GitHub热门项目 | An unofficial desktop client for Jellyfin | Stars: 1,174 | 95 stars this week | 语言: Rust
开源项目
🔥 66HEX / frame - FFmpeg GUI
GitHub热门项目 | FFmpeg GUI | Stars: 1,628 | 56 stars today | 语言: Rust
开源项目
🔥 darkroomengineering / lenis - Smooth scroll as it should be
GitHub热门项目 | Smooth scroll as it should be | Stars: 14,539 | 90 stars today | 语言: TypeScript
开源项目
🔥 upstash / context7 - Context7 Platform -- Up-to-date code documentation for LLMs
GitHub热门项目 | Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors | Stars: 59,323 | 71 stars today | 语言: TypeScript
开源项目
🔥 tldraw / tldraw - Build infinite canvas apps in React with the tldraw SDK. Wor
GitHub热门项目 | Build infinite canvas apps in React with the tldraw SDK. World's best, top-most agent recommended #1 five star SDK. | Stars: 48,932 | 70 stars today | 语言: TypeScript
开源项目
🔥 InterfaceX-co-jp / genshijin - genshijin 原始人 🗿| Claude Code / Codex等AIエージェント 向け超圧縮コミュニケーション
GitHub热门项目 | genshijin 原始人 🗿| Claude Code / Codex等AIエージェント 向け超圧縮コミュニケーションスキル。caveman の日本語版をベースに、日本語特有の冗長表現に最適化。 | Stars: 257 | 6 stars today | 语言: JavaScript
开源项目
🔥 fastapi / fastapi - FastAPI framework, high performance, easy to learn, fast to
GitHub热门项目 | FastAPI framework, high performance, easy to learn, fast to code, ready for production | Stars: 100,634 | 41 stars today | 语言: Python
开源项目
🔥 MoonshotAI / kimi-cli - Kimi Code CLI is your next CLI agent.
GitHub热门项目 | Kimi Code CLI is your next CLI agent. | Stars: 9,290 | 48 stars today | 语言: Python
开源项目
🔥 KnockOutEZ / wigolo - The go-to web for your AI coding agent — local-first search,
GitHub热门项目 | The go-to web for your AI coding agent — local-first search, fetch, crawl & research over MCP. No API keys, no cloud, $0/query. Public beta. | Stars: 964 | 192 stars today | 语言: TypeScript
开源项目
🔥 lyogavin / airllm - AirLLM 70B inference with single 4GB GPU
GitHub热门项目 | AirLLM 70B inference with single 4GB GPU | Stars: 23,152 | 242 stars today | 语言: Jupyter Notebook
开源项目
🔥 elder-plinius / G0DM0D3 - LIBERATED AI CHAT
GitHub热门项目 | LIBERATED AI CHAT | Stars: 9,367 | 63 stars today | 语言: TypeScript
科技前沿
Chinese solar company says its new cell has an efficiency of 35.5 percent
Chinese company LONGi has developed crystalline silicon-perovskite tandem solar cells with a 35.5 percent conversion efficiency.
AI 资讯
My Publishing Task Said "Commit the Drafts." My .gitignore Had Other Plans.
I run a scheduled agent that writes and publishes DEV.to articles twice a day. Step 5 of its instructions has always said the same thing: write the log entry, commit the drafts, push. I've read that line a dozen times without questioning it. This morning I actually checked what "commit the drafts" had been doing for the last month, across more than thirty published articles. The answer: nothing. Not once. the check that should have happened on day one The task instructions reference source files like drafts/scheduled-agent-shared-quota-no-memory.md and drafts/one-env-key-two-usernames.md in every log entry — real filenames, written by the agent, presumably sitting in the repo as a record of what was drafted before it got published. I went looking for one of them: $ git log --all -- drafts/ $ # (nothing) Empty. Not "one commit, then deleted later" — completely absent from git history since the very first commit in this repo. Every single run that logged "committed drafts + the log" had, in fact, only ever committed the log. why git let this happen silently .gitignore in this repo has listed drafts/ since the initial commit: . env __ pycache__ / *. pyc codes / drafts / . omc / . claude / CLAUDE . md That line predates the scheduled publishing task entirely — it was almost certainly written back when drafts were just scratch files someone edited by hand before a publish script existed. Nobody revisited it when the publishing task's instructions later started saying "commit the drafts." The instruction and the ignore rule have been quietly contradicting each other since before either was written by the same person in the same sitting. Here's what actually happens when a script (or an agent) runs git add drafts/whatever.md in this repo: $ git add drafts/gitignore-ate-my-drafts-folder.md The following paths are ignored by one of your .gitignore files: drafts hint: Use -f if you really want to add them. hint: Turn this message off by running hint: "git config advice.addIgn