Peanut Butter - Pastebin clone

  1. Don't use this for anything important 🙃
  2. Pastes will stay up at least for a year
  3. Remember to note down your delete key


I have stuff in my clipboard

Paste it below and click the button. You will get back a paste name, delete key, and direct link:



I would like to upload a file

Go for it!  


I want to delete a paste

Name:     Key:  


You can also delete from the address bar, like this:
https://tools.sebasmonia.com/pb/Word1Word2/delete00-key0-it00-is00-aUUIDvalue0


curl usage

Upload a file using PUT, you will get back the paste name and delete key:


  curl -T some_stuff.txt https://tools.sebasmonia.com/pb
  Word1Word2
  delete00-key0-it00-is00-aUUIDvalue0
      
No file? No problem! You can use a hyphen to read from stdin instead:

  echo 'Some content' | curl -T - https://tools.sebasmonia.com/pb
      
Use your paste name to get the text back, with a quick GET:

  curl https://tools.sebasmonia.com/pb/Word1Word2
      
If you would like to delete a paste:

  curl https://tools.sebasmonia.com/pb/Word1Word2/delete00-key0-it00-is00-aUUIDvalue0
      
Someday I will add a proper DELETE method...