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
| function convertColorName (name) { | |
| var testEl = document.createElement('div'), | |
| rgb; | |
| testEl.style.backgroundColor = name; | |
| rgb = document.body.appendChild(testEl); | |
| rgb = window.getComputedStyle(testEl).backgroundColor; | |
| document.body.removeChild(testEl); | |
| return rgb; |
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
| # Shamelessly stolen from https://www.quora.com/As-a-programmer-what-tasks-have-you-automated-to-make-your-everyday-life-easier/answer/Cory-Engdahl?srid=tVE5 | |
| # | |
| # Usage: | |
| # python cleaner.py -f [full/path/to/folder] | |
| # arguments | |
| # -p, --path : fully qualified path to folder (required) | |
| # -d, --days : Age in days of the file to delete (optional, default is 1 day) | |
| # -e, --exclude: name of files to save (optional) | |
| # -i, --include: name of files to delete regardless of timeframe (optional) |
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
| console.clear(); | |
| /*========== | |
| #TABLEMAKER | |
| ==========*/ | |
| /* | |
| #TODOS | |
| 1. create add table Col <col> functionality | |
| 2. create ability to designate which <col> for which colgroup |
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
| const these = _itshelf = itshelf = _shelf = shelf = _itself = itself =_self = self = _me = me = _that = that = _this = this; |
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
| /** | |
| * Font sizing demonstration | |
| */ | |
| html { | |
| color: #333; | |
| font-family: Helvetica, Arial; | |
| line-height:1.618; | |
| } |
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
| /** | |
| * Font sizing demonstration | |
| */ | |
| html { | |
| color: #333; | |
| font-family: Helvetica, Arial; | |
| line-height:1.618; | |
| } |
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 TridionWindow = function () { | |
| if ($messages) {return window;} else { | |
| for (var i = 0; i<frames.length; i++) { | |
| if (frames[i].$messages) return frames[i]; | |
| } | |
| } | |
| } | |
| tridionWindow = tridionWindow(); |
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 CvsApp = function (selector) { | |
| this.el = document.querySelector(selector); | |
| this.ctx = this.el.getContext('2d'); | |
| this.shapes = []; | |
| this.Shape = function (x,y) { | |
| this.path = new Path2D(); | |
| this.coords = { x:x, y:y}; | |
| this.size = {h:'', w:''}; | |
| }; | |
| this.addShape = function (shape) { |
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
| <section> | |
| <figure class="static"> | |
| <img src="img/img1.jpg" data-imgDetect="parentClass" class="static__img"/> | |
| </figure> | |
| <figure class="static"> | |
| <img src="img/img2.jpg" data-imgDetect="selfClass" class="static__img"/> | |
| </figure> | |
| <figure class="static"> | |
| <img src="img/img3.jpg" data-imgDetect="parentClass" class="static__img"/> | |
| </figure> |
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
| /** | |
| * property order | |
| */ | |
| html{ | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; | |
| } | |
| p { | |
| background: rgba(100,100,100,.2); |