Home
极客时间文档
极客时间 markdown & pdf 文档
- 看 markdown文档,推荐: https://github.com/uaxe/geektime-docs 🌟🌟🌟
- 看 pdf文档,推荐: https://github.com/uaxe/geektime-pdfs 🌟🌟🌟
- 看 音视频,推荐: https://github.com/zkep/my-geektime 🌟🌟🌟🌟🌟
markdown 在线文档
tips: 在线文档支持 PC 浏览器,也支持移动端浏览器
本地部署
docker方式
浏览器访问:http://127.0.0.1:8091/源码方式
git clone https://github.com/uaxe/geektime-docs.git --depth 1
pip install mkdocs-material
cd geektime-docs/后端-架构/说透中台/
mkdocs serve
浏览器访问:http://127.0.0.1:8000/
本项目markdown文档全部由 mygeektime 生成
问题汇总
1. http Referer导致的裂图,图片不显示
方案1: 直接看pdf吧 geektime-pdfs
方案2: VIP用户,部署mygeektime服务,缓存对应的VIP课程
方案3: 推荐本地使用中间代理人服务,拦截请求,改写 http 请求的 Referer 的思路
package main
import (
"github.com/lqqyt2423/go-mitmproxy/proxy"
"log"
"path/filepath"
"strings"
)
type AddHeader struct {
proxy.BaseAddon
}
func (a *AddHeader) Requestheaders(f *proxy.Flow) {
log.Println("AddHeader", f.Request.URL.String())
host := f.Request.URL.Host
if strings.Contains(host, ":") {
host = host[:strings.Index(host, ":")]
}
matched, _ := filepath.Match("static001.geekbang.org", host)
if matched {
f.Request.Header.Add("Referer", f.Request.URL.String())
}
}
func main() {
opts := &proxy.Options{
Addr: ":9080",
StreamLargeBodies: 1024 * 1024 * 5,
}
p, err := proxy.NewProxy(opts)
if err != nil {
log.Fatal(err)
}
p.AddAddon(&AddHeader{})
log.Fatal(p.Start())
}