Skip to content

Instantly share code, notes, and snippets.

View RecessPlayWorks's full-sized avatar
🎯
Focusing

RecessPlayWorks RecessPlayWorks

🎯
Focusing
View GitHub Profile
@RecessPlayWorks
RecessPlayWorks / gist:792b632848de7f058ade52612d08b24e
Created December 12, 2019 00:05
SOLVED: "This repository moved..." warning in CLI
https://stackoverflow.com/questions/30443333/error-with-renamed-repo-in-github-remote-this-repository-moved-please-use-th
"
git remote set-url origin [updated link url https://........git]
"
@RecessPlayWorks
RecessPlayWorks / SEO.js
Created December 5, 2019 06:53
seo components
// imported into every page (not component necessarily)
/*
....
import SEO from "../components/seo"
const NotFoundPage = () => (
<Layout>
<SEO title="404: Not found" />
....
for reference:
https://youtu.be/fnSRBRiQIU8?t=250
In uncreated git repo.
CLI:
git init
git add .
git commit -m "init commit"
/*
flex-direction: row;
flex-wrap: nowrap;
*/
4. ul { display: flex; flex-flow: ***;}
flex-flow is shorthand for flex-direction and flex-wrap
It takes two arguments, just like the individual properties.
Example: row wrap, row-reverse wrap, column nowrap, column-reverse wrap-reverse, etc
Just because the row/column is reversed does not mean the wrap has to be reversed