💾 Archived View for gemigraph.rijndael.cc captured on 2023-01-29 at 15:20:09. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-03-01)

-=-=-=-=-=-=-

What's this?

This is page host for Gemini, like telegra.ph

It supports HTTP/HTML access as well, but uses only Gemtext format for writing page

How to add page?

You can open HTTP version of this site and submit a form

Alternatively, there is curl-based client

#! /bin/sh
set -euo pipefail

if [ "$#" -eq 0 ]; then
        echo "Usage: $0 <title>" >&2
        echo "Page content will be read from stdin"
        exit 1
fi

GEMIGRAPH_HOST=gemigraph.rijndael.cc

path=$(curl -X POST https://${GEMIGRAPH_HOST}/submit \
        --data-urlencode "title=$*" \
        --data-urlencode "text=$(cat)" \
        --silent --show-error)

echo "${GEMIGRAPH_HOST}${path}"