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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
量子位
N
Netflix TechBlog - Medium
The Cloudflare Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
B
Blog
博客园_首页
博客园 - Franky
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
H
Help Net Security
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a desktop IDE around SSH sessions because nothing...
AidaIDE · 2026-05-17 · via DEV Community

AidaIDE

I'm Wes, solo developer behind AidaIDE. I launched on Hacker News today and wanted to write up the longer version here for the dev.to crowd.

The problem

My day-to-day has me SSHing into about 15 different boxes: a couple of cloud VMs, a homelab, embedded boards on my LAN. For years my setup was PuTTY for one set, MobaXterm for another, VS Code for editing, and a separate password manager for keys.

Every tool was great at one thing and bad at the others. Switching between them lost context. Dropped tunnels lost scrollback. Pasting secrets into plaintext notes felt awful. And once — a Tuesday I will not forget — I deployed the wrong build to the wrong server because two terminal windows had matching tab labels.

That weekend I started building AidaIDE.

Three pieces I want to highlight for SSH-heavy work

1. Multi-session terminal UX

Tabs and split panes are table stakes. Beyond that:

  • Broadcast-to-selected-hosts when you need to run the same command on three boxes
  • Sessions that persist across IDE restarts
  • Keyboard-first command palette to jump to prod-db-2 in two keystrokes
  • Reattaching to a dropped connection doesn't lose scrollback

2. Built-in encrypted vault

Your SSH keys, per-host passwords, and API tokens live in one encrypted store. Unlocked once at startup, then transparently used by the connection manager. Per-machine fingerprint binding means the vault can't be yanked off a stolen laptop.

No more ~/.ssh/config drift across machines. No more pasting secrets into a notes app.

3. A connection tree that scales past 20 hosts

Group by project, tag, search, multi-select, run commands across a selection. The flat-bookmark-list UX in most SSH clients falls over the moment you have 20+ hosts; this one is built for the case where you have to think for a second about which jumpbox to start from.

What it isn't

  • Not a web app. Desktop binary. Windows is the most polished today; macOS and Linux builds are catching up.
  • Not trying to be Vim or VS Code. It's its own editor with sensible defaults, not a plugin platform.
  • $7/mo or $65/yr single-user license, cancel anytime. No free tier — but you can pull the plug after a month.

Feedback I'd love

  • Where the SSH UX still feels rough compared to Termius / MobaXterm / tmux+ssh / plain iTerm
  • The "I'd switch if it did X" deal-breakers
  • Performance on connection lists past 50 hosts if you have one

Link: aidaide.app

— Wes