- Grunt - The JavaScript Task Runner
- Bower - A package manager for the web
- Component - Component package manager for building a better web.
- AngularJS - MVC Javascript framework
- Sencha, Dojo...
Kinohled.cz za 2 týdny Vojtěch Semecký
/* | |
Has two optional options parameters: | |
- length - 8 characters by default | |
- characters - upper- and lowercase characters and numbers by default | |
*/ | |
function getRandomString(options, callback) { | |
options = options || {}; | |
options.length = options.length || 8; | |
options.characters = options.characters || '0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz'; |
function ajax (url, callback) { | |
callback = callback || function () {}; | |
var xhr = new XMLHttpRequest(); | |
xhr.onreadystatechange = function () { | |
if (xhr.readyState == 4) { | |
callback(xhr.responseText); | |
} | |
}; | |
xhr.open("GET", url, true); | |
xhr.send(); |
Kinohled.cz za 2 týdny Vojtěch Semecký
Edit mc’s ini file (either ~/.mc/ini or ~/.config/mc/ini) and look for the line [Colors]. Then, change the line base_color to this: | |
[Colors] | |
base_color=linux:normal=white,black:marked=yellow,black:input=,green:menu=black:menusel=white:menuhot=red,:menuhotsel=black,red:dfocus=white,black:dhotnormal=white,black:dhotfocus=white,black:executable=,black:directory=white,black:link=white,black:device=white,black:special=white,black:core=,black:stalelink=red,black:editnormal=white,black |
Building on this - experimenting with fake 3d svg arcs using two nested orthographic projections and cardinal line interpolation.
MobileSafari: | |
Application Cache: | |
? | |
WebSQL: | |
/var/mobile/Library/WebKit/Databases/ | |
WebStorage: | |
/var/mobile/Library/WebKit/LocalStorage/ | |
IndexedDB: | |
? |
border: no | |
height: 600 | |
license: gpl-3.0 | |
redirect: https://beta.observablehq.com/@mbostock/d3-treemap |
license: gpl-3.0 | |
redirect: https://beta.observablehq.com/@mbostock/d3-sunburst |
license: gpl-3.0 | |
height: 2910 | |
border: no | |
redirect: https://observablehq.com/@d3/d3-calendar-view |
license: gpl-3.0 | |
redirect: https://beta.observablehq.com/@mbostock/d3-bar-chart |