New:
| build | integration tests | npm | dependencies |
|---|---|---|---|
| /** | |
| * @author Dario Marcelino | |
| */ | |
| var defaultHintTextColor = 'gray'; | |
| var filter = function (/*Object*/ source){ | |
| var newObj = {}; | |
| for(name in source){ |
| #!/bin/bash | |
| # Simple stress test for system. If it survives this, it's probably stable. | |
| # Free software, GPL2+ | |
| # Based on http://elinux.org/RPiconfig#Overclocking | |
| # but using 'cat' instead of 'yes' since OpenELEC for Raspberry doesn't have yes | |
| CORES=1 | |
| NO_READS=1 | |
| NO_WRITES=3 |
| /** | |
| * Example on how to get cursor position programatically with JS | |
| */ | |
| var stdin = process.stdin; | |
| var firstAttempt = true; | |
| function callback() { | |
| var buf = stdin.read(); |
| var n = 5000000; | |
| var encodedRid = '%2310%3A23'; // #10:23 | |
| console.time('decodeURIComponent 1/2'); | |
| for (var i = 0; i < n; i++) { | |
| decodeURIComponent(encodedRid); | |
| } | |
| console.timeEnd('decodeURIComponent 1/2'); |
| <keymap> | |
| <global> | |
| <keyboard> | |
| <key id="61654">contextmenu</key> | |
| </keyboard> | |
| <mouse> | |
| <leftclick>Select</leftclick> | |
| <rightclick>Back</rightclick> | |
| <middleclick>noop</middleclick> | |
| <doubleclick id="0">noop</doubleclick> |
| /** | |
| * Sometimes there is the need to have optional tests that may need to run conditionally as discussed in: | |
| * http://stackoverflow.com/questions/19075792/unit-tests-for-optional-units | |
| * This solution is good but if our tests are part of a test suite that runs against many different kinds of implementations | |
| * it may be desirable to have optional tests that "pass" if they are supported and become "pending" if they fail. | |
| * This way we don't have to break the whole test suit because of an optional test breaksing and, if it passes, we'll know about it. | |
| */ | |
| function runOptionalTest(testName, failedMessage, testFn){ | |
| if(!testFn){ |
| 'use strict'; | |
| var adSenseTpl = '<div id="adsenses-ad-1"><ins class="adsbygoogle"' + | |
| 'style="display:inline-block;width:336px;height:280px"' + | |
| 'data-ad-client="ca-pub-000000000000000000"' + | |
| 'data-ad-slot="00000000000"></ins></div>'; | |
| var adsenseAd1; | |
| angular.module('MyApp') |
| var baseX = require('base-x')('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'); | |
| var b62 = require('./b62'); | |
| var buf = new Buffer([0x30, 0x17, 0xe8, 0x92, 0xe2, 0x3d, 0xff]); | |
| var str = "Hello World!"; | |
| var encodedX, encoded62, decodedX, decoded62, runs=100; | |
| // warm up | |
| console.time('base-x'); |
| 0 info it worked if it ends with ok | |
| 1 verbose cli [ 'node', '/usr/local/bin/npm', 'publish' ] | |
| 2 info using npm@2.11.0 | |
| 3 info using node@v0.10.36 | |
| 4 verbose publish [ '.' ] | |
| 5 silly cache add args [ '.', null ] | |
| 6 verbose cache add spec . | |
| 7 silly cache add parsed spec { raw: '.', | |
| 7 silly cache add scope: null, | |
| 7 silly cache add name: null, |