Skip to content

Instantly share code, notes, and snippets.

6:22 AM PDT We are investigating connectivity issues affecting some instances in a single Availability Zone in the US-EAST-1 Region.
6:54 AM PDT We can confirm that some instances are impaired and some EBS volumes are experiencing degraded performance within a single Availability Zone in the US-EAST-1 Region. Some EC2 APIs are also experiencing increased error rates and latencies. We are working to resolve the issue.
7:37 AM PDT We can confirm that some instances are impaired and some EBS volumes are experiencing degraded performance within a single Availability Zone in the US-EAST-1 Region. We are investigating increased error rates for new launches within the same Availability Zone. We are working to resolve the issue.
8:06 AM PDT We are starting to see recovery for instance impairments and degraded EBS volume performance within a single Availability Zone in the US-EAST-1 Region. We are also starting to see recovery of EC2 APIs. We continue to work towards recovery for all affected EC2 instances and EBS vol
using System;
using System.Threading.Tasks;
using FullCircleTMS.Core.Auth.Contacts;
using FullCircleTMS.Core.Config;
using FullCircleTMS.Core.CRM.Customer.Features.SalesTeam;
using FullCircleTMS.Core.Sales;
using FullCircleTMS.Core.SharedKernel.Exceptions;
using FullCircleTMS.Core.SharedKernel.Messaging;
using FullCircleTMS.Tests.Shared;
using MediatR;
this.timer = this.timerService.createTimer("ngGridRefreshTimer", 1000 * 60 * interval);
this.timerService.timer
.filter(name => name === "ngGridRefreshTimer")
.subscribe(() => this.loadData());
/*
* This code switches a relay connected to port 5 (GPIO5) on an ESP8266.
*
* It will connect to MQTT and listens on topic set_topic for 'on' and 'off' commands.
* Every 60 seconds, it will publishes te current state on state_topic
*
*
* Richard Arends
* richard@unixguru.nl
*
/*
* This code switches a relay connected to port 5 (GPIO5) on an ESP8266.
*
* It will connect to MQTT and listens on topic set_topic for 'on' and 'off' commands.
* Every 60 seconds, it will publishes te current state on state_topic
*
*
* Richard Arends
* richard@unixguru.nl
*
body {
font-family: 'Open Sans', Arial, sans-serif;
color: #FFFFFF;
margin-top: 50px;
overflow: hidden;
}
a {
color: #F2F3F4;
}
a:hover,

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@wcomartin
wcomartin / SassMeister-input.scss
Created August 20, 2015 15:26
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
.k-widget.form-control {
.form-control {
border: none;
}
& > span {
&:before {

Title


<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

URL

<The URL Structure (path only, no root url)>

Method:

@wcomartin
wcomartin / QuadKey.js
Created March 12, 2015 14:44
Convert Standard OSM Tile Url Scheme to QuadKey.
var QuadKeyLayer = L.TileLayer.extend({
getTileUrl: function (tilePoint) {
this._adjustTilePoint(tilePoint);
return L.Util.template(this._url, {
s: this._getSubdomain(tilePoint),
q: this._quadKey(tilePoint.x, tilePoint.y, this._getZoomForUrl())
});
},
_quadKey: function (x, y, z) {
var quadKey = [];