国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
| // 2018.5.11更新: 减少了swap | |
| function qSort(compare) { | |
| var swap = (p1, p2) => { | |
| var tmp = this[p1]; | |
| this[p1] = this[p2]; | |
| this[p2] = tmp; | |
| } | |
| var sortRange = (start, end) => { | |
| var midValue = this[start]; | |
| var p1 = start + 1, p2 = end - 1; |
| var names = [ | |
| /【猪猪字幕组】★4月新番 美食的俘虏Toriko 第\d*话/g, | |
| /【Dymy字幕組】【魔笛_Magi 第二季】【\d*】/g, | |
| /【Dymy字幕組】【東京暗鴉 Tokyo Ravens】【\d*】/g, | |
| /\[OPFans枫雪动漫\]\[ONE PIECE 海贼王\]\[第\d*话\]/g, | |
| /【极影字幕社】 ★物语系列/g | |
| ]; | |
| var request = new ActiveXObject("MSXML2.XmlHttp.6.0"); | |
| request.open("GET","http://bt.ktxp.com/index-1.html",false) | |
| request.send(null); |
###移动技术
根据mobileTech项目整理而成,原文地址。
####webapp实践的总结
This is a small collection of scripts showing how to use require.js. It's only one of several ways of setting up a require.js project, but it's enough to get started.
At its core, require.js is about three things:
The following files show how these are achieved.
| [ | |
| { | |
| name:"HTML5", | |
| uri:"http://www.w3.org/TR/html5/single-page.html", | |
| category:"markup" | |
| }, | |
| { | |
| name:"HTML 5.1", | |
| uri:"http://www.w3.org/TR/html51/single-page.html", | |
| category:"markup" |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |
| Drop in replace functions for setTimeout() & setInterval() that | |
| make use of requestAnimationFrame() for performance where available | |
| http://www.joelambert.co.uk | |
| Copyright 2011, Joe Lambert. | |
| Free to use under the MIT license. | |
| http://www.opensource.org/licenses/mit-license.php |