“The difference between successful people and very successful people is that very successful people say “no” to almost everything.”
— Warren Buffett
https://t.co/c6674LGZaA
Don't add any plugin for showing Tweets on page to Jekyll static website built for GitHub Pages; just copy and paste 'Embed Tweet' HTML tag to .md file!
#jekyll#githubpages#embedtweet#blogchat#blogtips
"Break out" of a parent's containing width to take the full screen of a page w/this nice utility class:
```
.full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
```