#EXTM3U #EXTINF:-1 ,360 rtp://239.186.64.204:10000 #EXTINF:-1 ,2M Monde rtp://239.186.64.194:10000 #EXTINF:-1 ,3+ rtp://239.186.64.56:10000 #EXTINF:-1 ,3+ HD rtp://239.186.68.14:10000 #EXTINF:-1 ,3sat CH
- 54.93.236.168
- 54.93.123.251
- 18.194.209.86
- 54.93.197.145
- 54.93.191.92
- 18.196.30.131
- 52.59.208.46
- 54.93.186.28
- 35.158.92.8
- 18.194.209.179
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jan 26 11:11:36 peng-minion1-dev-v2.kubernetes confd[4278]: 2016-01-26T11:11:36Z peng-minion1-dev-v2.kubernetes /opt/bin/confd[4278]: | |
ERROR 501: All the given peers are not reachable (failed to propose on members [{"message":"proxy: zero endpoints currently available"}] | |
twice [last error: Get %7B%22message%22:%22proxy:%20zero%20endpoints%20currently%20available%22%7D/v2/keys/?quorum=false&recursive=true&sorted=false: unsupported protocol scheme ""]) [0] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
file { | |
type => "apache" | |
path => [ "/data/*.log" ] | |
start_position => "beginning" | |
} | |
} | |
filter { |
- https://github.com/progrium/docker-consul is used for running Consul
- All containers expose their ports through NAT (hence all have same IP but different ports)
docker run -d -h node1 -v /mnt:/data \
-p <public-IP>:8300:8300 \
-p :8301:8301 \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Baba | |
state_machine :initial => :parked do | |
event :ignite do | |
transition :parked => :idling, :if => :ignite_car | |
transition :parked => :ignition_failed | |
end | |
event :park do | |
transition :idling => :parked |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'minitest/autorun' | |
describe 'let_test' do | |
let(:sub) { | |
puts " - lazy :sub called" | |
true | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra/base' | |
server = Thread.new do | |
class Example < Sinatra::Base | |
set :server, :thin | |
get '/' do | |
stream(:keep_open) do |out| | |
5.times { | |
out << "streaming output\n" | |
sleep 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- control frame ---------- | |
c:0028 p:---- s:0096 b:0096 l:000095 d:000095 CFUNC :initialize | |
c:0027 p:---- s:0094 b:0094 l:000093 d:000093 CFUNC :new | |
c:0026 p:0019 s:0091 b:0091 l:000090 d:000090 METHOD /var/vcap.local/dea/apps/railsfoundry-0-db3a152927b554088855f076db66b07c/app/rubygems/ruby/1.9.1/gems/thin-1.2.11/lib/thin/requ | |
c:0025 p:---- s:0088 b:0088 l:000087 d:000087 FINISH | |
c:0024 p:---- s:0086 b:0086 l:000085 d:000085 CFUNC :new | |
c:0023 p:0017 s:0083 b:0083 l:000082 d:000082 METHOD /var/vcap.local/dea/apps/railsfoundry-0-db3a152927b554088855f076db66b07c/app/rubygems/ruby/1.9.1/gems/thin-1.2.11/lib/thin/conn | |
c:0022 p:0043 s:0080 b:0080 l:000072 d:000079 BLOCK /var/vcap.local/dea/apps/railsfoundry-0-db3a152927b554088855f076db66b07c/app/rubygems/ruby/1.9.1/gems/eventmachine-0.12.10/lib/ | |
c:0021 p:---- s:0078 b:0078 l:000077 d:000077 FINISH | |
c:0020 p:---- s:0076 b:0076 l:000075 d:000075 CFUNC :instance_eval |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready -> | |
$('a.console').click -> | |
console.log($(this).text() + ' clicked') | |
return false |