Skip to content

Instantly share code, notes, and snippets.

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

Greg Herbowicz herbowicz

🏠
Working from home
View GitHub Profile
@herbowicz
herbowicz / gist:cccfdcdce3bb9e77bf1c551fd405ed17
Created June 15, 2019 09:19
new-project starter (index.html, css/style.css, js/script.js)
mkdir new-project && cd new-project && touch index.html && mkdir css && cd css && touch style.css && cd .. && mkdir js && cd js && touch script.js && cd .. && code .
@herbowicz
herbowicz / .env
Created July 7, 2019 07:02
social logins client ids and secret key
FACEBOOK_CLIENT_ID=
FACEBOOK_CLIENT_SECRET=
FACEBOOK_CALLBACK_URL=
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
GITHUB_CALLBACK_URL=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=

Keybase proof

I hereby claim:

  • I am herbowicz on github.
  • I am herbowicz (https://keybase.io/herbowicz) on keybase.
  • I have a public key whose fingerprint is 903D B494 4011 C05C FC99 98AA 2556 C437 30C4 3BDC

To claim this, I am signing this object:

@herbowicz
herbowicz / Loading.js
Last active November 3, 2019 10:17
Three dots animated . .. ... in loop
import React from "react";
import styled from "styled-components";
import ThreeDots from "../components/ThreeDots";
const Loading = styled.p`
color: #666;
display: table-cell;
vertical-align: middle;
`;