Craig Wickesser
Craig Wickesser
The [redis-trib.rb](http://download.redis.io/redis-stable/src/redis-trib.rb) program makes it fairly easy to create a redis cluster. Once you have your nodes running you can issue a command like `redis-cluster create --replicas 1 $host0:$port $host1:$port...
The routes file (https://github.com/NateW/obtvse/blob/refresh/config/routes.rb#L6) has ``` post '/edit/:id', :to => 'posts#update' ``` But it should be ``` post '/posts', :to => 'posts#create' ```
I installed a fresh clone of the refresh branch and so I had no posts. When I accessed the admin section I got a "undefined method" error. Turns out the...
Using cgo with Go 1.12 fails ``` # github.com/andelf/go-curl ../src/github.com/andelf/go-curl/easy.go:408:22: identifier "_Ctype_struct_curl_slist" may conflict with identifiers generated by cgo ``` references: * https://github.com/google/gopacket/pull/589 * https://github.com/weaveworks/weave/issues/3577 * https://github.com/golang/go/issues/28721
logout
How might I logout a user?
For use cases where generally only a single message is shown, it would be helpful to be able to have the message bar auto-hide after some interval.
When a user hovers over a message in the messagebar it should show a timestamp of when the message was created. This option should be optional (e.g. not always enabled).
Add nice documentation instead of the lame README that currently (as of version 0.1) exists. Take a look at backbone.js, spine.js, [ico](https://alexyoung.github.com/ico/), etc.
Improve the packaging of the plugin such as: - minified version of the plugin JS file ..maybe other packaging stuff?
Dispatch custom events to improve the usability and hook-ability (is that a real word?) of the plugin. Events could be dispatched for some of the following actions: - show message...