The browser support for constraint validation is pretty good these days.
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
| javascript:(function(){document.documentElement.style = "-webkit-filter: invert(100%);";})(); |
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 $ = (selector, context = document) => [...context.querySelectorAll(selector)]; |
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 fs = require('fs'); | |
| const readline = require('readline'); | |
| const readFile = readline.createInterface({ | |
| input: fs.createReadStream('file.in'), | |
| output: fs.createWriteStream('file.out'), | |
| terminal: false | |
| }); | |
| readFile |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title>rangeslider.js - browserify test</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/rangeslider.js/2.0.2/rangeslider.min.css"> | |
| </head> | |
| <body> | |
| <input type="range"> |
- http://www.smashingmagazine.com/2012/11/writing-fast-memory-efficient-javascript/
- https://medium.com/the-javascript-collection/lets-write-fast-javascript-2b03c5575d9e
- http://ilikekillnerds.com/2015/02/stop-writing-slow-javascript/
- https://developers.google.com/speed/articles/optimizing-javascript
- https://msdn.microsoft.com/en-us/library/windows/apps/hh781219.aspx
- http://buildnewgames.com/garbage-collector-friendly-code/
- https://books.google.de/books?id=Wdi6BwAAQBAJ&printsec=frontcover&hl=de&source=gbs_ge_summary_r&cad=0#v=onepage&q&f=false
NewerOlder
