<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Fatih Kurt</title>
    <description>The latest articles on Forem by Fatih Kurt (@fatihkurtl).</description>
    <link>https://forem.com/fatihkurtl</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1183970%2F788c275f-051d-4433-93be-62e7a16bd3a6.jpeg</url>
      <title>Forem: Fatih Kurt</title>
      <link>https://forem.com/fatihkurtl</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/fatihkurtl"/>
    <language>en</language>
    <item>
      <title>Why I Built My Own Mobile SSH Client (And Why You Should Care About Your Keys)</title>
      <dc:creator>Fatih Kurt</dc:creator>
      <pubDate>Mon, 09 Mar 2026 06:46:23 +0000</pubDate>
      <link>https://forem.com/fatihkurtl/why-i-built-my-own-mobile-ssh-client-and-why-you-should-care-about-your-keys-4n0b</link>
      <guid>https://forem.com/fatihkurtl/why-i-built-my-own-mobile-ssh-client-and-why-you-should-care-about-your-keys-4n0b</guid>
      <description>&lt;p&gt;Let’s be real: managing a production VPS from a smartphone is usually a nightmare.&lt;/p&gt;

&lt;p&gt;A few weeks ago, I had a runaway Docker container eat up all the RAM on a client’s server at 2 AM. By the time I got to my laptop, the damage was done. I tried using some of the "big" mobile SSH apps, but they all had the same problems:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;They felt like they were designed in 2012.&lt;/li&gt;
&lt;li&gt;They were bloated with features I didn't need.&lt;/li&gt;
&lt;li&gt;The biggest red flag: They wanted to sync my private SSH keys and server IPs to their cloud.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;As a developer, handing over my "keys to the kingdom" to a third-party cloud never sat right with me. So, I decided to build ServerGlance.&lt;/p&gt;

&lt;h2&gt;
  
  
  The "No-Cloud" Architecture
&lt;/h2&gt;

&lt;p&gt;My first rule was simple: No credentials ever leave the device. Period.&lt;br&gt;
I used flutter_secure_storage for local AES-256 encryption. When you connect to your server, the iPhone talks directly to the VPS via SSH. No middleman, no telemetry, no "syncing" to my servers.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs3071ij8aapex2h7ioiu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs3071ij8aapex2h7ioiu.png" alt=" " width="800" height="1739"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Solving the Keyboard Agony
&lt;/h2&gt;

&lt;p&gt;Using a terminal on a touchscreen is painful because standard keyboards lack Esc, Tab, Ctrl, and arrow keys. I built a custom keyboard accessory row and "Quick Actions" so I could run htop or df -h with a single tap.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8b3whrac4ggug6z7aj9o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8b3whrac4ggug6z7aj9o.png" alt=" " width="800" height="1739"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Docker Visibility at a Glance
&lt;/h2&gt;

&lt;p&gt;Instead of just being a terminal, I wanted to see my containers without needing a full SSH session. I implemented a view that surfaces your Docker containers directly on the dashboard. At a glance, I can see which containers are running, which have exited, and which image versions are live—all without typing a single command.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0js0nkyjwdqwzirpsk2v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0js0nkyjwdqwzirpsk2v.png" alt=" " width="800" height="1739"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Who is this for?
&lt;/h2&gt;

&lt;p&gt;If you manage a handful of VPS instances (Hetzner, DigitalOcean, AWS) and you actually care about where your private keys are stored, give it a look. It’s built by a developer who got paged one too many times.&lt;/p&gt;

&lt;p&gt;I’m looking for feedback from fellow SysAdmins and DevOps engineers. What’s the one feature that would make you actually leave your laptop closed during a minor server crisis?&lt;/p&gt;

&lt;p&gt;Links:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;App Store: &lt;a href="https://apps.apple.com/us/app/serverglance-ssh-monitor/id6758614736" rel="noopener noreferrer"&gt;https://apps.apple.com/us/app/serverglance-ssh-monitor/id6758614736&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Website: &lt;a href="https://serverglance.fktyazilim.com/" rel="noopener noreferrer"&gt;https://serverglance.fktyazilim.com/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>productivity</category>
      <category>devops</category>
      <category>sysadmin</category>
      <category>ios</category>
    </item>
  </channel>
</rss>
