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
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: {}, | |
}; | |
} |
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
<?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> |
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
/* | |
* 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 * | |
************************************************/ |
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
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' |
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
function zoom(n) { | |
const length = n % 2 ? n : n - 1; | |
const center = (length - 1) / 2; | |
if (length < 0) { | |
return ''; | |
} | |
function getSquare(square, level, symbol) { | |
if (level * 2 > length) { |
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
{"lastUpload":"2020-10-14T08:34:27.145Z","extensionVersion":"v3.4.3"} |
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
'use strict'; | |
let path = require('path'); | |
let args = require('yargs').argv; | |
let webpack = require('webpack'); | |
let HtmlWebpackPlugin = require('html-webpack-plugin'); | |
let ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
let StyleLintPlugin = require('stylelint-webpack-plugin'); | |
let ImageminPlugin = require('imagemin-webpack-plugin').default; | |
let autoprefixer = require('autoprefixer'); |
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
'use strict' | |
$(function() { | |
function Quotes() { | |
var self = this; | |
self.wrapperObj = $('.wrapper'); | |
self.newQuoteButton = $('.getNewQuote'); | |
self.socialButton = $('.social-buttons__item'); | |
self.quoteContainer = $('.quoteContainer'); | |
self.authorContainer = $('.authorContainer'); | |
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
"use strict"; | |
let path = require('path'); | |
let args = require('yargs').argv; | |
let webpack = require('webpack'); | |
let HtmlWebpackPlugin = require('html-webpack-plugin'); | |
let ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
let CopyWebpackPlugin = require('copy-webpack-plugin'); | |
const PATH_DIST = path.join(__dirname, 'dist'); |
NewerOlder