I hereby claim:
- I am cdock1029 on github.
- I am cdock (https://keybase.io/cdock) on keybase.
- I have a public key ASAAVCp4n9wyQWhCUU2jLaATS2ZH_MNei7XxSgVom_X8Qwo
To claim this, I am signing this object:
| <link rel="import" href="../core-pages/core-pages.html"> | |
| <link rel="import" href="../core-scaffold/core-scaffold.html"> | |
| <link rel="import" href="../core-header-panel/core-header-panel.html"> | |
| <link rel="import" href="../core-menu/core-menu.html"> | |
| <link rel="import" href="../core-item/core-item.html"> | |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-menu/core-submenu.html"> | |
| <polymer-element name="my-element"> |
| const app = require('express')(); | |
| // define your routes, etc ... | |
| exports.route = functions.https.onRequest((req, res) => { | |
| // https://some-firebase-app-id.cloudfunctions.net/route | |
| // without trailing "/" will have req.path = null, req.url = null | |
| // which won't match to your app.get('/', ...) route | |
| background: linear-gradient(270deg, #f50029, #460098, #460098); | |
| background-size: 600% 600%; | |
| -webkit-animation: AnimationName 30s ease infinite; | |
| -moz-animation: AnimationName 30s ease infinite; | |
| -o-animation: AnimationName 30s ease infinite; | |
| animation: AnimationName 30s ease infinite; | |
| @-webkit-keyframes AnimationName { | |
| 0%{background-position:0% 50%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 50%} |
I hereby claim:
To claim this, I am signing this object:
| export default (config, env, helpers) => { | |
| config.node = {process: 'mock'} | |
| const {rule} = helpers.getLoadersByName(config, 'babel-loader')[0] | |
| rule.options.plugins.splice(3, 0, 'styled-jsx/babel') | |
| rule.options.plugins.splice(5, 0, 'styled-jsx/babel') | |
| // console.log(JSON.stringify(rule.options.plugins, null, 2)) | |
| } |
| div, span { | |
| box-sizing: border-box; | |
| position: relative; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: stretch; | |
| flex-shrink: 0; | |
| align-content: flex-start; |
| import { app, User } from 'firebase/app' | |
| import React from 'react' | |
| interface AuthContext { | |
| hasLoaded: boolean | |
| user: User | null | |
| claims?: any | |
| logOut?: () => Promise<any> | |
| logIn?: (email: string, password: string) => void | |
| error?: string |
| { | |
| "name": "sqip-cache-tryout", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "keywords": [], | |
| "author": "stefan judis <[email protected]>", |
| apiVersion: batch/v1beta1 | |
| kind: CronJob | |
| metadata: | |
| name: monthly-late-fee-rent | |
| spec: | |
| schedule: "0 6 1 * *" | |
| jobTemplate: | |
| spec: | |
| template: | |
| spec: |