summary refs log tree commit diff stats
path: root/posts
diff options
context:
space:
mode:
authorFulton Browne <git@fulton.software>2021-05-28 16:21:08 +0000
committerFulton Browne <git@fulton.software>2021-05-28 16:21:08 +0000
commitfd1691e55a0923309e6ef8bfae19acfc317ef7a8 (patch)
tree4d1dec9b9faf8941549930ae8798c9f3240e7d2c /posts
parente5df662cc803235701cf594778b4599e06827a3c (diff)
downloadgemini-fd1691e55a0923309e6ef8bfae19acfc317ef7a8.tar.gz
new post
Diffstat (limited to 'posts')
-rw-r--r--posts/2021-02-24+9front+UNIX+workflow28
-rw-r--r--posts/2021-05-28+A+quick+update20
2 files changed, 48 insertions, 0 deletions
diff --git a/posts/2021-02-24+9front+UNIX+workflow b/posts/2021-02-24+9front+UNIX+workflow
new file mode 100644
index 0000000..197c1df
--- /dev/null
+++ b/posts/2021-02-24+9front+UNIX+workflow
@@ -0,0 +1,28 @@
+# 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
diff --git a/posts/2021-05-28+A+quick+update b/posts/2021-05-28+A+quick+update
new file mode 100644
index 0000000..887bd36
--- /dev/null
+++ b/posts/2021-05-28+A+quick+update
@@ -0,0 +1,20 @@
+# A quick update
+
+Hey, Just a couple of quick updates. 
+
+My website is very different, with more changes to come. Why? Well I'm trying to get college recruiters interested in me and make a better website for all you nerds out there. 
+
+As part of this, my blog is now on the "big web". to do this I made a quick gemtext to html awk script.
+=> https://fulton.software/git/g9srv/HEAD/gemtohtm/f.html the awk script
+This was my first real use of awk, I quite enjoyed using it.
+
+In other news this server now mirrors 9front and seeds the 9front torrents
+=> http://fulton.software/9front
+
+I also saw this Wired article about a week back
+=> https://www.wired.com/story/the-full-story-of-the-stunning-rsa-hack-can-finally-be-told/ Wired article
+
+I really enjoyed it, you probably will too.
+
+--
+Fulton
a> 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382