This is a paragraph composed of separate lines with hard line endings. "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
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
10 PRINT "BBC Developer Portal" | |
20 GOTO 10 |
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
# Includes the BOFH excuse file grabbed from: | |
# http://www.cs.wisc.edu/~ballard/bofh/excuses | |
clock speed | |
solar flares | |
electromagnetic radiation from satellite debris | |
static from nylon underwear | |
static from plastic slide rules | |
global warming | |
poor power conditioning | |
static buildup |
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
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
// CloudWatch Logs to SumoLogic // | |
// https://github.com/SumoLogic/sumologic-aws-lambda/tree/master/cloudwatchlogs // | |
// // | |
// YOU MUST CREATE A SUMO LOGIC ENDPOINT CALLED SUMO_ENDPOINT AND PASTE IN ENVIRONMENTAL VARIABLES BELOW // | |
// https://help.sumologic.com/Send_Data/Sources/02Sources_for_Hosted_Collectors/HTTP_Source // | |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
// Include logStream and logGroup as json fields within the message. Required for SumoLogic AWS Lambda App |
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
zentab.js:15 993 Zentab: ERROR: TypeError: Cannot read property 'condition' of undefined | |
widgets.js:129 Uncaught TypeError: Cannot read property 'condition' of undefined | |
at Widget.weather.buildForecast (widgets.js:129) | |
at Widget.weather.refresh (widgets.js:165) | |
at Widget.weather.start (widgets.js:183) | |
at zentab.js:620 | |
at Array.forEach (<anonymous>) | |
at zentab.js:618 | |
at Object.$.zentab.getLocal (zentab.js:79) | |
at Object.$.zentab.loadWidgets (zentab.js:612) |
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
data "aws_route53_zone" "alias_zone" { | |
name = "example.com" | |
private_zone = false | |
} | |
resource "aws_acm_certificate" "certificate" { | |
domain_name = "example.com" | |
validation_method = "DNS" | |
tags = { some list of tags } | |
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
#NOMAD_IP_rsyslogd_syslog=127.0.0.1 | |
#NOMAD_JOB_NAME=haproxy-rsyslog | |
#NOMAD_ADDR_rsyslogd_syslog=127.0.0.1:56254 | |
#NOMAD_ALLOC_NAME=haproxy-rsyslog.app[0] | |
#NOMAD_PORT_rsyslogd_syslog=56254 | |
global | |
log ${NOMAD_ADDR_rsyslogd_syslog} local0 | |
maxconn 4096 | |
pidfile /var/run/haproxy.pid |
Create a new bookmark titled something like "Send to Omnifocus" or "✅", and paste this into the Location field. (Unfortunately for this purpose, but fortunately for less benevolent purposes, GFMD doesn't support javascript: links.)
javascript:q=location.href;if(document.getSelection){d='\n\n'+document.getSelection();}else{d='';};p=document.title;location.href='omnifocus:///add?name='+encodeURIComponent(p)+'¬e='+encodeURIComponent(q)+encodeURIComponent(d);
It will open the OmniFocus Quick Add dialog with the title of the link as the task name, and the URL and optionally any selected text as a Note.
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
provider "aws" { | |
region = "us-east-1" | |
} | |
resource "aws_autoscaling_group" "master-us-east-1a-masters-kops-rich-dev-ca" { | |
name = "master-us-east-1a.masters.kops.rich-dev.ca" | |
launch_configuration = "${aws_launch_configuration.master-us-east-1a-masters-kops-rich-dev-ca.id}" | |
max_size = 1 | |
min_size = 1 | |
vpc_zone_identifier = ["${aws_subnet.us-east-1a-kops-rich-dev-ca.id}"] |