initial commit

This commit is contained in:
Yash Karandikar 2021-05-13 15:14:57 -05:00
commit f26101f757
2 changed files with 40 additions and 0 deletions

26
gemini.md Normal file
View File

@ -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 <file>
```

14
mosh.md Normal file
View File

@ -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.