Go标准库所有方法使用示例,请注意这不是Go的中文版标准库(内含传送门),持续更新example
https://github.com/zc2638/go-standard

模拟浏览器登录操作
https://studygolang.com/topics/900?fr=sidebar

微服务
https://studygolang.com/articles/13061?fr=sidebar

https://ewanvalentine.io/tag/go/

https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe

https://www.cnblogs.com/52php/p/6060104.html GO项目收藏


go-micro

https://github.com/micro-in-cn/all-in-one micro 特性全合一项目示例
https://github.com/micro-in-cn/tutorials Micro教程系列

https://www.wangtianyi.top/blog/2019/03/26/ji-yu-go-microde-wei-fu-wu-jia-gou-ben-di-shi-zhan/?utm_source=github&utm_medium=github
https://github.com/xbox1994/go-micro-example


go 权限控制库casbin
https://casbin.org/en/editor/
https://casbin.org/docs/zh-CN/installation
https://blog.51cto.com/hequan/2395179


xml生成excel

https://www.cnblogs.com/fanshuyao/p/7516212.html

https://cloud.tencent.com/developer/article/1516328

jetbrains汉化包

https://github.com/pingfangx/jetbrains-in-chinese

1
2
3
netstat -aon|findstr "8080" 
tasklist|findstr "4224"
taskkill -F -PID 4224
1
2
$ ls -i
$ find ./ -inum 139531410 -exec rm -f {} \;

javascript promise

http://www.imooc.com/article/293543

https://mengera88.github.io/2017/05/18/Promise%E5%8E%9F%E7%90%86%E8%A7%A3%E6%9E%90/

https://segmentfault.com/a/1190000007598894

https://segmentfault.com/a/1190000007032448#item-4

v-slot

https://segmentfault.com/a/1190000020232286

主从数据库

https://www.cnblogs.com/atcloud/p/10773855.html

https://segmentfault.com/a/1190000015282191

unity crack

https://www.pianshen.com/article/9411686892/

flutter

https://flutter.cn/docs/

https://flutterchina.club/

https://www.dartcn.com/

https://dart.cn/guides

https://pub.flutter-io.cn/

https://linux.cn/article-4317-1.html

https://flutter.dev/docs

http://www.flutterj.com/

http://laomengit.com/

https://www.jianshu.com/p/2bb9e155cc8c 镜像

https://github.com/alibaba-flutter/aspectd 为解决Flutter(Dart)部分基础能力缺失的问题,我们开发了支持面向切面编程的AspectD,开发者可以有效解决AOP的问题。

https://github.com/alibaba/fish-redux Fish Redux是一个基于Redux状态管理的组装式Flutter应用框架,适用于构建中型和大型应用。

https://github.com/alibaba/flutter_boost flutter_boost解决普遍存在的Native工程引入Flutter后页面管理的问题。有了它,任意项目引入Flutter都变的高效并轻而易举。

https://github.com/bozaigao/fish-redux-demo

https://github.com/liangwei0101/liang_flutter_demo

https://github.com/Yxjie/flutter-slivers-redux

https://github.com/ikimiler/fish_redux_example fish-redux和mvp 【推】

https://github.com/foolsogood/mall-by-flutter

https://github.com/wasd1234ljc/flutter_blog_recoding【推】

https://github.com/CarGuo/gsy_github_app_flutter.git【推】

Qt官方下载地址

http://download.qt.io/official_releases/

[暂时记录]

https://www.bilibili.com/read/cv6273712/ 覆盖vue3.0的最全Vue知识点
https://www.jb51.net/article/186914.htm 15分钟上手vue3.0(小结)
https://answer518.github.io/2019/10/28/the-story-of-vue3-0/ Vue.js作者:聊聊关于Vue3.0的故事
https://www.cnblogs.com/wjaaron/p/12993385.html vue3.0 上手体验
https://blog.csdn.net/weixin_44063886/article/details/110429487

https://www.imooc.com/article/310195?block_id=tuijian_wz

https://v3.cn.vuejs.org/

https://segmentfault.com/a/1190000022734935

https://github.com/roger-hiro/BlogFN/blob/master/Typescript%20%E7%9A%84%E4%B8%A5%E6%A0%BC%E6%A8%A1%E5%BC%8F%E6%9C%89%E5%A4%9A%E4%B8%A5%E6%A0%BC%EF%BC%9F.md

https://es6.ruanyifeng.com/#docs/promise

https://www.tslang.cn/docs/handbook/basic-types.html

https://ts.xcatliu.com/
https://typescript.bootcss.com/

https://zhuanlan.zhihu.com/p/161308974
https://www.icode9.com/tags-vue3-0.html
https://www.cnblogs.com/gujun1998/p/13659430.html
https://www.it610.com/article/1282792812634456064.htm
https://www.yuque.com/hugsun/vue3/composition
https://github.com/justwiner/vue3-tsx

=====

Kubernetes部署通用手册 (支持版本1.19,1.18,1.17,1.16) https://my.oschina.net/u/4364212/blog/4359594
https://www.imooc.com/article/303926

Kubernetes资源创建删除

http://docs.kubernetes.org.cn/
https://kubernetes.io/zh/docs/home/

https://github.com/k8smeetup/old_k8sdoc

https://www.cnblogs.com/wangyongqiang/articles/12564373.html

https://segmentfault.com/a/1190000018607114 Kubernetes的几种主流部署方式01-minikube部署
https://github.com/xwisen/deployk8s

curl -Lo minikube https://kubernetes.oss-cn-hangzhou.aliyuncs.com/minikube/releases/v1.13.0/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/

curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl

https://github.com/kubernetes/minikube/releases/

minikube start --image-mirror-country='cn'
--iso-url=https://kubernetes.oss-cn-hangzhou.aliyuncs.com/minikube/iso/minikube-v1.6.0.iso
--registry-mirror=https://registry.cn-hangzhou.aliyuncs.com

minikube start --image-mirror-country='cn' --image-repository='registry.cn-hangzhou.aliyuncs.com/google_containers'

https://www.cnblogs.com/mengyucloud/p/12244168.html

https://github.com/AliyunContainerService/minikube/wiki
https://www.cnblogs.com/xiangsikai/p/11412828.html
https://blog.csdn.net/qq_33562996/article/details/108865339

http://fancyerii.github.io/2020/08/28/minikube/

https://github.com/rootsongjc/kubernetes-handbook
https://github.com/opsnull/follow-me-install-kubernetes-cluster
https://github.com/dennyzhang/kubernetes-yaml-templates
https://github.com/feiskyer/kubernetes-handbook
https://github.com/lensapp/lens
https://www.cnblogs.com/xzkzzz/p/9507152.html

https://kuboard.cn/learning/

https://github.com/opsnull/follow-me-install-kubernetes-cluster

面板
https://github.com/vmware-tanzu/octant
https://github.com/k8stech/k8dash
https://github.com/goodrain/rainbond
https://github.com/kubernetes/dashboard
https://github.com/rancher/rancher
https://github.com/Qihoo360/wayne

https://github.com/eip-work/kuboard-press

harbor

https://zhuanlan.zhihu.com/p/43266412 从0到1使用Kubernetes系列——K8s入门
https://blog.csdn.net/u010948569/article/details/

https://www.bbsmax.com/A/lk5amZXN51/
https://www.zhangqiongjie.com/2540.html
https://www.pianshen.com/article/1224853776/
https://cloud.tencent.com/developer/article/1493250
https://blog.csdn.net/weixin_45691464/article/details/106326605
https://zhuanlan.zhihu.com/p/137160336
https://www.cnblogs.com/henryno12/p/12300311.html
http://wldandan.github.io/blog/2019/03/14/k8s-concepts/
https://segmentfault.com/a/1190000024511241
http://www.1024sky.cn/blog/article/5987
https://segmentfault.com/a/1190000022812745
https://blog.csdn.net/sungggm/category_10335255.html
https://www.imooc.com/article/279336
https://www.dazhuanlan.com/2020/02/28/5e58624a09ef9/