8 changed files with 128 additions and 68 deletions
@ -1,28 +1,43 @@ |
|||||||
# NoteHub Readme |
## About |
||||||
|
|
||||||
[NoteHub](http://notehub.org) is a free and hassle-free anonymous hosting for markdown pages. It can be used for publishing of markdown-formatted text. |
[NoteHub](http://notehub.org) is a free and hassle-free anonymous hosting for markdown pages. It can be used for publishing of markdown-formatted text. |
||||||
|
|
||||||
## Writing |
NoteHub was an one-app-one-language [experiment](/2012/6/16/how-notehub-is-built) and is implemented entirely in [Clojure](http://clojure.org) (ClojureScript). |
||||||
|
The [source code](https://github.com/chmllr/NoteHub) can be found on GitHub. |
||||||
|
NoteHub's persistence layer is based on the key-value store [redis](http://redis.io). |
||||||
|
Currently, NoteHub is hosted for free on [Heroku](http://heroku.com). |
||||||
|
Send your feedback and comments directly to [@chmllr](http://twitter.com/chmllr) or open an [issue](https://github.com/chmllr/NoteHub/issues) on GitHub. |
||||||
|
|
||||||
A new note can be entered and previewed at [notehub.org/new](http://notehub.org/new). |
## Why? |
||||||
|
Not every person, who occasionally wants to express some thoughts, needs a blog. |
||||||
|
Blogs are __tedious__ for writers and for readers. |
||||||
|
As readers we are not interested in every thought of other random people. |
||||||
|
As writers, we know, that everything rotates nowadays around social networks and not individual blogs. |
||||||
|
It's easier to publish something somewhere and to share the link with the audience on the community or social network of choice, than to maintain a blog trying to keep the readers interested. |
||||||
|
|
||||||
## Publishing |
__NoteHub__ should be the place, where you can publish your thoughts without hassle. |
||||||
|
|
||||||
Once a page is published, it gets accessible through an URL of the format: |
## How to Use? |
||||||
|
First, create [a new page](http://notehub.org/new) using the [Markdown syntax](http://daringfireball.net/projects/markdown/). |
||||||
|
When the note is published, you'll see a subtle panel at the bottom of the screen. |
||||||
|
From this panel you can go to a rudimentary statistics of the article, or you can export the original markdown, or copy the short url of the note. |
||||||
|
Besides this, you also can invert the color scheme by appending to the note url ([example](/2012/6/16/how-notehub-is-built?theme=dark)): |
||||||
|
|
||||||
http://notehub.org/%YEAR/%MONTH/%DAY/%TITLE |
notehub.org/.../title?theme=dark |
||||||
|
|
||||||
Hence, every date represents a name space. |
The same way you can specify a [Google Web Font](http://www.google.com/webfonts/) for headers by appending to the note url: |
||||||
|
|
||||||
## Exporting & Statistics |
notehub.org/.../title?header-font=FONT-NAME |
||||||
|
|
||||||
|
and for the text itself: |
||||||
|
|
||||||
By appending of `/stat` everyone can see a rudimentary statistics (currently, the number of note views only). |
notehub.org/.../title?header-font=FONT-NAME&text-font=FONT-NAME2 |
||||||
By appending of `/export` the original markdown content will be displayed in plain text format. |
|
||||||
|
|
||||||
## Displaying |
See an example of the font formatting ([here](/2012/6/16/how-notehub-is-built?header-font=Berkshire+Swash&text-font=Swanky+and+Moo+Moo)). |
||||||
|
|
||||||
There are some experimental features, which allow to change via the note URL the design of the note page. |
After you've specified this in the url, you can copy the corresponding short url of the article and share it. |
||||||
E.g., by appending of `&theme=dark` to the URL, the design colors will be inverted. |
|
||||||
Currently it is also possible to change the header and the article text by appending of the Google Webfont names like this: |
## Exporting & Statistics |
||||||
|
|
||||||
notehub.org/.../title?header-font=Anton&text-font=Cagliostro |
By appending of `/stat` to any note url, everyone can see a rudimentary statistics (currently, the number of note views only). |
||||||
|
By appending of `/export`, the original markdown content will be displayed in plain text format. |
||||||
|
|||||||
Loading…
Reference in new issue