JSConf.eu opening song - JavaScript Will Listen - Bella Morningstar
- Plask - Dean McNamee
- Plask
| // Source: http://www.google.com/codesearch#OAMlx_jo-ck/src/third_party/WebKit/Source/WebCore/platform/ColorData.gperf&exact_package=chromium&type=cs | |
| // There's also an RGB one defined here: http://www.google.com/codesearch#OAMlx_jo-ck/src/third_party/WebKit/Source/WebCore/inspector/front-end/Color.js&exact_package=chromium&q=indianred&l=393 | |
| var CSS_NAMED_COLORS = { | |
| aliceblue: "#f0f8ff", | |
| antiquewhite: "#faebd7", | |
| aqua: "#00ffff", | |
| aquamarine: "#7fffd4", | |
| azure: "#f0ffff", | |
| beige: "#f5f5dc", |
| // Copyright 2006-2008 the V8 project authors. All rights reserved. | |
| // Redistribution and use in source and binary forms, with or without | |
| // modification, are permitted provided that the following conditions are | |
| // met: | |
| // | |
| // * Redistributions of source code must retain the above copyright | |
| // notice, this list of conditions and the following disclaimer. | |
| // * Redistributions in binary form must reproduce the above | |
| // copyright notice, this list of conditions and the following | |
| // disclaimer in the documentation and/or other materials provided |
| // Iterate over a bunch of elements. | |
| $(":header, p, li").each(function() { | |
| // The current element. | |
| var elem = $(this); | |
| // A copy of the current element that will take its place in the DOM during | |
| // the animation. | |
| var copy = elem.clone().replaceAll(elem); | |
| // The element's text content. To be animated, character-by-character. | |
| var text = copy.text(); | |
| { | |
| "passfail": false, | |
| "maxerr": 100, | |
| "browser": true, | |
| "node": true, | |
| "rhino": false, | |
| "couch": true, | |
| "wsh": true, | |
| "jquery": true, |
| # before this file is loaded, a locale should be set: | |
| # | |
| # In a browser environment, you can use: | |
| # ```<script>__locale='en';</script>``` | |
| # | |
| # In a server environment (specifically node.js): | |
| # ```global.__locale = 'en';``` | |
| # normalize in-app locale string to "en" or "de-AT" | |
| parts = @__locale.split('-') |
| Day | |
| --- | |
| %a weekday, abbreviated Tue | |
| %A weekday, full Tuesday | |
| %d day of the month (dd), zero padded 22 | |
| %e day of the month (dd) 22 | |
| %j day of year, zero padded 001-366 | |
| %u day of week starting with Monday (1), i.e. mtwtfss 2 | |
| %w day of week starting with Sunday (0), i.e. smtwtfs 2 |
| language: node_js | |
| node_js: | |
| - 0.4 | |
| - 0.6 |
| // ======================================================================== | |
| // bootstrap-builder v0.1.0 | |
| // http://twitter.github.com/bootstrap | |
| // ======================================================================== | |
| // Copyright 2011 Twitter, Inc. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // |