Skip to content

Instantly share code, notes, and snippets.

View yutingzhao1991's full-sized avatar
🚀
Go Go Go!

愚指导 yutingzhao1991

🚀
Go Go Go!
View GitHub Profile
@yutingzhao1991
yutingzhao1991 / layout.css
Last active August 29, 2015 14:22
Flex Layout
/*******************************
Flex Layout : see https://www.polymer-project.org/0.5/docs/polymer/layout-attrs.html;
*******************************/
html /deep/ [layout][horizontal], html /deep/ [layout][vertical] {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
neocomplcache
Mock.js 是一款模拟数据生成器,旨在帮助前端攻城师独立于后端进行开发,帮助编写单元测试。 http://mockjs.com/
@yutingzhao1991
yutingzhao1991 / 开发规范
Last active August 29, 2015 14:08
web前端
JSON API:
http://jsonapi.org.cn/
@yutingzhao1991
yutingzhao1991 / gist:e42af9afee899a72feb8
Created November 1, 2014 03:11
Interesting github repository
Javascript library:
@yutingzhao1991
yutingzhao1991 / No Recursive 非递归
Last active August 29, 2015 14:08
Cartesian product 笛卡尔积 with Javascript
var test = [[1,2],[3,4,5],[7,8]]
var result = []
var count = 1
for (var i = 0 ; i < test.length ; i ++) {
count *= test[i].length
}
for (var i = 0 ; i < count ; i ++) {
result.push([])
}
@yutingzhao1991
yutingzhao1991 / gist:8622548d0516c4509bc2
Created October 20, 2014 13:41
Simple bootstrap grid system
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>row and col</title>
<style>
.row {
margin-right: -15px;
margin-left: -15px;
}
@yutingzhao1991
yutingzhao1991 / gist:8f42fee4de798e86e1aa
Last active August 29, 2015 14:07
Interesting topic
2014 10
Bootstrap how to achieve grid system.
The best way to use js module in NodeJS and Browser.
Is html single tag need end with '/' ?
NodeJS env NODE_TLS_REJECT_UNAUTHORIZED
2014 11
File Encoding