Home

site

site Github 上有哪些简单的 Python 小工具值得推荐? 有哪些你看了以后大呼过瘾的编程书? 记忆力下降特别厉害怎么办? Mac上有什么实用的必备软件? 有哪些书籍你看了感觉天灵盖打开了? 你读过最冷门,但「含金量极高」的书是什么? 哪本计算机书籍,让你有了醍醐灌顶突然开悟的感觉? 在哪里能够找到国外优秀大学的计算机公开课? Reference

Read more

VPS

VPS Refrence Compare The Best Virtual Private Servers (VPS Hosting)

Read more

Django Deploy

Django Deploy Reference How to deploy Django Django Tutorial Part 11: Deploying Django to production

Read more

HTML/CSS Render engine

HTML/CSS Render engine 查看元素边界 <!-- 控制台运行 --> [].forEach.call($$("*"),function(a){ a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16) }) 查看鼠标点击坐标 element.addEventListener("mousedown", function (e) { <!-- let bounds = document.getElementById("graph").getBoundingClientRect(); --> let bounds = pare...

Read more

回车与换行

回车与换行 \r = CR (Carriage Return) → Used as a new line character in Mac OS before X \n = LF (Line Feed) → Used as a new line character in Unix/Mac OS X \r\n = CR + LF → Used as a new line character in Windows 在vim中, \n是匹配行结束, \r是匹配回车符. 插入中, \n是插入null字符(^@), \r是插入 回车CR. 所以要把字符替换成换行, 需要%s/a/\r/g 打开特殊字段匹配(可以匹配^@之类), :set magic ...

Read more

Web Test

Web Test 不同视角: 用户视角 开发人员视角 运维人员视角 测试指标: 响应时间 并发数 吞吐量 性能测试: 性能测试 负载测试 压力测试 稳定性测试 安全渗透 Tools Artillery Bees with Machine Guns Fiddler Flood Element Fortio Gatling JMeter K6 Locust Siege Taurus The Grinder Tsung nGrinder puppeteer-webperf vegeta Locust locustio/locust Locust Docume...

Read more