code
here?
npm install --save-dev
// LoVe Fears HAte (pseudo class order) | |
// Use: | |
// a {} generally for everything but colors, | |
// Then, apply color attributes with pseudo selectors | |
// a == a:link & a:visited (could use one or the other) | |
// a, a:link {this is a little redundant} | |
// a:focus, a:hover (always used together) |
#!/bin/bash | |
# | |
# Bash script to create a Bootable ISO from macOS Install Image from Mac App Store | |
# Version: macOS v10.13 (High Sierra) | |
# | |
# INSTRUCTIONS: | |
# - save as a text file | |
# - open terminal | |
# - on command line, enter: sh bootable_macos_highsierra.sh | |
# |
#!/bin/bash | |
# | |
# Bash script to create a Bootable ISO from macOS Install Image from Mac App Store | |
# Version: macOS v10.12 (Sierra) | |
# | |
# INSTRUCTIONS: | |
# - save as a text file | |
# - open terminal | |
# - on command line, enter: sh bootable_macos_sierra.sh | |
# |
npm install --save | |
npm install --save-dev | |
npm i -S | |
npm i -D | |
yarn add |
Thanks to Serhii Pahuta and Mike Bostock's Zoomable Sunburst
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
path { | |
stroke: #fff; | |
} | |
</style> | |
<body> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script> |
#:notebook_with_decorative_cover: Understanding Command Line Abridged from Codecademy
##List
ls -t
orders files and directories by the time they were last modified##Copy, Move, Rename & Delete##
cp
copies filesmv
moves and renames files/** | |
* Media object. (BEM style) | |
* | |
* stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/ | |
*/ | |
.media, | |
.media__body { | |
overflow:hidden; | |
_overflow:visible; |
[ | |
// { "keys": ["ctrl+d"], "command": "duplicate_line" }, | |
{ "keys": ["ctrl+shift+w"], "command": "null" }, | |
{ "keys": ["shift+f3"], "command": "find_under_expand" }, | |
// { "keys": ["j", "j"], "command": "exit_insert_mode", | |
// "context": | |
// [ | |
// { "key": "setting.command_mode", "operand": false }, | |
// { "key": "setting.is_widget", "operand": false } | |
// ] |