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

推荐订阅源

M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
量子位
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
IT之家
IT之家
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
雷峰网
雷峰网

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 - chrisdiana/gistkeep: Portable bookmarks & notes,...
inflam52 · 2026-04-29 · via Hacker News: Show HN

GistKeep is an open source bookmark and notes app that stores your library in your own GitHub Gist.

Fully client-side with no app-owned backend or hosted database. Your bookmarks and notes live in Markdown in your own Github Gist, which makes them portable, inspectable, versioned, and easy to back up. Try it here

GistKeep dark theme interface preview

Features

  • Plain Markdown storage
  • Built-in bookmarklet for saving links from anywhere
  • Categories, tags, search, and notes
  • Full-text search across saved data
  • Theme support
  • Inline note editing
  • Optional content encryption

How It Works

  1. Open the app and connect it to a GitHub Gist using a personal access token.
  2. GistKeep reads and writes your bookmark and notes data directly to that gist.
  3. Use the web app or bookmarklet to save and organize links.
  4. Reopen the app later to browse, edit, search, and manage your library.

Getting Started

1. Create a GitHub personal access token

Create a token with the minimum access needed to read and update the gist you want to use.

2. Run the app locally

Because this is a static app, any simple local web server will work.

python3 -m http.server 8080

Then open:

http://localhost:8080/app.html

3. Configure GistKeep

On first launch, provide:

  • GitHub Username or Gist ID
  • GitHub Personal Access Token
  • an optional encryption key if you want token protection and encrypted content

If you do not provide an encryption key, the token can still be stored locally, but it will not be encrypted.

Bookmarklet

GistKeep includes a bookmarklet generator inside the app.

After setup:

  1. Open Settings
  2. Find the bookmarklet section
  3. Drag Save to GistKeep to your bookmarks bar, or copy the generated code manually

The bookmarklet opens GistKeep with the current page URL and title prefilled so you can save links quickly.

Security Notes

Token storage

GistKeep can encrypt the locally stored GitHub token with a user-supplied passphrase. Without that passphrase, the token is stored locally without encryption.

Encryption note

GistKeep currently uses CryptoJS.AES.encrypt(...) with a user-supplied passphrase for local token protection and optional gist content encryption.

This means:

  • Data is AES-encrypted with a passphrase-derived key
  • The current implementation relies on CryptoJS/OpenSSL-style defaults

This is reasonable for casual privacy and personal use, but it should not be treated as state-of-the-art protection for high-value secrets. The real security still depends heavily on choosing a strong, unique encryption key.

Gist privacy

Unlisted GitHub gists are not the same thing as strongly private storage. Anyone with the URL can access the gist unless the content itself is encrypted.

Tradeoffs

GistKeep is intentionally simple, and that comes with tradeoffs:

  • It rewrites managed files when saving changes
  • Very large libraries are not the ideal use case
  • GitHub Gist is the storage model, so GitHub availability and gist behavior matter
  • Sharing and privacy depend on how you configure and use your gist

For normal personal collections, these tradeoffs are often worth it. For very large libraries or heavy collaboration, a conventional backend-backed app may be a better fit.

Open Source

GistKeep is intended to be easy to inspect, self-host, and modify. It is a plain static app with no framework or build pipeline required.

Contributing

Contributions are welcome.

If you want to contribute:

  1. Open an issue or start a discussion for bugs, UX changes, or larger ideas
  2. Keep changes focused and easy to review
  3. Test the affected flow locally by serving the app and checking app.html
  4. If you change storage behavior, bookmarklet behavior, or security-related logic, include clear notes in your PR

License

See LICENSE.