summary refs log tree commit diff stats
path: root/posts
diff options
context:
space:
mode:
authorFulton Browne <git@fulton.software>2021-04-14 00:23:42 +0000
committerFulton Browne <git@fulton.software>2021-04-14 00:23:42 +0000
commit96f71709cef16fbd223972b9a820f58442392ffa (patch)
treeebecfeb48a868da8937ed47d0d48a1fcb6d1cb8e /posts
parent454c37ca27e9a9d01a26e9b0e537055dab1454fe (diff)
downloadgemini-96f71709cef16fbd223972b9a820f58442392ffa.tar.gz
rename
Diffstat (limited to 'posts')
-rw-r--r--posts/2021-2-24+9front+UNIX+workflow28
1 files changed, 0 insertions, 28 deletions
diff --git a/posts/2021-2-24+9front+UNIX+workflow b/posts/2021-2-24+9front+UNIX+workflow
deleted file mode 100644
index 197c1df..0000000
--- a/posts/2021-2-24+9front+UNIX+workflow
+++ /dev/null
@@ -1,28 +0,0 @@
-# 9front + UNIX
-The best of both worlds
-
-Like many people I use UNIX (Linux) for "real" work, but, unlike most, I use 9front all day everyday. This is thanks to the wonderful work by the 9front people's ssh system. Here are the tools I use:
-
-sshfs(1)
-vt(1)
-ssh(1)
-
-These tools give me full access to my UNIX system from my preffered os. Here's how it works:
-
-First I connect to my UNIX machine via sshfs:
-
-	sshfs fulton@tux
-
-This exposes all the files in my UNIX system's home dir under /n/ssh in my current namespace. Then I'll open my favorite editor acme with:
-
-	acme -l lib/work.dump
-
-This opens the editor with my saved work preset. Of course, I'll need to build things, so I use a vt(1) - A virtual UNIX terminal and ssh(1) to get a shell.
-
-	vt ssh fulton@tux
-
-This gives me a great lag free editing experience (the only time acme read or write from the server is saving files) in my favorite os, along with the build tools I need.
-
-To be honest, this is much better than what I had before no more juggling git commits to be able to move from desktop to laptop and no more laggy ssh vim instances.
-
-- Fulton
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200