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 / TOPIC
Last active January 7, 2016 06:17
数据可视化
财新网设计师:数据新闻可视化经验谈 - http://www.36dsj.com/archives/6173
react 深入浅出React(一):React的设计哲学 - 简单之美 http://www.infoq.com/cn/articles/react-art-of-simplity
@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
@yutingzhao1991
yutingzhao1991 / 开发规范
Last active August 29, 2015 14:08
web前端
JSON API:
http://jsonapi.org.cn/
Mock.js 是一款模拟数据生成器,旨在帮助前端攻城师独立于后端进行开发,帮助编写单元测试。 http://mockjs.com/
@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: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