Skip to content

Instantly share code, notes, and snippets.

View llccing's full-sized avatar
🎯
Focusing

Rowan Liu llccing

🎯
Focusing
View GitHub Profile
  • 搭个博客
  • 试试docker。
  • docker实现slb
  • 前端组件化说明文档所在管理系统

斥巨资买了一台服务器,剩下的就是折腾了。

1. 配置git

2. 配置vim

3. 安装node环境

4. 安装nginx

前端开发环境梳理

一个有意思的方式,有待尝试。前端+docker

@llccing
llccing / installing-node-for-ubuntu-with-nvm.md
Created October 21, 2017 02:03 — forked from d2s/installing-node-with-nvm.md
Installing Node.js for Ubuntu with nvm
function filterDataByMonth(data) {
// 得到按时间排序的数据
var numArr = data.map(function (crtVal, idx, arr) {
return {
amount: crtVal.amount,
month: parseInt(crtVal.month)
}
}).sort(function (a, b) {
return a.month - b.month;
});