replacing "tag-tagname" with "tag name"
A Pen by David Cochran on CodePen.
replacing "tag-tagname" with "tag name"
A Pen by David Cochran on CodePen.
| <svg width="96" height="96"> | |
| <image xlink:href="svg.svg" src="svg.png" width="96" height="96" /> | |
| </svg> | |
| <!-- | |
| by Alexey Ten | |
| http://lynn.ru/examples/svg/en.html | |
| Exploits the way browsers render the image tag. Widely supported, including all major browsers. |
| <?php if ( !empty( $post->post_excerpt ) ) : // if the excerpt field is not empty | |
| the_excerpt(); // do the excerpt | |
| else : // if the excerpt field is empty | |
| false; // no excerpt | |
| endif; ?> | |
| <!-- see: https://wordpress.org/support/topic/if-the_excerpt-is-blank --> |
| <?php | |
| $myExcerpt = get_the_excerpt(); | |
| $tags = array("<p>", "</p>"); | |
| $myExcerpt = str_replace($tags, "", $myExcerpt); | |
| echo $myExcerpt; | |
| ?> | |
| <!-- https://wordpress.org/support/topic/remove-ltpgt-tag-from-excerpt --> |
| ## INTEREST CALCULATOR ## | |
| Lesson("Interest Calculator (Challenge)") | |
| ## The formula is A = P(1+r/n)**(n*t) | |
| ## Create each variable separate | |
| ## P = Principal, r = Rate %, n = times compounded per year, t = years | |
| ## find How much money you will have if you invest your college tuition, $100,000 into a investment account for 40 years earning 7% interest compounded yearly. | |
| ##CREATE HERE## |
| // Turns off autocompletion and smart indents | |
| // Add the following lines to your user preferences json file | |
| { | |
| "codehint.AttrHints": false, | |
| "codehint.CssPropHints": false, | |
| "codehint.SpecialCharHints": false, | |
| "codehint.TagHints": false, | |
| "codehint.UrlCodeHints": false, | |
| "closeBrackets": false, | |
| "closeTags": { "whenOpening": false, "whenClosing": false, "indentTags": [] }, |
| // Turn off autocomplete in Visual Studio Code | |
| // http://code.visualstudio.com/ | |
| // Add the following lines to user settings | |
| // OPTIONAL WORD WRAPPING | |
| // Controls if lines should wrap. The lines will wrap at min(editor.wrappingColumn, viewportWidthInColumns). | |
| "editor.wordWrap": true, | |
| // Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'. | |
| "editor.wrappingIndent": "indent", |
| { | |
| "name": "Threat Taxonomy", | |
| "children": [ | |
| { | |
| "name": "Actions of People", | |
| "children": [ | |
| { | |
| "name": "Inadvertent", | |
| "children": [ | |
| {"name": "Mistakes", "size": 1}, |
| # Install and use crypto scraper from | |
| # https://github.com/JesseVent/crypto | |
| # This script is written to be used by running the desired line(s) separately, often one line at a time | |
| # Install jessevent/crypto package in Rstudio | |
| # If you do not have devtools installed, install devtools first | |
| install.packages("devtools") | |
| # Now install jessevent/crypto | |
| devtools::install_github("jessevent/crypto") |
| # Using Mac OS X Terminal | |
| # High Sierra | |
| # August 2018 | |
| # Reveal Library folder in current user directory | |
| chflags nohidden ~/Library/ | |
| # Reveal Library folder in backup user directory | |
| chflags nohidden /Volumes/Volume_Name/Users/username/Library/ |