This file contains 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
$ crystal build --release try_to_fail.cr | |
$ for i in `seq 10` ; do ./try_to_fail ; done | |
"first before" | |
Error writing datagram: Connection refused (Errno) | |
[4318973645] *Errno::new<String>:Errno +541 | |
[4319016353] *UDPSocket#send<UDPSocket, String, Socket::IPAddress>:Int64 +593 | |
[4319008402] main +10322 | |
"first before" | |
Error writing datagram: Connection refused (Errno) | |
[4415098573] *Errno::new<String>:Errno +541 |
This file contains 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
Error writing file: Connection refused (Errno) | |
[4422141682] *CallStack::unwind:Array(Pointer(Void)) +82 | |
[4422141585] *CallStack#initialize<CallStack>:Array(Pointer(Void)) +17 | |
[4422141544] *CallStack::new:CallStack +40 | |
[4422213281] *Exception@Exception#initialize<Errno, String>:CallStack +33 | |
[4422213203] *Errno#initialize<Errno, String>:CallStack +115 | |
[4422213060] *Errno::new<String>:Errno +100 | |
[4422250063] *UDPSocket@IO::FileDescriptor#unbuffered_write<UDPSocket, Slice(UInt8)>:Int32 +399 | |
[4422253517] *UDPSocket@IO::Buffered#write<UDPSocket, Slice(UInt8)>:(Nil | Int32) +109 | |
[4422253371] *UDPSocket@IO#write_utf8<UDPSocket, Slice(UInt8)>:Nil +59 |
This file contains 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
$ otto dev | |
==> Verifying created layer: consul | |
==> Verifying created layer: python2.7 | |
==> Creating local development environment with Vagrant if it doesn't exist... | |
Bringing machine 'default' up with 'virtualbox' provider... | |
The clone environment hasn't been created yet. To clone from | |
another Vagrantfile, it must already be created with `vagrant up`. | |
It doesn't need to be running. | |
Additionally, the created environment must be started with a provider |
This file contains 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
description "nginx - small, powerful, scalable web/proxy server" | |
start on filesystem and static-network-up | |
stop on runlevel [016] | |
expect fork | |
respawn | |
pre-start script | |
[ -x /usr/sbin/nginx ] || { stop; exit 0; } |
This file contains 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
Using worker: worker-linux-docker-623b439b.prod.travis-ci.org:travis-linux-4 | |
Build system information | |
Build language: crystal | |
Build group: stable | |
Build dist: precise | |
Build image provisioning date and time | |
Thu Feb 5 15:09:33 UTC 2015 | |
Operating System Details | |
Distributor ID: Ubuntu |
This file contains 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
from checks import AgentCheck | |
class LinuxEntropyCheck(AgentCheck): | |
def check(self, instance): | |
with open('/proc/sys/kernel/random/entropy_avail', 'r') as procfile: | |
data = procfile.read().strip() | |
self.gauge('system.kernel.entropy_available', int(data)) |
This file contains 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"aws-portal:ViewBilling", | |
"aws-portal:ViewUsage", | |
"autoscaling:Describe*", | |
"cloudformation:ListStacks", |
This file contains 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
Jul 11 10:16:27 wing Installer[99257]: LSExceptions [0x7f857ac0cbb0] loaded | |
Jul 11 10:16:27 wing Installer[99257]: @(#)PROGRAM:Install PROJECT:Install-1000 | |
Jul 11 10:16:27 wing Installer[99257]: @(#)PROGRAM:Installer PROJECT:Installer-852 | |
Jul 11 10:16:27 wing Installer[99257]: Hardware: MacBookAir6,1 @ 1.70 GHz (x 4), 8192 MB RAM | |
Jul 11 10:16:27 wing Installer[99257]: Running OS Build: Mac OS X 10.11 (15A215h) | |
Jul 11 10:16:27 wing Installer[99257]: Env: __CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0 | |
Jul 11 10:16:27 wing Installer[99257]: Env: TMPDIR=/var/folders/78/3jyqdny925n348fpr6wh23bc0000gn/T/ | |
Jul 11 10:16:27 wing Installer[99257]: Env: HOME=/Users/miketheman | |
Jul 11 10:16:27 wing Installer[99257]: Env: SHELL=/bin/bash | |
Jul 11 10:16:27 wing Installer[99257]: Env: SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.C1W3TcCVzf/Listeners |
This file contains 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
± |miketheman/specs {1} ?:3 ✗| ∴ → bundle exec lita | |
[2015-07-01 10:59:24 UTC] DEBUG: Loading aliases | |
Type "exit" or "quit" to end the session. | |
Lita > lita help | |
[2015-07-01 10:59:30 UTC] DEBUG: Dispatching message to Lita::Handlers::Help#help. | |
Lita: help - Lists help information for terms and command the robot will respond to. | |
Lita: help COMMAND - Lists help information for terms or commands that begin with COMMAND. | |
Lita: info - Replies with the current version of Lita. | |
Lita: users find SEARCH_TERM - Find a Lita user by ID, name, or mention name. | |
Lita: alias add NAME COMMAND - Alias for sending COMMAND when NAME typed |
This file contains 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
#!/usr/bin/env ruby | |
require 'aws-sdk' | |
INVALID_ENCODINGS = %w(ANSI_X3.4-1968 UTF-8) | |
bucket = Aws::S3::Bucket.new( | |
region: 'us-east-1', | |
name: 'www.mysite.com' | |
) |