惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
WordPress大学
WordPress大学
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
C
Check Point Blog
P
Proofpoint News Feed
H
Help Net Security
月光博客
月光博客
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
U
Unit 42
美团技术团队
I
InfoQ
A
About on SuperTechFans

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - hypertrial/data-control-center: Data Control Center
mattfaltyn · 2026-06-18 · via Hacker News: Show HN
demo_v1_fast_h264.mp4

Local-first tool for profiling, exploring, and querying local data files (CSV, TSV, Parquet, JSON, JSON Lines, NDJSON, and DuckDB) with fast browse-and-import for .duckdb files via Import DuckDB (one system file dialog when native pick is enabled; HTTP upload remains for API/tests/fallback). Built for a single trusted workstation—fast EDA and ad-hoc DuckDB SQL, not hosted BI or multi-tenant use. This app is local-only; see SECURITY.md for the threat model and vulnerability reporting.

Quick start (no LLM required)

  1. From the repo root: make install then make dev (requires GNU bash; see Platform notes).
  2. Open http://127.0.0.1:5173.
  3. New here? Follow the 5-minute tour with examples/ fixtures before using your own data.

Explore Columns, Charts, SQL, and more. Ask is optional and needs Ollama; see User guide — Ask.

Platform notes

  • macOS — primary platform; Node 22 (.nvmrc), Python 3.11+, uv, optional Ollama.
  • Linux — same make targets; install Node 22 and uv from your distro or upstream.
  • Windows — use WSL2 (e.g. Ubuntu). Native Windows without WSL is untested.

Prerequisites: Node 22 from .nvmrc (matches CI). Python 3.11+ and uv. Run make help from the repo root for all targets.

Single-server mode

Opens http://127.0.0.1:8000 (API serves the built UI via DCC_UI_DIST_PATH). Day-to-day development uses make dev (Vite on 5173 + API on 8000).

Upgrading / workspace schema

Workspace metadata lives in DCC_WORKSPACE_DB_PATH (default .dcc_workspace.duckdb relative to the backend cwd). There is no in-place migration. After pulling changes that alter workspace layout or profile shape, run make clean-local or delete the workspace file by hand—that removes app cache, Ask history, and upload copies under .dcc_uploads/, not your original source files. See CHANGELOG for breaking changes. Schema details: backend/README.md.

Upgrading to 1.1.0

If you used 1.0.0, read CHANGELOG — 1.1.0 before upgrading. In short:

  1. Update custom API clients: DuckDB inspect/import APIs use source_id (replaces upload_id).
  2. /api/saved-charts was removed; saved chart rows are dropped from local workspaces on next startup.
  3. Saved SQL snippets gain an optional description column; existing workspaces migrate in place on startup.
  4. Large datasets may rebuild profiles with sample-scoped metrics; the UI polls prepare jobs until ready.

Upgrading to 1.0.0

If you used 0.1.0, read CHANGELOG — 1.0.0 before upgrading. In short:

  1. make clean-local (or delete .dcc_workspace.duckdb) so the workspace and profile cache match the new schema.
  2. Re-open datasets; profiling is async on first load (PROFILE_NOT_READY + job polling).
  3. Custom Ask clients must call POST /api/agent/ask/stream only (sync ask removed).

1.0.0 also changes default UX: Ask runs a second Ollama summarization pass by default (set DCC_AGENT_SUMMARIZE_WITH_LLM=false for lower latency). Columns opens sorted by column name ascending; distribution stats show STDEV for standard deviation.

API reference

With the backend running: http://127.0.0.1:8000/docs (Swagger UI).

Architecture

  • Frontend (frontend/): React, Vite, TypeScript, TanStack Query/Table, Zustand, ECharts, Tailwind, shadcn-style primitives
  • Backend (backend/): FastAPI, DuckDB, Polars, Pydantic, uv

Documentation map

Document Audience Purpose
docs/README.md Users Index: tour vs user guide
docs/5-minute-tour.md Users First-run walkthrough with examples/
docs/user-guide.md Users Day-to-day usage, shortcuts, tabs
examples/README.md Users Synthetic fixture descriptions
CONTRIBUTING.md Contributors Setup, validation, pull requests
backend/README.md Backend devs API, DCC_* config, workspace
frontend/README.md Frontend devs Vite proxy, layout, TanStack conventions
AGENTS.md AI agents Agent rules; links to CONTRIBUTING for commands
SECURITY.md Security Threat model and vulnerability reporting
CHANGELOG.md Upgraders Breaking changes and release notes
docs/RELEASE.md Maintainers Tagging and GitHub Release steps
CODE_OF_CONDUCT.md Community Contributor Covenant

Known limitations (MVP)

  • Excel and remote files are not supported yet.
  • No cross-dataset join UI; explore overlaps with ad-hoc SQL.
  • Very wide files may be slow on first profile; use Refresh in the dataset strip or POST /api/datasets/{id}/profile/refresh.