diff --git a/pubsub/html/marketing.page.tmpl b/pubsub/html/marketing.page.tmpl index 3c5dd6b0..30d700a4 100644 --- a/pubsub/html/marketing.page.tmpl +++ b/pubsub/html/marketing.page.tmpl @@ -1,9 +1,9 @@ {{template "base" .}} -{{define "title"}}pipe: pubsub using ssh{{end}} +{{define "title"}}pipe: authenticated pubsub over ssh{{end}} {{define "meta"}} - + @@ -46,7 +46,7 @@
  • Public pubsub by topic (opt-in)
  • Multicast (many pubs to many subs)
  • Bidirectional (e.g. chat)
  • -
  • Configurable blocking characteristics for pubs
  • +
  • Configurable blocking characteristics for pub
  • Configurable timeout for pub
  • Paradigms for connecting to a topic:
      @@ -62,6 +62,7 @@

      A basic API

      +

      Pipe some data into our ssh app and we will send it to anyone listening.

      ssh {{.Site.Domain}} sub mykey
      echo "hello world!" | ssh {{.Site.Domain}} pub mykey
      @@ -81,12 +82,14 @@

      Simple desktop notifications

      +

      Want to quickly receive a notification when a job is done? It can be as simple as:

      ssh {{.Site.Domain}} sub notify; notify-send "job done!"
      ./longjob.sh; ssh {{.Site.Domain}} pub notify -e

      File sharing

      +

      Sometimes you need data exfiltration and all you have is SSH:

      cat doc.md | ssh {{.Site.Domain}} pub thedoc
      ssh {{.Site.Domain}} sub thedoc > ./important.md