Skip to content

Instantly share code, notes, and snippets.

View feiwen8772's full-sized avatar

愚人码头 feiwen8772

View GitHub Profile
@feiwen8772
feiwen8772 / grid-by-example-3-line-based-placement-shorthand.markdown
Created December 8, 2017 08:01
Grid by Example 3: Line-based placement shorthand
@feiwen8772
feiwen8772 / app.js
Created August 9, 2017 02:45 — forked from datchley/app.js
"Getting Functional with Javascript" Blog post source files
/**
* Primary application logic for our Functional Programming blog example
* See related blog series at: http://www.datchley.name/tag/functional-programming/
* Version: 2.0
*/
// A simple, resuable comparison for '>='
function greaterThanOrEqual(a, b) {
return a >= b
}
@feiwen8772
feiwen8772 / demo.html
Last active September 27, 2016 08:36 — forked from colintoh/douchebag-vertical-align.css
不用display:table实现的垂直居中的简单方式
<div class="element">
<p>你好</p>
<p>你好</p>
</div>