Skip to content

Instantly share code, notes, and snippets.

View z4o4z's full-sized avatar
💻

Evgeny Zaytsev z4o4z

💻
  • Voiceflow
  • Poland
  • 14:08 (UTC +01:00)
View GitHub Profile
const AWS = require('aws-sdk');
const Promise = require('bluebird');
AWS.config.setPromisesDependency(Promise);
AWS.config.update({
region: 'eu-west-1',
credentials: {
accessKeyId: 'sas',
secretAccessKey: 'sas'
@z4o4z
z4o4z / parallel-test.js
Last active March 27, 2018 13:13
Parallel test
/*
* You have to implement missing part of the application that making code below (which untouchble)
* to be compiled and executed without exceptions and assertions.
*/
class Parallel {}
/************************************************
* Please don`t change the code bellow this line *
************************************************/
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
<key>Blue Component</key>
<real>0.47843137383460999</real>
import { css, html, ReactiveElement } from 'https://unpkg.com/lit-element@3.3.3/lit-element.js?module';
class NotificationsCard extends ReactiveElement {
static get properties() {
return {
hass: {},
config: {},
};
}