Sujet : Re: web
De : yeti (at) *nospam* tilde.institute (yeti)
Groupes : comp.miscDate : 17. Jan 2025, 05:16:19
Autres entêtes
Organisation : Democratic Order of Pirates International (DOPI)
Message-ID : <874j1yyt0s.fsf@tilde.institute>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
User-Agent : Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
not@telling.you.invalid (Computer Nerd Kev) wrote:
Curl supports Gopher. Not Gemini though.
Ncat and Netcat (check the existence of '-c' and '-T') can fetch stuff
from Gemini servers:
------------------------------------------------------------------------
$ printf 'gemini://geminiprotocol.net/\r\n' \
| ncat --ssl geminiprotocol.net 1965 | less
------------------------------------------------------------------------
------------------------------------------------------------------------
$ printf 'gemini://geminiprotocol.net/\r\n' \
| nc -c -T noverify geminiprotocol.net 1965 | less
------------------------------------------------------------------------
Wrapping that in some hands full of AWK to find links and iterate over
them should not require deep magic.
Some browsers capable of accessing gemini: can save the fetched files'
and gemini pages' source, maybe they would even be easier to integrate
in own scripts?
TL;DR: There is no showstopper.
-- Trust me, I know what I'm doing...