##Description Simple Dashing widget (and associated job) to display RSS feeds. Based on Iaian Mitchell's News widget.
##Dependencies nokogiri
const https = require('https'), | |
httpProxy = require('http-proxy'), | |
path = require('path'), | |
fs = require('fs'), | |
connect = require('connect'), | |
harmon = require('harmon'); | |
// Create a proxy server with custom application logic | |
const proxy = httpProxy.createProxyServer({}); |
const https = require('https'), | |
httpProxy = require('http-proxy'), | |
path = require('path'), | |
fs = require('fs'); | |
// Create a proxy server with custom application logic | |
const proxy = httpProxy.createProxyServer({}); | |
// To modify the proxy connection before data is sent, you can listen | |
// for the 'proxyReq' event. When the event is fired, you will receive |
### Keybase proof | |
I hereby claim: | |
* I am paulrbr on github. | |
* I am paulrbr (https://keybase.io/paulrbr) on keybase. | |
* I have a public key whose fingerprint is 9E07 F241 5AC4 262B 661C FA84 DE33 1B23 748D 3A27 | |
To claim this, I am signing this object: |
<div class="relative"> | |
<!-- « autocomple » n'existe pas comme attribut sur l'element <input> en HTML --> | |
<!-- Cf : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-autocomplete --> | |
<input id="js_booking_card_cvv" maxlength="4" placeholder="•••" autocomple="off" data-help="cvv" size="4" name="booking[card_cvv]" type="text"> | |
<i class="ico_info_grey info_cvv_ico js_cvv_ico" data-help="cvv"></i> | |
</div> |
require "csv" | |
gem "gares", "> 2.0.0.pre.pre" | |
require "gares" | |
parameters = { | |
:headers => true, | |
:col_sep => ';', | |
:encoding => 'UTF-8' | |
} |
'use strict'; | |
angular.module('app') | |
.filter('u2camel', function($scope){ | |
return function(msg) { | |
if (!angular.isString(msg)) { | |
return ''; | |
} else { | |
msg = msg.replace(/(\_[a-z])/g, function($1){return $1.toUpperCase().replace('_','');}); | |
msg = msg.replace(/(\-[a-z])/g, function($1){return $1.toUpperCase().replace('-','');}); |
class Dashing.Pie extends Dashing.Widget | |
@accessor 'value' | |
onData: (data) -> | |
@render(data.value) | |
render: (data) -> | |
if(!data) | |
data = @get("value") | |
if(!data) |
{ | |
"title": "Logstash Search", | |
"services": { | |
"query": { | |
"list": { | |
"0": { | |
"query": "agent:NewRelicPinger", | |
"alias": "", | |
"color": "#5195CE", | |
"id": 0, |
input { | |
file { | |
type => "rails" | |
path => "/log/development.log" | |
tags => ["development"] | |
} | |
} | |
filter { | |
if [type] == "rails" { |