What is texb.org?

textb.org is a real time collaborative text editor

How to i save or delete texts?

You dont have to save or delete, texts are automatically saved in real time. You can always empty the text box.

Can I pick my own name/URL/id for my text?

Yes, to choose your own url just append it to http://textb.org/t/ something like this: http://textb.org/t/your_title_here/

Can everyone read and edit my text?

Yes. If you want privacy, pick a non obvious id.

Can I see a list of all my texts?

Yes, use your browser's features, like bookmarks or history.

Can I install this on my own server?

Yes, textb.org is free software, in fact you can just clone the site with git:

    git clone https://r-w-x.org/textb.git
    cd textb
    python3 -m venv --system-site-packages venv
    ./bin/pip install -r requirements.txt

textb is using Python, Django and google-mobwrite

you need python3:

    apt-get install python3 python3-venv git