https
- Nginx 下部署 HTTPS 与安全调优
startup news
- 听说你要做网站?
-
server { listen 80; location /site { proxy_pass http://localhost:8080; } location /blog { proxy_pass http://localhost:9090; } }
- 浏览器总是连接 80 端口 (HTTPS 除外),但是你应该知道标准的 TCP 连接监听的是一个端口(在这个例子是 80),而真正传送数据的是另外一个随机的高位端口(比如 54321)。如果每个用户都占用 80 端口传数据的话那就麻烦了。
- Response 中的
Content-Type
: 你应该发现有时候你打开一个链接会显示页面,有时候却会弹出另存为的对话框。决定这个行为的就是这个 Header,其值是一个MIME Type
。
-
- 60+ Cheatsheet Collection for Full Stack Developers
- cheatography
cheat 速查表
- RESTFUL
- HTTP下午茶
- 网页设计简史
- DNS基本概念
python
- 用tornado实现web界面爬虫
gen.coroutine 大爱
已阅
艺术细胞
leancloud
- leancloud 云代码
- 云后台
- 提供hook, 在数据存取前后执行自定义操作(比如使用mailgun发送邮件)
- 部署非常方便
javascript
- Material UI for AngularJS
- ng2048
要读完哦!
- stream-handbook
- Angular JS best coding practice – Every coder should follow
- js风格指南
计算机基础
- 所有值得一读的计算机论文
- 斯坦福haskell课程
- visuAlgo
推荐
- Structure and Interpretation of Computer Programs
- Structure and Interpretation of Computer Programs - lisp
- How to Design Programs, Second Edition