Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| Latency Comparison Numbers (~2012) | |
| ---------------------------------- | |
| L1 cache reference 0.5 ns | |
| Branch mispredict 5 ns | |
| L2 cache reference 7 ns 14x L1 cache | |
| Mutex lock/unlock 25 ns | |
| Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
| Compress 1K bytes with Zippy 3,000 ns 3 us | |
| Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
| Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
| if (!Date.prototype.toISOString) { | |
| Date.prototype.toISOString = function () { | |
| function pad(n) { return n < 10 ? '0' + n : n; } | |
| function ms(n) { return n < 10 ? '00'+ n : n < 100 ? '0' + n : n } | |
| return this.getFullYear() + '-' + | |
| pad(this.getMonth() + 1) + '-' + | |
| pad(this.getDate()) + 'T' + | |
| pad(this.getHours()) + ':' + | |
| pad(this.getMinutes()) + ':' + | |
| pad(this.getSeconds()) + '.' + |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| #!/usr/bin/env node | |
| var args = process.argv.slice(2); | |
| var input = args[0]; | |
| var isTTY = process.stdin.isTTY; | |
| var stdin = process.stdin; | |
| var stdout = process.stdout; | |
| // If no STDIN and no arguments, display usage message |
| Lesson 1 - Iterations | |
| - BinaryGap - https://codility.com/demo/results/trainingU2FQPQ-7Y4/ | |
| Lesson 2 - Arrays | |
| - OddOccurrencesInArray - https://codility.com/demo/results/trainingFN5RVT-XQ4/ | |
| - CyclicRotation - https://codility.com/demo/results/trainingSH2W5R-RP5/ | |
| Lesson 3 - Time Complexity | |
| - FrogJmp - https://codility.com/demo/results/training6KKWUD-BXJ/ | |
| - PermMissingElem - https://codility.com/demo/results/training58W4YJ-VHA/ |
An example that shows the difference between creating a JavaScript class and subclass in ES5 and ES6.
Code is clean if it can be understood easily β by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
Script tested on Windows 10 64bit.
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| "net/url" | |
| "os" | |
| "reflect" | |
| "regexp" | |
| "strconv" |