1
0
Fork 0
mirror of https://github.com/seejohnrun/haste-server.git synced 2024-11-01 03:21:21 +00:00
haste-server/about.md

63 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2011-11-22 14:22:37 +00:00
# Haste
2011-11-23 22:11:55 +00:00
Sharing code is a good thing, and it should be _really_ easy to do it.
A lot of times, I want to show you something I'm seeing - and that's where we
use pastebins.
2011-11-22 14:22:37 +00:00
Haste is the prettiest, easiest to use pastebin ever made.
2011-11-22 14:53:02 +00:00
2011-11-28 05:51:43 +00:00
## Basic Usage
2022-06-08 09:26:32 +00:00
Type what you want me to see, click "Save", and then copy the URL. Send that
URL to someone and they'll see what you see.
2011-11-28 05:51:43 +00:00
2011-11-29 17:05:04 +00:00
To make a new entry, click "New" (or type 'control + n')
2011-11-22 14:53:02 +00:00
## From the Console
2017-05-02 21:32:34 +00:00
Most of the time I want to show you some text, it's coming from my current
2022-06-08 09:26:32 +00:00
console session. We should make it really easy to take code from the console
and send it to people.
2011-11-22 14:53:02 +00:00
`cat something | haste` # https://hastebin.com/1238193
2011-11-22 14:53:02 +00:00
You can even take this a step further, and cut out the last step of copying the
URL with:
2011-11-22 14:53:02 +00:00
2022-06-08 09:26:32 +00:00
- osx: `cat something | haste | pbcopy`
- linux: `cat something | haste | xsel`
- windows: check out [WinHaste](https://github.com/ajryan/WinHaste)
2011-11-22 14:53:02 +00:00
After running that, the STDOUT output of `cat something` will show up at a URL
which has been conveniently copied to your clipboard.
2011-11-22 14:53:02 +00:00
That's all there is to that, and you can install it with `gem install haste`
right now.
2022-06-08 09:26:32 +00:00
- osx: you will need to have an up to date version of Xcode
- linux: you will need to have rubygems and ruby-devel installed
2011-11-22 14:53:02 +00:00
2011-11-28 05:51:43 +00:00
## Duration
2022-06-08 09:26:32 +00:00
Pastes will stay for 30 days from their last view. They may be removed earlier
2013-03-13 01:59:10 +00:00
and without notice.
2011-11-28 05:51:43 +00:00
## Privacy
While the contents of hastebin.com are not directly crawled by any search robot
2022-06-08 09:26:32 +00:00
that obeys "robots.txt", there should be no great expectation of privacy. Post
things at your own risk. Not responsible for any loss of data or removed
pastes.
2011-11-28 05:51:43 +00:00
2011-11-29 14:21:01 +00:00
## Open Source
Haste can easily be installed behind your network, and it's all open source!
2011-11-29 14:21:01 +00:00
2022-06-08 09:26:32 +00:00
- [haste-client](https://github.com/seejohnrun/haste-client)
- [haste-server](https://github.com/seejohnrun/haste-server)
2011-11-29 14:21:01 +00:00
2011-11-22 14:53:02 +00:00
## Author
2011-11-23 22:11:55 +00:00
Code by John Crepezzi <john.crepezzi@gmail.com>
2011-11-28 15:35:08 +00:00
Key Design by Brian Dawson <bridawson@gmail.com>