# 《HelloGitHub》第 27 期 > 兴趣是最好的老师,**HelloGitHub** 让你对开源感兴趣!

## 目录 点击右上角的 **「目录」** 图标打开目录,获得更好的阅读体验。 ![](https://raw.githubusercontent.com/521xueweihan/img_logo/master/logo/catalog.png) **Tips**:如果遇到图片刷不出来的情况,[点击](https://hellogithub.com/periodical/volume/27) 换一种浏览方式。


关注「HelloGitHub」公众号,第一时间收到推送

## 内容 > **以下为本期内容**|每月 **28** 号更新 ### C# 项目 1、[cms](https://hellogithub.com/periodical/statistics/click?target=https://github.com/siteserver/cms):开源、免费、企业级内容管理平台。基于该工具可以快速、方便地搭建搭建一个性能优异、颇具规模、易于维护的网站平台

2、[Rosin](https://hellogithub.com/periodical/statistics/click?target=https://github.com/AlloyTeam/Rosin):一个 Fiddler 插件,用于协助开发者进行移动端页面开发、调试

### C++ 项目 3、[apollo](https://hellogithub.com/periodical/statistics/click?target=https://github.com/ApolloAuto/apollo):百度自主研发、开源的全面开放自动驾驶平台。它将帮助汽车行业及自动驾驶领域的合作伙伴结合车辆和硬件系统,快速搭建一套属于自己的自动驾驶系统 4、[brpc](https://hellogithub.com/periodical/statistics/click?target=https://github.com/apache/brpc):百度开源的 RPC 框架,拥有超过 100 万个实例和 500 多种服务 5、[MyTinySTL](https://hellogithub.com/periodical/statistics/click?target=https://github.com/Alinshans/MyTinySTL):用 C++11 实现的小型 STL(容器库+算法库)。代码结构清晰规范、包含中文文档与注释,并且自带一个简单的测试框架,适合新手学习与参考。示例代码如下: ```c++ // 在尾部插入元素 template void vector::push_back(const value_type& value) { if (end_ != cap_) { data_allocator::construct(mystl::address_of(*end_), value); ++end_; } else { reallocate_insert(end_, value); } } ``` ### Go 项目 6、[appify](https://hellogithub.com/periodical/statistics/click?target=https://github.com/machinebox/appify):该项目能够方便的把 Golang 项目包装成 MacOS 可以直接运行的软件。可以用来把自己写的小工具包装成一个其他人可以直接下载并双击使用的软件。提供自定义 logo、名字,分分钟发布自己的 Golang 软件。使用步骤如下: ```shell # 1.安装命令 $ go get github.com/machinebox/appify # 2.封装命令 $ appify -name "My Go Application" -icon ./icon.png /path/to/bin ```

7、[usql](https://hellogithub.com/periodical/statistics/click?target=https://github.com/xo/usql):通用SQL命令行客户端。支持以下所有数据库和协议: | 数据库 (scheme/driver) | 协议别名 [real driver] | |------------------------------|---------------------------------------| | Microsoft SQL Server (mssql) | ms, sqlserver | | MySQL (mysql) | my, mariadb, maria, percona, aurora | | Oracle (ora) | or, oracle, oci8, oci | | PostgreSQL (postgres) | pg, postgresql, pgsql | | SQLite3 (sqlite3) | sq, sqlite, file | ``` 安装方法 1. 根据你的系统下载最新的 binary 2. 解压缩出 `usql` 或者 `usql.exe` 3. 把binary放到你的 `$PATH` (Linux/macOS) 或 `%PATH%` (Windows)路径下 4. 然后就可以用`usql`链接到你喜欢的SQL数据库啦~ ``` ### Java 项目 8、[RetrofitUrlManager](https://hellogithub.com/periodical/statistics/click?target=https://github.com/JessYanCoding/RetrofitUrlManager):以简洁的 API 让 Retrofit 同时支持多个 BaseUrl,动态改变 BaseUrl

### JavaScript 项目 9、[echarts](https://hellogithub.com/periodical/statistics/click?target=https://github.com/apache/echarts):使用 JavaScript 实现的开源、流行、强大的可视化库。可以流畅的运行在 PC 和移动设备上,兼容当前绝大部分浏览器。提供直观、交互丰富、可实现高度个性定制化的数据可视化图表,也可将其封装为任何 MVVM 框架的组件方便适用。[官网](http://echarts.baidu.com/)

10、[simpread](https://hellogithub.com/periodical/statistics/click?target=https://github.com/Kenshin/simpread):让你瞬间进入沉浸式阅读的扩展,还原阅读的本质,提升你的阅读体验。使用它可以为你剔除页面上无关的干扰信息,让用户专注于阅读主要的内容。通过这个项目,还可以学习如何开发 Chrome 扩展

11、[v-region](https://hellogithub.com/periodical/statistics/click?target=https://github.com/TerryZ/v-region):使用 Vue 创建的中国省市区选择组件,组件复用程度高、可直接引入项目中使用。使用场景适用于需要用户选择地址,采用该组件可以提高交互程度。[文档](https://terryz.github.io/vue/#/region/demo),示例代码: ```js // 只显示省份 // 显示省市 // 显示省市区 ```

12、[whistle](https://hellogithub.com/periodical/statistics/click?target=https://github.com/avwo/whistle):基于 Node.js 实现的跨平台 web 调试代理工具,类似于 Windows 平台上的 Fiddler。主要用于查看、修改HTTP、HTTPS、Websocket的请求、响应,也可以作为 HTTP 代理服务器使用。不同于 Fiddler 通过断点修改请求响应的方式,whistle 采用的是类似配置系统 hosts 的方式,一切操作都可以通过配置实现。通过该工具,可以现实复杂的前端环境、生产、开发、bugFix 一键切换。 ### Objective-C 项目 13、[KafkaRefresh](https://hellogithub.com/periodical/statistics/click?target=https://github.com/BeatsKitano/KafkaRefresh):内置多种动画、可自定义和灵活的 iOS 下拉刷新框架。[中文文档](https://github.com/OpenFeyn/KafkaRefresh/blob/master/CREADME.md)

### Python 项目 14、[pudb](https://hellogithub.com/periodical/statistics/click?target=https://github.com/inducer/pudb):基于控制台的全屏 Python 可视化调试器。比 pdb 好用太多了,特性: - 源码语法高亮,栈、断点、变量可见并且一直动态更新。变量展示还有很多可以定制化的功能。 - 基于键盘,简单高效。支持 VI 的鼠标移动。还支持 PDB 的某些命令 - 支持查找源代码,可以使用 m 代用 module browser 查看载入的模块 - 断点设置。鼠标移到某行代码,按 b,然后可以在断点窗口编辑断点

15、[tenacity](https://hellogithub.com/periodical/statistics/click?target=https://github.com/jd/tenacity):使用该库可以优雅地实现各种需求的重试。示例代码如下: ```python from tenacity import retry, stop_after_attempt # 通过装饰器,实现遇到异常重试3次 @retry(stop=stop_after_attempt(3)) def get_data(url): response = requests.get(url) response_json = response.json() ``` 16、[unimatrix](https://hellogithub.com/periodical/statistics/click?target=https://github.com/will8211/unimatrix):模拟“黑客帝国”影片中的终端动画脚本

### Ruby 项目 17、[hacker101](https://hellogithub.com/periodical/statistics/click?target=https://github.com/Hacker0x01/hacker101):(英文)一个免费的 Web安全课程。无论你是一个程序员、对 bug 悬赏感兴趣,或是一个经验丰富的安全专业人员,在 HACKE101 课程中都可以学到东西。包涵大量示例代码和在线 Demo,示例代码为 Ruby。 ### Swift 项目 18、[IBAnimatable](https://hellogithub.com/periodical/statistics/click?target=https://github.com/IBAnimatable/IBAnimatable):一个帮助我们在 Interface Builder 和 Swift Playground 里面设计 UI、交互、导航模式,、换场和动画的开源库。下图的整个 App 都是通过 IBAnimatable 在 Interface Builder 设计完成,没有任何一行代码。

19、[TuringCalendar](https://hellogithub.com/periodical/statistics/click?target=https://github.com/zhihaozhang/TuringCalendar):图灵教育推出的限量款[编程日历 2018](http://www.ituring.com.cn/book/download/43507086-33c3-40e9-9115-d610e1333bca),因为简约大气的设计和每周一个编程语言的介绍,在程序员中广受欢迎。现在日历 PDF 的源文件已经开源,于是就有了这个项目。一个 macOS 桌面上的日历 widget,效果图如下:

### 人工智能 20、[elasticsearch-spark-recommender](https://hellogithub.com/periodical/statistics/click?target=https://github.com/IBM/elasticsearch-spark-recommender):使用 Apache Spark 的机器学习库 (MLlib) 来训练一个协同过滤推荐系统模型 和 Elasticsearch 构建一个推荐系统教程,[中文版阅读](https://github.com/IBM/elasticsearch-spark-recommender/blob/master/README-cn.md)

21、[simplified-deeplearning](https://hellogithub.com/periodical/statistics/click?target=https://github.com/exacity/simplified-deeplearning):《DeepLearningBook》读书笔记 ### 其它 22、[build-your-own-x](https://hellogithub.com/periodical/statistics/click?target=https://github.com/codecrafters-io/build-your-own-x):(英文)费曼:“我不能创造的東西,我就不了解。”该项目收集了不同编程语言造轮子的教程 23、[Front-End-Checklist](https://hellogithub.com/periodical/statistics/click?target=https://github.com/thedaviddias/Front-End-Checklist):一份在网站发布到生产环境之前,前端部分需要测试、检查的详尽清单。[中文版](https://github.com/JohnsenZhou/Front-End-Checklist)

『上一期』 | 反馈和建议 | 『下一期』

---

👉 来!推荐开源项目 👈
微信中搜:HelloGitHub 关注公众号
不仅能第一时间收到推送,还有回馈粉丝的活动
如果文中的图刷不出来,可以点击 这里

## 赞助

UCloud
超值的GPU云服务

CDN
开启全网加速

OpenIM
开源IM力争No.1

七牛云
百万 Token 免费体验
## 声明 知识共享许可协议
本作品采用 署名-非商业性使用-禁止演绎 4.0 国际 进行许可。