Strikethrough uses two tildes. ~~Scratch this~~
In order to use cmder as your integrated terminal inside VS Code, add this to your settings:
"terminal.integrated.shellArgs.windows": [
"/k",
"c:\\path_to\\cmder\\vendor\\init.bat"
],
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
| var mainNodeInner = document.createElement('div'), | |
| mainNodeInnerPlus = document.createElement('div'), | |
| mainNodeAppend = document.createElement('div'), | |
| sampleHTML = '<div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div>', | |
| testHTML = '', | |
| numSamples = 1000, | |
| before = null, | |
| after = null; | |
| //SET UP |
Visit my blog or connect with me on Twitter
git init
or
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
| Preprocess sass/scss file: | |
| sass input.scss:output.css | |
| Pre and watch (output is nested which is default): | |
| sass --watch input.scss:output.css | |
| Watch and expand css: | |
| sass --watch --style expanded input.scss:output.css |
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
| <!--Add skeleton code with SRI hashes and a link to SRI Hash Generator tool and reminder to create new has for every installation --> | |
| <!-- sri tool: https://www.srihash.org/ --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Title Page</title> |