一、服务器硬件
1、磁盘和raid相关
1.1 dell raid操作
raid操作文档官方文档:
二、Python相关
1、django相关
django 2.2官方文档:
https://docs.djangoproject.com/zh-hans/2.2/topics/
https://developer.mozilla.org/zh-CN/docs/Learn/Server-side/Django
nginx 软waf:
https://my.oschina.net/attacker/blog/2209534
k8s日志收集方案:
https://www.cnblogs.com/Dev0ps/p/10778962.html
2、python学习:
https://www.cnblogs.com/xueweihan/p/13997806.html
https://pythonguidecn.readthedocs.io/zh/latest/writing/structure.html#id2
1.1 有编程基础:explore-python
-
项目地址:https://github.com/ethan-funny/explore-python -
在线阅读:https://funhacks.gitbooks.io/explore-python/content/
没有编程基础:Python-100-Days
-
项目地址:https://github.com/jackfrued/Python-100-Days
一、服务器硬件
1、磁盘和raid相关
1.1 dell raid操作
raid操作文档官方文档:
二、Python相关
1、django相关
django 2.2官方文档:
https://docs.djangoproject.com/zh-hans/2.2/topics/
https://developer.mozilla.org/zh-CN/docs/Learn/Server-side/Django
nginx 软waf:
https://my.oschina.net/attacker/blog/2209534
k8s日志收集方案:
https://www.cnblogs.com/Dev0ps/p/10778962.html
2、python学习:
https://www.cnblogs.com/xueweihan/p/13997806.html
https://pythonguidecn.readthedocs.io/zh/latest/writing/structure.html#id2
1.1 有编程基础:explore-python
-
项目地址:https://github.com/ethan-funny/explore-python -
在线阅读:https://funhacks.gitbooks.io/explore-python/content/
没有编程基础:Python-100-Days
-
项目地址:https://github.com/jackfrued/Python-100-Days
一、服务器硬件
1、磁盘和raid相关
1.1 dell raid操作
raid操作文档官方文档:
二、Python相关
1、django相关
django 2.2官方文档:
https://docs.djangoproject.com/zh-hans/2.2/topics/
https://developer.mozilla.org/zh-CN/docs/Learn/Server-side/Django
nginx 软waf:
https://my.oschina.net/attacker/blog/2209534
k8s日志收集方案:
https://www.cnblogs.com/Dev0ps/p/10778962.html
2、python学习:
https://www.cnblogs.com/xueweihan/p/13997806.html
https://pythonguidecn.readthedocs.io/zh/latest/writing/structure.html#id2
1.1 有编程基础:explore-python
-
项目地址:https://github.com/ethan-funny/explore-python -
在线阅读:https://funhacks.gitbooks.io/explore-python/content/
没有编程基础:Python-100-Days
-
项目地址:https://github.com/jackfrued/Python-100-Days
-
项目地址:https://github.com/realpython/python-guide -
在线阅读:https://pythonguidecn.readthedocs.io/zh/latest/
再翻烂这本秘籍:python3-cookbook
-
项目地址:https://github.com/yidao620c/python3-cookbook -
在线阅读:https://python3-cookbook.readthedocs.io/zh_CN/latest/
玩一个不过瘾:free-python-games
-
项目地址:https://github.com/grantjenks/free-python-games
三、 golang
2.1 七天用 Go 从零实现系列:7days-golang
GitHub 地址→https://github.com/geektutu/7days-golang
用 Go 分别写一个:Web 框架、分布式缓存、ORM 框架、RPC 框架的实战教程。有些东西看懂了,不一定会用,会用了也不一定能自己搞出来。所以从零写一个框架,了解其中的细节,才能算上真正懂了吧。
2.2 Go 学习之路:golang-developer-roadmap
GitHub 地址→https://github.com/Alikhll/golang-developer-roadmap
《Go 开发者路线图》是一个成为 Go 开发的学习路线。一图胜千言,选取这个项目是为了让大家能快速了解 Go 所需学习的知识点和前进的方向。
2.3 Go 高级编程:advanced-go-programming-book
《Go 语言高级编程》作为针对有一定 Go 基础的进阶书籍,内容涵盖并发、GOC 编程、Go 汇编语言、RPC 实现、Web 框架实现、分布式系统等高阶主题。该书的附录也是一大亮点,收录了 Go 有趣的代码片段、Go 常见坑。要想 Golang 玩得溜,得在 Go 高级编程下功夫 [手动狗头]
GitHub 地址→https://github.com/chai2010/advanced-go-programming-book
Part Three:是时候展示真正的技术了
3.1 星图:starcharts
GitHub 地址→https://github.com/caarlos0/starcharts
这个项目是通过可视化的方式展示 GitHub 上 star 的增长曲线,也就生成是“星图”。推荐这个项目主要是运行简单和直观的数据可视化,可以快速地感受到 Go 开源项目带来的便利。我第一次玩这个项目的时候不会 Go 语言,但是参考这个项目写一个 Python 版本的星图,所以我想已经入门 Go 的各位肯定也能看懂。
有的小伙伴可能会说我没有开源项目、我的项目都没有 star 我学这个项目没用,我想了下确实是缺少些动力。如果抛开 GitHub 的 star 元素,还有一个适用更多场景的 Go 数据可视化项目:go-echarts。来吧,感受下数据的律动。
GitHub 地址→https://github.com/go-echarts/go-echarts
3.2 来 Chat 下:gochat
GitHub 地址→https://github.com/LockGit/gochat
gochat 是纯 Go 实现的轻量级即时通讯系统。技术上各层之间通过 RPC 通讯,使用 Redis 作为消息存储与投递的载体,相对 Kafka 操作起来更加方便快捷。各层之间基于 etcd 服务发现,在扩容部署时将会方便很多。架构、目录结构清晰,文档详细。而且还提供了 Docker 一键构建,安装运行都十分方便。
3.3 给!拿去用:annie
GitHub 地址→https://github.com/iawia002/annie
Go 编写的下载快速、使用简单、程序纯净的视频下载工具。支持哔哩哔哩、YouTube 等视频网站。可作为前段时间被封禁:youtube-dl 的替代品(目前已重新上架),它真的很强大!先感受下 annie 带来的便利,可能就有兴趣去探究它的源码啦。
$ annie -c cookies.txt https://www.bilibili.com/video/av20203945/
Site: 哔哩哔哩 bilibili.com
Title: 【2018拜年祭单品】相遇day by day
Type: video
Stream:
[default] -------------------
Quality: 高清 1080P60
Size: 220.65 MiB (231363071 Bytes)
# download with: annie -f default "URL"
16.03 MiB / 220.65 MiB [==>----------------------------] 7.26% 9.65 MiB/s 19s
参考:https://www.cnblogs.com/xueweihan/p/13997806.html
原文链接:不同网址记录,转载请注明来源!