Skip to content

Instantly share code, notes, and snippets.

View paulRbr's full-sized avatar
🐻‍❄️
👋 Hello!

Paul B. paulRbr

🐻‍❄️
👋 Hello!
View GitHub Profile
@paulRbr
paulRbr / README.md
Last active August 29, 2015 14:10 — forked from toddq/README.md

##Description Simple Dashing widget (and associated job) to display RSS feeds. Based on Iaian Mitchell's News widget.

##Screenshot

##Dependencies nokogiri

htmlentities

@paulRbr
paulRbr / pie.coffee
Last active August 29, 2015 14:10 — forked from stevenleeg/pie.coffee
class Dashing.Pie extends Dashing.Widget
@accessor 'value'
onData: (data) ->
@render(data.value)
render: (data) ->
if(!data)
data = @get("value")
if(!data)
@paulRbr
paulRbr / logstash.conf
Last active January 17, 2022 04:22 — forked from mudge/logstash.conf
Logstash configuration to parse Rails logs in a multi-process environment. Assume your logs are prepend by logtags as seen in the RLOGTAGS pattern.
input {
file {
type => "rails"
path => "/log/development.log"
tags => ["development"]
}
}
filter {
if [type] == "rails" {
@paulRbr
paulRbr / Procfile
Last active August 29, 2015 14:05 — forked from ArnaudD/Procfile
web: node index.js
default['nginx']['version'] = "1.2.0"
default['nginx']['passenger']['version'] = "3.0.12"