BNKoPP ('-' * 6)
A Pen by Matt Jared on CodePen.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <meta name="viewport" content="width=device-width"/> | |
| <meta name=”Great Bean Chocolate” content=”A Higher State of Bean”/> | |
| <title>Great Bean Chocolate | A Higher State of Bean</title> | |
| <link rel="stylesheet" type="text/css" href="style.css"> | |
| <link href='http://fonts.googleapis.com/css?family=Andika' rel='stylesheet' type='text/css'> | |
| <link href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet"> |
BNKoPP ('-' * 6)
A Pen by Matt Jared on CodePen.
| <html> | |
| <head> | |
| <!--Scripts given to you with exercises and stuff. | |
| // Write this in...--> | |
| <script type="text/javascript"> | |
| function pageScroll() { | |
| function runner() {window.scrollBy(0, 10000)}; | |
| window.setTimeout(runner, 2) | |
| } | |
| </script> |
http://www.smashingmagazine.com/2015/04/21/react-to-the-future-with-isomorphic-apps/
http://blog.andrewray.me/reactjs-for-stupid-people/
http://blog.andrewray.me/flux-for-stupid-people/
https://scotch.io/tutorials/learning-react-getting-started-and-concepts
https://www.codementor.io/reactjs/tutorial/react-js-flux-architecture-tutorialReact
| import glob, os | |
| def rename(dir, pattern, titlePattern): | |
| for pathAndFileName in glob.iglob(pattern): | |
| print pathAndFileName | |
| os.rename(pathAndFileName, titlePattern % pathAndFileName) | |
| rename(r'~/Path/to/directory', r'*.file-type', r'newName-%s') |
| <!DOCTYPE html> | |
| <html class="no-js" 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.0" /> | |
| <title>Foundation Practice</title> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/foundation/6.2.1/foundation.min.css"> | |
| <link rel="stylesheet" type="text/css" href="styles.css"> | |
| </head> |
| if [[ "$STAGED_FILES_CSS" != "" ]]; then | |
| echo -e "\nValidating Styles:\n" | |
| # Loop through the staged stylesheets | |
| for FILE in $STAGED_FILES_CSS | |
| do | |
| "$STYLELINT" "$FILE" | |
| if [[ "$?" == 0 ]]; then | |
| echo -e "\t\033[32mStyleLint Passed: $FILE\033[0m" |