- preheat your oven to 500F (yes it's hot, it'll roast quickly)
- cut up your broccolii into bite sized pieces, small-ish
- cover a 1/4 or 1/2 sized sheet pan with aluminum foil
- drizzle some olive oil on the pan, add broccoli and shuffle it around a bit ("tossing" the broc' in the olive oil)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User-agent: CCBot | |
Disallow: / | |
User-agent: ChatGPT-User | |
Disallow: / | |
User-agent: GPTBot | |
Disallow: / | |
User-agent: Google-Extended |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media print { | |
a::after{ | |
content: " (" attr(href) ") "; | |
} | |
} |
A vue.js component to provide "scroll to top" of page functionality. Uses font awesome svg loader for the button/icon.
Currently there's an issue with this implmementation, in that mobile Safari tap events aren't triggering the click
event as the desktop does.
This approach for its current project has been currently held in favor of vue-scroll-up
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for re-setting https when npm install is dumb and removes https | |
# explainshell: https://www.explainshell.com/explain?cmd=sed+-i+-e+%27s%2Fhttp%3A%5C%2F%5C%2F%2Fhttps%3A%5C%2F%5C%2F%2Fg%27+package-lock.json | |
sed -i -e 's/http:\/\//https:\/\//g' package-lock.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install | |
brew install nano | |
# configure | |
echo 'include "/usr/local/Cellar/nano/3.2/share/nano/*.nanorc"' > ~/.nanorc | |
# restart your shell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$brand-color: #d07922; | |
$background-color: #222426; /* a dark, off-black for the bg */ | |
$text-color: #e6e6e6; /* an off-white for the text */ | |
$grey-color-light: #565656; /* for the border-top separators */ | |
$grey-color-dark: #adadad; /* such as the site title in the header, visited */ |
A modified version of this codepen: http://codepen.io/pankajparashar/pen/towxF
Now accounts for:
- adding
z-index
property to the<progress>
element - subtracts additional
<footer>
element's height from progress calculation (in thegetMax()
method)
NewerOlder