Example
// *****************************************************************************
// TYPES| { | |
| "Ansi 6 Color" : { | |
| "Red Component" : 0.16470588235294117, | |
| "Color Space" : "sRGB", | |
| "Blue Component" : 0.59607843137254901, | |
| "Green Component" : 0.63137254901960782 | |
| }, | |
| "Tags" : [ | |
| ], |
HTML, HyperText Markup Language, is a markup language used to create web pages. It essentially a language to describe the structure and content of a document.
Note: HTML is separate from CSS. CSS is a presentation language used to describe the style/appearance of the content. What font type or sizes, colors, spacing between text, etc.
| Checking for bad word combinations... | |
| There are 14 words in fruits. | |
| There are 39 words in animals. | |
| There are 19 words in colors. | |
| There are 72 total words in the pool. | |
| There are 5112 unique word combinations. | |
| #### | |
| apple mango: apple mango soda; someone with the initials A.M. with the "soda" added on to camoflauge the true meaning. | |
| variation: hawaiian apple mango. |
| // Babel ES6 | |
| // ~/Library/Application Support/Sublime Text 3/Packages/User/JavaScript.sublime-build | |
| { | |
| "cmd": ["/Users/fiore/.nvm/versions/node/v6.2.1/bin/babel-node", "$file"], | |
| "selector": "source.js" | |
| } |
| // http://codecombat.com/play/level/ring-bearer | |
| // You must escort a powerful magical ring back to town to be studied. | |
| // The goal is to escape, not fight. More ogres lurk in the surrounding mountains! | |
| // Make a circle of soldiers around the peasant! | |
| // We give you two functions to help with this: | |
| // findSoldierOffset figures out the position a soldier should stand at in relation to the peasant. | |
| // The first argument 'soldiers' should be an array of your soldiers. | |
| // The second argument 'i' is the index of the soldier (in soldiers) you want to find the position for. |
| // http://codecombat.com/play/level/the-bane-of-soldiers | |
| // Robobombs explode when they die or touch an enemy. | |
| // Split up your soldiers so that they don't all get exploded together. | |
| while (true) { | |
| var friends = this.findFriends(); | |
| var enemies = this.findEnemies(); | |
| var targets = []; | |