Our services allow users to publish content without needing to install anything. We accomplish this with the SSH tools (rsync, sftp, sshfs) you already have installed on your system.
Use our platform entirely using SSH and our TUI.
Read about what motivates us: RFC-001 radical experimentation
PAGES
Host static sites on our global platform using SSH.
TUNS
Host public web services on localhost using SSH.
PIPE
Stream data between computers using our authenticated *nix pipes using SSH.
PROSE
Serve your blog using SSH.
RSS-TO-EMAIL
Receive email digests for your RSS feeds using SSH.
PASTES
Upload code snippets using rsync, scp, and sftp.
DEPLOY A SITE WITH A SINGLE COMMAND
Upload your static site to us:
rsync --delete -rv ./public/ pgs.sh:/mysite/
Now your site is available with TLS handled for you: https://{user}-mysite.pgs.sh
We also automatically handle TLS for your custom domains!
ACCESS LOCALHOST USING HTTPS
If you have a local webserver on localhost:8000, activate an SSH tunnel to us:
ssh -R dev:80:localhost:8000 tuns.sh
Now your local dev server is available on the web: https://{user}-dev.tuns.sh
AUTHENTICATED *NIX PIPES OVER SSH
Have one terminal listen for an event and another terminal send the event:
ssh pipe.pico.sh sub mytopic
echo "Hello world!" | ssh pipe.pico.sh pub mytopic
The sub will receive "Hello world!"
PUBLISH BLOG ARTICLES WITH A SINGLE COMMAND
Create your first post, (e.g. hello-world.md):
# hello world!
This is my first blog post.
Cya!
Upload the post to us:
scp hello-world.md prose.sh:/
Congrats! You just published a blog article, accessible here: https://{user}.prose.sh/hello-world
EASILY SHARE CODE SNIPPETS
Pipe some stdout to us:
git diff | ssh pastes.sh changes.patch
And instantly share your code snippets: https://{user}.pastes.sh/changes.patch
RECEIVE EMAIL NOTIFICATIONS FOR YOUR FAVORITE RSS FEEDS
Create a blogs.txt file:
=: email rss@myemail.com
=: digest_interval 1day
=> https://pico.prose.sh/rss
=> https://erock.prose.sh/rss
Then upload it to us:
scp blogs.txt feeds.pico.sh:/
After the daily interval has been reached, you will receive an email with your feeds!
#dev #HNer #$tag_more