Skip to content

Instantly share code, notes, and snippets.

View cdock1029's full-sized avatar
🏠
Working from home

Conor Dockry cdock1029

🏠
Working from home
View GitHub Profile

Keybase proof

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:

@cdock1029
cdock1029 / my.css
Created May 15, 2017 19:25 — forked from anonymous/my.css
CSS Gradient Animation
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%}
@cdock1029
cdock1029 / index.js
Created March 18, 2017 22:30
firebase-functions express.js path fix
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
<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">