- twitter.com
- tumblr.com
- ffffound.com
事故现场还原:
https://dl.dropboxusercontent.com/u/85873187/mdl-responsive1.jpg
代码:
全部使用同样的html容器总宽度也相等
- Dropbox
- 快速启动Executor
- 谷歌输入法
- 谷歌浏览器
- 使用AutoHotkey在Win下反转鼠标滚轮方向
简介:使用grunt-init工具实现以下任务的自动化
- assets文件结构的准备及
|--assets
|--css
|--js
|--img
This file contains 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
<?php | |
function Zip($source, $destination) | |
{ | |
if (!extension_loaded('zip') || !file_exists($source)) { | |
return false; | |
} | |
$zip = new ZipArchive(); | |
if (!$zip->open($destination, ZIPARCHIVE::CREATE)) { | |
return false; |