MyClip: Simple internet clipboard






This is hosted on Google Cloud Run, you can inspect the code your are running for security, and also don't expect data to be alive for long, as it is not durable persisted. I will only last as long as the Google Cloud Run container is not recycled.

If your are concerned about privacy you can encrypt stored text with secret:

You can also use command line to curl to store and get data:

curl -X POST https://myclip.anmaso.es/{key} --data "hello world"

If you want to post the contents of a file you can do:

curl -X POST https://myclip.anmaso.es/{key} --data-binary @filename

And to get the contents:

curl https://myclip.anmaso.es/{key}