李明梓

  • 首页
  • 文档
  • 关于我
Star
  • bigdata
    • bigdata
    • 读[数据分析实战45讲]
  • go
    • go
    • GO SDK
    • K8S
    • 读[GO语言核心36讲]
    • 读[GO语言编程]
  • JAVA
    • JAVA
    • maven-wrapper基础使用
    • 位运算基础知识
  • python
    • python基础
  • DB
    • canal-mysql binlog日志解析
    • db
    • mysql master-slave
  • ai
    • gpt-agent
  • 读书
    • <<大风歌>>王立群
    • 概览
    • 高级信息系统项目管理师
  • 工具
    • jemeter基本使用
    • sonarqube基础使用
    • 工具
  • 数学
    • math
    • 数学基础概念
  • 英语
    • english
    • 英语自然拼读
    • 英语音节划分
  • 其他
    • Hexo基础使用
    • Hugo基本使用
    • Markdown基本使用
    • Yarn相关
    • 关于调音声卡
    • 其他
    • 开源监控软件对比_zabbix
    • 开源项目索引
    • 正则表达式30分钟入门教程
  • 源码探究
其他 工具

开源项目索引

1.alibaba

1.1.https://github.com/alibaba/canal.git

canal [kə’næl],译意为水道/管道/沟渠,主要用途是基于 MySQL 数据库增量日志解析,提供增量数据订阅和消费

工作原理

  • canal 模拟 MySQL slave 的交互协议,伪装自己为 MySQL slave ,向 MySQL master 发送 dump 协议
  • MySQL master 收到 dump 请求,开始推送 binary log 给 slave (即 canal )
  • canal 解析 binary log 对象(原始为 byte 流)

谷歌的TensorFlow可以说是当今最受欢迎的开源深度学习框架,可用于各类深度学习相关的任务中。TensorFlow = Tensor + Flow,Tensor就是张量,代表N维数组;Flow即流,代表基于数据流图的计算。

2.google

2.1 https://github.com/rstudio/tensorflow

TensorFlow是目前深度学习的主流框架,其主要特性如下所述。

  • TensorFlow支持Python、JavaScript、C ++、Java、Go、C#、Julia和R等多种编程语言。
  • TensorFlow不仅拥有强大的计算集群,还可以在iOS和Android等移动平台上运行模型。
  • TensorFlow编程入门难度较大。初学者需要仔细考虑神经网络的架构,正确评估输入和输出数据的维度和数量。
  • TensorFlow使用静态计算图进行操作。也就是说,我们需要先定义图形,然后运行计算,如果我们需要对架构进行更改,则需要重新训练模型。选择这样的方法是为了提高效率,但是许多现代神经网络工具已经能够在学习过程中改进,并且不会显著降低学习速度。在这方面,TensorFlow的主要竞争对手是PyTorch。

其他深度学习项目参考

https://github.com/keras-team/keras https://github.com/BVLC/caffe https://github.com/pytorch/pytorch https://github.com/Theano/Theano https://github.com/Microsoft/CNTK https://github.com/apache/incubator-mxnet https://github.com/PaddlePaddle/Paddle/ https://github.com/eclipse/deeplearning4j https://github.com/onnx/onnx

3.linkedin

3.1 https://github.com/linkedin

onecall

4.OpenJS Foundation

https://github.com/electron 使用 JavaScript,HTML 和 CSS 构建跨平台的桌面应用程序

5.nodejs

https://github.com/coreybutler/nvm-windows/releases node版本管理器

https://registry.npmmirror.com/binary.html npm镜像

5.go microservices

4.1.Istio

项目简介:Istio是由Google、IBM和Lyft开源的微服务管理、保护和监控框架。使用istio可以很简单的创建具有负载均衡、服务间认证、监控等功能的服务网络,而不需要对服务的代码进行任何修改。

仓库地址:https://github.com/istio/istio(30.1K)

官方文档地址:https://istio.io/latest/docs/

2.Go-kit

项目简介:Go-kit 是一个 Go 语言的分布式开发包,用于开发微服务。

仓库地址:https://github.com/go-kit/kit/(22.9K)

官方文档地址:https://gokit.io/

3.Go-micro

项目简介:Micro是一个专注于简化分布式系统开发的微服务生态系统。可插拔的插件化设计,提供强大的可插拔的架构来保证基础组件可以被灵活替换。

仓库地址:GitHub - asim/go-micro: A Go microservices framework(18.1K)

官方文档地址:https://go-micro.dev/

中文文档:https://www.kancloud.cn/linimbus/go-micro/529015

4.Kratos

项目简介:哔哩哔哩(B站)开源的一套Go微服务框架,包含大量微服务相关框架及工具。

仓库地址:https://github.com/go-kratos/kratos(17.4K)

官方文档地址:https://go-kratos.dev/docs/

5.Go-zero

项目简介:go-zero 是一个集成了各种工程实践的 web 和 rpc 框架。

仓库地址:https://github.com/tal-tech/go-zero(16.9K)

6.Goa

项目简介:Goa 是一款用 Go 用于构建微服务的框架,采用独特的设计优先的方法

仓库地址:https://github.com/goadesign/goa(4.6K)

官方文档地址:https://goa.design/

7.Dubbo-go

项目简介:阿里,由Apache 软件基金会官方发布Go 语言加入 Dubbo 生态,架构是基于dubbo的extension模块和分层的代码设计,主要解决 Go 项目与 Java & Dubbo 项目的互通问题,同时也为 Go 项目提供了一种 RPC 与微服务

仓库地址:https://github.com/apache/dubbo-go(4K)

官方文档地址:https://dubbogo.github.io/dubbo-go-website/zh-cn/

8.CloudWeGo-Kitex

项目简介:字节跳动,KiteX 自 2020.04 正式发布以来,公司内部服务数量 8k+,QPS 过亿。KiteX 是字节跳动框架组研发的下一代高性能、强可扩展性的 Go RPC 框架。除具备丰富的服务治理特性外,相比其他框架还有以下特点:集成了自研的网络库 Netpoll;支持多消息协议(Thrift、Protobuf)和多交互方式(Ping-Pong、Oneway、 Streaming);提供了更加灵活可扩展的代码生成器。

仓库地址:https://github.com/cloudwego/kitex(4K)

官方文档地址:https://www.cloudwego.io/zh/docs/overview/

9.Jupiter

项目简介:斗鱼开源的一套微服务治理框架,提供丰富的后台功能,管理应用的资源、配置,应用的性能、配置等可视化。

仓库地址:https://github.com/douyu/jupiter

官方文档地址:http://jupiter.douyu.com/(3.7K)

10.Tars-go

项目简介:腾讯,Tarsgo是基于Golang编程语言使用Tars协议的高性能RPC框架

仓库地址:https://github.com/TarsCloud/TarsGo(3K)

官方文档地址:https://tarscloud.github.io/TarsDocs/SUMMARY.html#TarsGo

11.北极星-polaris-go

北极星是腾讯开源的服务发现和治理中心,致力于解决分布式或者微服务架构中的服务可见、故障容错、流量控制和安全问题。 仓库地址:https://github.com/polarismesh/polaris

其他

https://github.com/saucxs/watermark-dom

一款居于dom水印插件

https://github.com/gohugoio/hugo

一款快速静态站点生成器,基于GO开发

https://github.com/kxproject

kx audio driver 关于 sound cards for DSP, playback and recording, ASIO and so on

待整理

https://github.com/shadowsocks https://github.com/PingPlusPlus https://thinkjs.org/zh-cn/doc/3.0/controller.html#toc-7d3 https://github.com/Tencent https://github.com/Meituan-Dianping https://github.com/dianping https://github.com/dcloudio https://github.com/didi https://algorithm-visualizer.org/ https://github.com/yuuwill https://github.com/LibreOffice https://gitee.com/gvp https://github.com/iqiyi https://github.com/rancher https://www.gitbook.com/@skyao https://github.com/waylau/books-collection https://github.com/twbs https://github.com/sonatype https://chromium.googlesource.com/v8/v8.git https://github.com/antvis https://github.com/o2team https://github.com/JetBrains https://github.com/tencentyun https://github.com/OpenTSDB https://github.com/fex-team https://github.com/sofastack https://github.com/seata https://github.com/sohutv https://github.com/open-falcon-archive https://github.com/Netflix https://github.com/renrenio

See also

  • 开源项目索引

On this page

Last updated: September 16, 2017
Improve this page
李明梓-BLOG
Hugo Logo
  本文仅为个人笔记,作为学习使用,如有雷同请联系作者 mingzi.li 处理,mail: qiaomingzi100@sina.com