commit f26101f757e872bd9e10e590235d185f80e7d018 Author: Yash Karandikar Date: Thu May 13 15:14:57 2021 -0500 initial commit diff --git a/gemini.md b/gemini.md new file mode 100644 index 0000000..9f521ed --- /dev/null +++ b/gemini.md @@ -0,0 +1,26 @@ +tilde.karx.xyz offers gemini hosting at `gemini://tilde.karx.xyz`. + +to connect, you'll need either a [gemini client](https://gemini.circumlunar.space/clients.html) or a [gemini web proxy](https://portal.mozz.us/gemini/tilde.team/). + +tilde.karx.xyz has [the bombadillo client](https://tildegit.org/sloum/bombadillo) installed, which can do gopher as well. + +To create your own gemini capsule, accessible at `gemini://tilde.karx.xyz/~yourusername`, simply create a `public_gemini` directory in your homedir: + +```bash +mkdir public_gemini +``` + +and create an `index.gmi` file. a *super* simple example file using CGI is shown below: + +```gemtext +#!/bin/sh +printf "20 text/gemini\r\n" +printf "hello, world!\n" +``` + +you MUST include the first two lines in order for your client to parse it properly. +make sure the file is marked as executable: + +```bash +chmod +x +``` diff --git a/mosh.md b/mosh.md new file mode 100644 index 0000000..cd7da86 --- /dev/null +++ b/mosh.md @@ -0,0 +1,14 @@ +if you are experiencing high delay, or are roaming, for example on a mobile phone with data, you might benefit from using `mosh`. + +mosh (mobile shell) is like an ssh connection, but with support for reconnecting after drops in connection. +it also doesn't wait for the server to respond before displaying keystrokes, which means that you don't have to wait for 5 seconds every time you type a letter. + +please see [the mosh homepage](https://mosh.org) for installation instructions. + +to connect, simply connect as if it were an ssh server: + +```bash +mosh yourusername@tilde.karx.xyz +``` + +mosh uses SSH to connect, then starts a mosh-server and connects to it using a UDP connection.