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

推荐订阅源

雷峰网
雷峰网
G
Google Developers Blog
D
Docker
The GitHub Blog
The GitHub Blog
H
Help Net Security
WordPress大学
WordPress大学
博客园_首页
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
罗磊的独立博客
I
InfoQ
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
Visual Studio Blog
Jina AI
Jina AI
J
Java Code Geeks
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
Google DeepMind News
Google DeepMind News

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 - klinquist/Notesync
klinquist · 2026-04-30 · via Hacker News: Show HN
Notesync.md icon

Notesync.md is a simple notes app built for organizing quick project thoughts into folders, notes, and timeline-style entries, then keeping them synchronized across Mac, iPhone, and iPad with iCloud.

Notes are also mirrored to the local filesystem as Markdown files, making them easy to read, back up, edit, or use with project management agents and other developer workflows.

Download Notesync.md for iOS and macOS from the App Store.

Demo

Notesync.md demo video

Features

  • Organize notes into folders with emoji and accent colors
  • Switch between card and list views, with adjustable card sizes
  • Favorite folders or notes so they appear at the top of the home screen
  • Capture notes as dated entries, with autosave while typing
  • Search folders, note titles, and note contents
  • Sync across Mac, iPhone, and iPad using CloudKit
  • Mirror notes on macOS to local Markdown files

Markdown Mirror

On macOS, Notesync.md can mirror the CloudKit-backed note tree into a normal folder on disk. Folders become folders, and each note is exported as a single .md file:

<mirror root>/
  Project/
    Ideas.md
    Meeting Notes.md

This keeps notes available to local tools, scripts, editors, backup systems, and project management agents without giving up iCloud sync between Apple devices.

Storage

  • Cloud sync uses the private CloudKit container iCloud.com.linquist.notesync
  • The app keeps a local cache for fast editing and offline fallback
  • Notes are stored internally as .note packages with one Markdown file per entry
  • The macOS mirror combines each package into a single readable Markdown file

Development

  • Notesync.xcodeproj - Xcode project
  • Notesync/App - app entry point
  • Notesync/Models - shared models and preferences
  • Notesync/Services - repository, Markdown codec, CloudKit sync, and macOS mirror sync
  • Notesync/Views - browser, creation sheet, note editor, and settings UI
  • scripts/set-version.sh - updates MARKETING_VERSION and optionally CURRENT_PROJECT_VERSION
  • scripts/build-macos-dmg.sh - builds a macOS release app and packages it into a DMG
  • scripts/release-github.sh - tags the current commit and publishes the DMG to GitHub Releases

Release

Set a new marketing version and optional build number:

./scripts/set-version.sh 1.1 2

Build a local macOS DMG:

./scripts/build-macos-dmg.sh

That writes the DMG to:

dist/Notesync-<version>-macOS.dmg

Publish a GitHub release for the current commit:

./scripts/release-github.sh

Or publish a specific version tag:

./scripts/release-github.sh 1.1

For signed/notarized releases and App Store uploads, copy scripts/release.local.env.example to scripts/release.local.env and fill in your App Store Connect API key values. scripts/release.local.env is ignored by git and is loaded automatically by the release scripts.

Local builds default to unsigned DMGs. To sign for distribution:

SIGN_FOR_DISTRIBUTION=1 ./scripts/build-macos-dmg.sh

To build a signed and notarized DMG:

cp scripts/release.local.env.example scripts/release.local.env
$EDITOR scripts/release.local.env
SIGN_FOR_DISTRIBUTION=1 NOTARIZE_DMG=1 ALLOW_PROVISIONING_UPDATES=1 ./scripts/build-macos-dmg.sh

To notarize an already-built DMG:

./scripts/notarize-macos-dmg.sh dist/Notesync-1.6-macOS.dmg

The notarization helper signs the DMG first by default. Set SIGN_DMG=0 if you need to submit an already-signed DMG without replacing its signature.

To upload iOS and macOS App Store Connect builds without relying on Xcode's account session:

./scripts/upload-app-store-builds.sh

upload-app-store-builds.sh requires the App Store Connect API key values by default. It will not fall back to Xcode Accounts unless ALLOW_XCODE_ACCOUNT_AUTH=1 is set explicitly.

If Developer ID signing fails with errSecInternalComponent, update the private key's partition list:

security set-key-partition-list \
  -S apple-tool:,apple: \
  -s -t private \
  -k "<mac-login-password>" \
  /Users/kris/Library/Keychains/login.keychain-db

Keychain-based notarization is still supported if needed, but the App Store Connect API key path above is preferred because it does not depend on Xcode account login state. Store notarization credentials in your keychain with:

xcrun notarytool store-credentials notesync \
  --apple-id "<apple-id>" \
  --team-id "YYE9CDH9RT" \
  --validate

Release notes:

  • build-macos-dmg.sh uses the project’s configured Developer Team by default
  • DEVELOPER_ID_APPLICATION_IDENTITY can be set to a specific Developer ID certificate name or hash
  • release-github.sh requires a clean git working tree
  • release-github.sh defaults to signed and notarized release builds and expects App Store Connect API key variables
  • release-github.sh uses the gh CLI to create or update the GitHub release