1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
Go to file
Zack Scholl 5257fe771b Loads current text statically. Faster loading
Former-commit-id: d8982466a6736a191c38eb84a185d9f94cf6c05f [formerly 83a34868f75173681e4eef3a5f600a4c739767ac] [formerly dfa3b885a9d93a3937e58ce9a4c8bfdecf5b2023 [formerly 99eccf40235c80a755e9fd8ca714036c45dfb7cd [formerly 182389dbb1]]]
Former-commit-id: 135a25cfa4f97a3d812a9ddcd9fd26d016698742 [formerly f6c9c85696b25c06fcf5899d064d58b6eba0c0cc]
Former-commit-id: b2d7009ee9ddc1505cc07c461c55ba205756e609
Former-commit-id: 7d5842354b
2016-02-08 08:37:22 -05:00
install A 2016-02-07 16:28:02 +00:00
ssl enable TLS as option 2016-02-07 10:20:41 -08:00
static Loads current text statically. Faster loading 2016-02-08 08:37:22 -05:00
templates Loads current text statically. Faster loading 2016-02-08 08:37:22 -05:00
.gitignore Initial commit 2016-02-06 08:28:40 -05:00
db.go Loads current text statically. Faster loading 2016-02-08 08:37:22 -05:00
LICENSE Initial commit 2016-02-06 08:28:40 -05:00
main.go Cleaned up a little 2016-02-07 18:43:34 -05:00
README.md Update README.md 2016-02-07 22:01:26 -05:00
routes.go Loads current text statically. Faster loading 2016-02-08 08:37:22 -05:00
utils.go Storing DIffs now...might not be compatible? 2016-02-07 18:31:47 -05:00
websockets.go Removed case senstivity from savin 2016-02-08 01:37:46 +00:00

Cowyo...

...is the Collection of Online Words You Open.

This tool is supposed to make sharing online notes and lists fast and easy. To jot a note, simply load the page at / and write. The url will redirect to an easy-to-remember name that you can use to reload the page at anytime, anywhere. (You can use any url you want too: /AnythingYouWant). No need to press save, it will automatically save when you stop writing.

You can also write your notes in Markdown and then render your page by adding /view. For example, the page /about is rendered at /about/view.

If you are writing a list and you want to tick off things really easily, just add /list. For example, after editing /grocery, goto /grocery/list. In this page, whatever you click on will be striked through and moved to the end. This is helpful if you write a grocery list and then want to easily delete things from it.

Math is supported using Katex.

Be cautious about writing sensitive information in the notes as anyone with the URL has access to it. For more information, or if you'd like to edit the code, use the github.

Powered by Raspberry Pi and Go Raspberry Pi Go Mascot

Install

go get github.com/schollz/cowyo

Usage

$ ./cowyo --help
cowyo: a websocket notepad
run this to start the server and then visit localhost at the port you specify
(see parameters).
Example: 'cowyo localhost'
Example: 'cowyo -p :8080 localhost'
Example: 'cowyo -db /var/lib/cowyo/db.bolt localhost'
Example: 'cowyo -p :8080 -crt ssl/server.crt -key ssl/server.key localhost'
Options:
  -crt string
        location of ssl crt
  -db string
        location of database file (default "/home/mu/cowyo/data.db")
  -httptest.serve string
        if non-empty, httptest.NewServer serves on this address and blocks
  -key string
        location of ssl key
  -p string
        port to bind (default ":12312")```