Awesome text-based services list -------------------------------- This is a list of some useful non-Gopher-based online services for pure console usage. All tested manually and working as of February 2024. # HTTP(S) services # * Get own IP address only: - curl eth0.me - curl icanhazip.com - curl ifconfig.me - curl ipecho.net/plain ... * IP information with geolocation (own if omitted) - curl ip-api.com[/ip] - curl ipinfo.io[/ip] * Text sharing: - echo "$TEXT" | curl -F 'sprunge=<-' http://sprunge.us - echo "$TEXT" | curl -H "content-type: text/plain" -d @- https://textdb.dev/api/data/$TEXT_UNIQUE_ID (see https://textdb.dev for more information) * File sharing: - curl -T $FILE https://oshi.at (see much more options at https://oshi.at/cmd page) - curl --upload-file $FILE transfer.sh/$FILENAME * URL shortening: - curl "https://is.gd/create.php?format=simple&url=$LINK" - curl -F "url=$LINK" https://shorta.link * Fiat currency conversion: - curl "https://decapi.me/misc/currency?value=$AMOUNT&from=$CUR1&to=$CUR2" * Cryptocurrency conversion/prices: - curl [$FIATTICKER.]rate.sx/$VALUE$CRYPTOTICKER (see https://rate.sx/:help for more information) - curl "https://api.coincap.io/v2/assets?search=$CRYPTOTICKER" or curl https://api.coincap.io/v2/assets/$ASSET_ID (gives information in JSON but supports more assets than rate.sx) (e.g. curl https://api.coincap.io/v2/assets/mina) or curl "https://api.coincap.io/v2/assets?ids=$ASSET1,$ASSET2,$ASSET3..." (JSON info about multiple assets with a single call) (e.g. curl "https://api.coincap.io/v2/assets?ids=monero,mina,tron") * QR encoder: - curl qrenco.de/$STRING or echo $STRING | curl -F-=\<- qrenco.de * Monitoring (see help): curl ping.gl * Weather: - curl wttr.in/${CITY}?qTF0 (see https://wttr.in/:help for more information) * METAR weather data by airport ICAO code: curl https://tgftp.nws.noaa.gov/data/observations/metar/stations/$CODE.TXT # Bare TCP services # * File/text sharing (up to 150 mb in this mode): nc oshi.at 7777 < $FILE # Telnet services # * File sharing via text-encoded ports on oshi.at: - ( sleep 1 && base64 $FILE ) | telnet oshi.at 7778 - ( sleep 1 && xxd -p $FILE | tr -d '\n' ) | telnet oshi.at 7779 * Interactive world map (with mouse support, arrow keys and a/z zoom): telnet mapscii.me (press c to switch rendering mode) # SSH services # * 2048, Snake and Freecell games: - ssh play@ascii.town The list will be updated from time to time but the availability of these services is not monitored in real time, so don't be surprised if some of them are down. --- Luxferre ---