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
golang cookbook | |
running & packaging | |
strings | |
numbers | |
date & times | |
arrays | |
maps | |
files | |
directories | |
goroutines |
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
linux kernel | |
introduction: | |
Unix/Linux | |
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
《血酬定律》查看《血酬定律》书评和最新更新以及相关书籍推荐请到《血酬定律》专题网址http://www.xiaoshuotxt.com/renwen/2600/ | |
TXT小说天堂 http://www.xiaoshuotxt.net,最有文艺气息的文学网站,提供经典的文学名著、武侠小说、言情小说、人文社科类书籍在线阅读,所有TXT电子书手机免费下载阅读,我们提供给您的小说不求最多,但求最经典最完整 | |
自序:识破真身 | |
大$学$生@小`说"网 | |
“血酬”和“命价”这两个词,来自本书两篇文章的题目。这两篇文章排在前边,却是最后写出来的。文章谈到了生命与生存资源的交换关系,描绘了一些凭借暴力建立的规矩,提到了计算血价和命价--钱与命的兑换率--的基本思路。 | |
在中国历史上,大量资源和财富是依据杀戮和破坏能力分配的,破坏力直接打造了社会结构,直接决定着各个社会集团的社会地位和权利义务边界。明确意识到暴力的这种作用之 后,我感觉眼光一亮,过去写的许多文章似乎也可以用这条线索串起来。许多局面的形成,许多行为主体和社会集团的存在,许多生存策略和对策,都体现着这种作用。 |
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
从前到后: | |
需求评审--> PRD | |
API/DB 文档 | |
设计文档(Optional) | |
Coding | |
Self Testing | |
PM Testing | |
Deploy | |
Traffic Flow: | |
ELB-> Nginx->Server -> DataDB |
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
从前到后: | |
需求评审--> PRD | |
API/DB 文档 | |
设计文档(Optional) | |
Coding | |
Self Testing | |
PM Testing | |
Deploy | |
Traffic Flow: | |
ELB-> Nginx->Server -> DataDB |
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
// 磁盘占用 | |
df -h | |
// 根目录下具体占用,按照从大到小排序 | |
du -h / | sort -hr > tmp.txt |
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
API 撰写需要考虑的一些问题 | |
RFC 一致性 | |
Methods | |
Headers | |
Status Codes | |
安全性: | |
机密性:是否加密 | |
请求参数校验 | |
访问控制 | |
是否需要角色系统 |
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
package main | |
import ( | |
"errors" | |
"time" | |
"github.com/levigross/grequests" | |
) | |
type Method string |
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
谁为我们生产粮食? 农民 | |
谁为我们打扫街道? 环卫工人 | |
谁为我们维护交通? 交警 | |
谁为我们生产汽车? 汽车制造工人 | |
谁为我们建造房子? 建筑工人 | |
谁为我们修建桥梁? 桥梁工人 | |
谁为我们维护治安? 警察 | |
谁为我们上战场? 士兵 | |
谁为我们提供娱乐? 肤白貌美的年轻人 | |
谁为我们洗脑大众? 教育系统 |
NewerOlder