開発者ストーリー Developer Story

Captio式シンプルメモについて About Simple Memo

Captioを愛したエンジニアが、サービス終了後に「あの体験」を再現するために作ったアプリ。速さへの妥協なし、プライバシーへの妥協なし。 An app built by an engineer who loved Captio, created to bring back that experience after the service shut down. No compromise on speed. No compromise on privacy.

開発者ストーリー Developer Story

私がCaptioを使い始めたのは、2013年頃のことでした。当時、多くのメモアプリが「整理」や「管理」を謳う中、Captioは真逆のことを主張していました。起動したら即入力、送信ボタンを押したらメモが消える。それだけ。

この潔さに、私は完全に心を奪われました。議事録アプリでも、タスク管理ツールでも、クラウド同期が売りのノートアプリでもない。ただ「今この瞬間の思考」を自分のメールに飛ばすだけのツール。余計な摩擦がゼロだからこそ、アイデアが降ってきた瞬間に取りこぼさずに済んだのです。

「Captioがなくなったら、どうしよう」と思ったことは、一度や二度ではありませんでした。

2025年、その恐れが現実になりました。ある日、CaptioがApp Storeから消えていたのです。正式な告知もなく、代替手段の案内もなく、ただ静かに消えていた。Gmail APIへの依存が一因とも言われていますが、真相は分かりません。

その夜、私は自分で作ることにしました。Captioへのリスペクトと、あの体験への強い思いを胸に、UIKitで一から書き始めました。

I started using Captio around 2013. At a time when most memo apps were competing on "organization" and "management" features, Captio made the opposite argument: launch, type, send, done.

I was completely hooked. It wasn't a meeting notes app, a task manager, or a cloud-synced notebook. It was a tool for firing the thought in your head directly to your email, with zero friction. That frictionlessness was the whole point — no context-switching, no deciding which folder it goes in, no barrier between the idea and the capture.

"What would I do if Captio ever disappeared?" — I asked myself that more than once over the years.

In 2025, that fear became real. One day, Captio was simply gone from the App Store. No official announcement, no migration path, no farewell post. Just silence. Some speculated it was related to Gmail API dependency changes, but no one knows for certain.

That evening, I decided to build it myself. Out of respect for what Captio had been, and out of a stubborn belief that this kind of tool deserves to exist, I opened Xcode and started writing UIKit code from scratch.

ミッション Mission

最速のメモ体験を、すべての人に
The fastest memo experience, for everyone

「メモを取る」という行為は、本来こんなに重くなくていいはずです。起動して、書いて、送る。それだけで思考が前に進む。Captio式シンプルメモは、その純粋な体験を守り続けることをミッションとして掲げています。機能を増やすことよりも、今ある体験の質を上げることを優先します。 Taking a memo shouldn't require this much friction. Launch, write, send. That's all it takes for your thinking to move forward. Simple Memo's mission is to protect that pure experience — to prioritize the quality of what it already does over adding more features that dilute the core.

開発哲学 Development Philosophy

プライバシーファースト Privacy First
サーバーにメモ本文を保存しません。送信が完了した瞬間、テキストはサーバーのメモリからも消えます。端末内のOutboxキューはAES-GCMで暗号化。あなたのアイデアはあなただけのものです。 Memo text is never stored on the server. The moment a send completes, the text is gone from server memory too. The on-device Outbox queue is AES-GCM encrypted. Your ideas belong only to you.
外部依存ゼロの設計 Zero External Dependencies
Captioが抱えていたGmail API依存の問題を教訓に、送信基盤を自前で構築しました。Cloudflare WorkersとResend APIの組み合わせにより、外部サービスの仕様変更に左右されない安定した送信を実現しています。 Learning from Captio's Gmail API dependency, the send infrastructure was built in-house. By combining Cloudflare Workers with Resend API, the service remains stable and independent from third-party specification changes.
Outboxアーキテクチャ Outbox Architecture
オフライン時のメモは端末内Outboxに暗号化保存され、オンライン復帰時に自動再送されます。「送ったはずなのに届いていなかった」という体験を設計レベルで排除しました。 Memos written offline are encrypted and held in a local Outbox, then automatically sent when connectivity returns. The "I thought I sent it but it never arrived" experience is eliminated at the architecture level.
サブセカンドのパフォーマンス Sub-Second Performance
起動0.3秒、送信150ms。この数字はマーケティング上の目標ではなく、実装の制約です。UIKitを選んだのも、この速度要件をSwiftUIより確実に満たせるからです。 0.3s launch, 150ms send. These numbers are not marketing targets — they are implementation constraints. UIKit was chosen specifically because it meets these performance requirements more reliably than SwiftUI.

技術的な背景 Technical Expertise

Captio式シンプルメモは開発者 AI Ataka によって設計・実装・運営されています。10年以上のソフトウェア開発経験を持ち、iOSアプリ(UIKit)、バックエンド(Cloudflare Workers)、インフラ(DNS、CDN、メール配信)まですべて一人で担当。その過程で得た知見は、開発日誌として公開しています。 Simple Memo is designed, implemented, and operated by AI Ataka, a developer with over 10 years of software engineering experience. iOS app (UIKit), backend (Cloudflare Workers), and infrastructure (DNS, CDN, email delivery) — all handled by one person. The insights gained along the way are published as a dev log.

GitHub X (Twitter) App Store note
iOSフレームワーク
UIKit(SwiftUIではなくUIKitを選択した理由はこちら
バックエンド
Cloudflare Workers(TypeScript)
メール配信
Resend API(DKIM署名済み、SPF/DMARC設定済み)
セキュリティ
AES-GCM(端末内暗号化)、HTTPS(TLS 1.3)
オフライン
Outboxアーキテクチャ(CoreData + 暗号化 + 自動再送)
最低対応iOS
iOS 16.0以降
iOS Framework
UIKit (see why UIKit over SwiftUI)
Backend
Cloudflare Workers (TypeScript)
Email Delivery
Resend API (DKIM signed, SPF/DMARC configured)
Security
AES-GCM (on-device encryption), HTTPS (TLS 1.3)
Offline
Outbox architecture (CoreData + encryption + auto-resend)
Minimum iOS
iOS 16.0+

開発日誌 Dev Log Articles

運営情報 Company Information

運営会社
株式会社ユリカ
開発者
AI Ataka
所在地
特定商取引法に基づく表記をご確認ください
お問い合わせ
[email protected]
Company
Yurica Inc. (株式会社ユリカ)
Developer
AI Ataka
Legal Details
See Tokushoho (Commercial Transaction Act)
Contact
[email protected]
「起動・書く・送る」を、今すぐ体験する Experience "Launch, Write, Send" right now
7日間の無料トライアル付き。設定は3分。Captioユーザーなら、すぐに慣れます。 7-day free trial included. Setup in 3 minutes. If you used Captio, you'll feel right at home.
App Store からダウンロード Download on the App Store

関連ページ Related Pages