ttf,svg,woff,eot格式转换

node.js 项目 https://github.com/fontello/ttf2eot https://github.com/fontello/ttf2woff https://github.com/qdsang/ttf2svg https://github.com/fontello/svg2ttf 安装 npm install -g ttf2eot npm...

超级强大的SVG SMIL animation动画详解

更新于2017-02-24 拒有些资料显示,Chrome 45 & Opera 32版本之后 SMIL会在控制台console会有警告(虽然本人没有看到),以后有可能不支持的风险。我觉得应该是打算靠CSS来撑场子,因为很巧的是,Chrome 46...

使用hmailserver搭建邮件服务器

安装 如果是win10 务必安装.net 3.5 参见附录 下载完软件后,开始安装: 使用outlook访问 在outlook里面配置连接信息: 这里需要注意的是: 1.注意这里设置的用户名必须是完整的电子邮件地址 2....

使用 VirtualBOX 虚拟机安装 OS X 10.11 El Capitan

建议电脑要求 Windows 7或8或8.1, 32或64 bit,在 Win10 下需要使用 Win 8 相容模式启动 VirtualBOX CPU Intel Core i5 / i7,要有VT-x硬件加速 内存 4GB 以上 硬盘 500GB 以上,NTFS 格式 由于虚拟机不支...

国内优秀npm镜像推荐及使用

npm全称Node Package Manager,是node.js的模块依赖管理工具。由于npm的源在国外,所以国内用户使用起来各种不方便。下面整理出了一部分国内优秀的npm镜像资源,国内用户可以选择使用。 国内优秀npm镜像 淘宝np...

gradle和maven根据不同平台使用不同依赖

gradle: apply plugin: 'java' repositories { jcenter() } configurations { winCompile //compileOnly.extendsFrom winCompile //testCompile.extendsFrom winCompile // Assumi...

windows下gitlab8.7.13

最终进行到libc停止 安装charlock_holmes https://my.oschina.net/zengde/blog/860672 escape_utils 1.1.1 buffer.c (a->size < b->size) ? a->size : b->size 或 buffer.h #ifnd...

vs 2015错误C2338

错误 C2338 /RTCc rejects conformant code, so it isn't supported by the C++ Standard Library. Either remove this compiler option, or define _ALLOW_RTCc_IN_STL to acknowledge that you have received t...

体验异步的终极解决方案-ES7的Async/Await

阅读本文前,期待您对promise和ES6(ECMA2015)有所了解,会更容易理解。 本文以体验为主,不会深入说明,结尾有详细的文章引用。 第一个例子 Async/Await应该是目前最简单的异步方案了,首先来看个例子。 这...