View your Microsoft Windows Sticky Notes anywhere.
Code repositories on Github: Stickify Pusher, Stickify Server, Stickify web app.
- User account setup is ad hoc. A user's PIN and sticky notes will be wiped if the user does not "send stickies" in a certain amount of time from Sticky Pusher. This expiry period can be adjusted in the
userExpireSeconds
global variable in the code.userExpireSeconds
is currently set to 24 hours.- The expiry for a user is reset when whenever the user updates stickies through a successful POST request to
/update
.
- Install Go
- Get Stickify Server code
git clone https://github.com/ansonl/stickify-server.git
- Build
stickify-server.go
,stickify-server
will be compiled.
go build stickify-server.go
- Set
PORT
environment variable to specify port for Stickify Server to listen on.
export PORT=80 #stickify-server will listen on port 80
- Run
stickify-server
./stickify-server
Stickify Server has only been tested on Linux and OS X.