Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 84cf62c

Browse files
committed
发布:《HelloGithub》第09期
1 parent 873d261 commit 84cf62c

File tree

9 files changed

+231
-2
lines changed

9 files changed

+231
-2
lines changed

05/HelloGitHub05.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
![](https://github.com/521xueweihan/HelloGitHub/blob/master/05/img/caravel-show-min.png)
2020

21-
2、[flaskbb](https://github.com/sh4nks/flaskbb):基于flask框架做的论坛,功能有限,轻量级的论坛应用[在线文档](http://flaskbb.readthedocs.io/en/latest/index.html),可以在这个项目上进行二次开发,实现更加负责的功能[在线预览](https://forums.flaskbb.org)
21+
2、[flaskbb](https://github.com/sh4nks/flaskbb):基于flask框架做的论坛,功能有限,轻量级的论坛应用[在线文档](http://flaskbb.readthedocs.io/en/latest/index.html),可以在这个项目上进行二次开发,实现更加复杂的功能[在线预览](https://forums.flaskbb.org)
2222

2323
![](https://github.com/521xueweihan/HelloGitHub/blob/master/05/img/flask-bb-show-min.png)
2424

05/content05.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
![](https://github.com/521xueweihan/HelloGitHub/blob/master/05/img/caravel-show-min.png)
55

6-
2、[flaskbb](https://github.com/sh4nks/flaskbb):基于flask框架做的论坛,功能有限,轻量级的论坛应用[在线文档](http://flaskbb.readthedocs.io/en/latest/index.html),可以在这个项目上进行二次开发,实现更加负责的功能[在线预览](https://forums.flaskbb.org)
6+
2、[flaskbb](https://github.com/sh4nks/flaskbb):基于flask框架做的论坛,功能有限,轻量级的论坛应用[在线文档](http://flaskbb.readthedocs.io/en/latest/index.html),可以在这个项目上进行二次开发,实现更加复杂的功能[在线预览](https://forums.flaskbb.org)
77

88
![](https://github.com/521xueweihan/HelloGitHub/blob/master/05/img/flask-bb-show-min.png)
99

09/HelloGitHub09.md

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
#《HelloGitHub》第09期
2+
>兴趣是最好的老师,[《HelloGitHub》](https://github.com/521xueweihan/HelloGitHub)就是帮你找到兴趣!
3+
4+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/01/img/hello-github.jpg)
5+
6+
## 简介
7+
最开始我只是想把自己在浏览 [GitHub](https://github.com/) 过程中,发现的有意思、高质量、容易上手的项目收集起来,这样便于以后查找和学习。后来一想,如果给这些 GitHub 项目都加上简单的效果图和一些通俗易懂的中文介绍。应该能够帮助到我这样的新手激发兴趣去参与、学习这些优秀、好玩的开源项目。
8+
9+
所以,我就做了一个面向**编程新手****热爱编程****对开源社区感兴趣** 的人群的月刊,月刊的内容包括:**各种编程语言的项目****各种让生活变得更美好的工具****书籍、学习笔记、教程等**。这些项目都是非常容易上手,而且非常 Cool,主要是希望大家能动手用起来,加入到**开源社区**中。会编程的可以贡献代码,不会编程的可以反馈使用这些工具中的 Bug、帮着宣传你觉得优秀的项目、Star 项目⭐️。同时你将学习到更多编程知识、提高自己的编程技巧、发现自己的**兴趣**
10+
11+
最后[《HelloGitHub》](https://github.com/521xueweihan/HelloGitHub)这个项目就诞生了!😁
12+
13+
---
14+
>**以下为本期内容**[点击查看往期内容](https://github.com/521xueweihan/HelloGitHub)
15+
16+
#### Python项目
17+
1、[flask-limiter](https://github.com/alisaifee/flask-limiter):flask limiter 是一个 flask 的扩展库,它可以根据访问者的 IP 限制其访问频率、次数等,示例代码如下:
18+
```python
19+
from flask import Flask
20+
from flask_limiter import Limiter
21+
from flask_limiter.util import get_remote_address
22+
23+
app = Flask(__name__)
24+
limiter = Limiter(
25+
app,
26+
key_func=get_remote_address,
27+
global_limits=["2 per minute", "1 per second"],
28+
)
29+
30+
@app.route("/slow")
31+
@limiter.limit("1 per day")
32+
def slow():
33+
return "24"
34+
35+
@app.route("/fast")
36+
def fast():
37+
return "42"
38+
39+
@app.route("/ping")
40+
@limiter.exempt
41+
def ping():
42+
return 'PONG'
43+
44+
app.run()
45+
```
46+
47+
2、[ngrok](https://github.com/inconshreveable/ngrok):ngrok 是一个十分方便、好用的工具,它可以把本地某个端口的服务,通过一个安全隧道,映射到公网的一个地址。同时它提供了一个 web 页面,展示了每个请求、响应的所有信息,便于调试本地的程序。基本的使用方法如下:
48+
```
49+
ngrok 协议 本地服务监听的端口
50+
ngrok http 8000
51+
52+
创建成功会返回公网地址,然后通过该地址就可以访问到本地的服务。
53+
本地访问 http://localhost:4040,就可以查看关于每个请求、响应的相关数据
54+
```
55+
56+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/09/img/ngrok-show-min.png)
57+
58+
3、[glances](http://nicolargo.github.io/glances/):glances 是一个可以让你**一目了然**你的系统情况(类top、htop)的工具,它界面友好,安装方便:`pip install glances`
59+
60+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/09/img/glances-show-min.png)
61+
62+
#### Go项目
63+
4、[lantern](https://github.com/getlantern/lantern):lantern ——> 蓝灯vpn
64+
65+
#### PHP项目
66+
5、[VulApps](https://github.com/Medicean/VulApps):VulApps 是用于快速搭建各种漏洞环境,可用来学习、理解常见的漏洞,增强自己在开发过程的安全意识
67+
68+
#### Javascript项目
69+
6、[vue-hackernews-2](https://github.com/vuejs/vue-hackernews-2.0):这是一个Vue 2.0示例,克隆 [Hacker News]((https://news.ycombinator.com/)) 网站(我感觉比原站好看多了😅)
70+
71+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/09/img/vue-hackernews-show-min.png)
72+
73+
7、[N-blog](https://github.com/nswbmw/N-blog): N-blog 项目是面向新手的 Node.js 教程,该教程讲述了 Node.js 基本知识点,同时结合搭建一个多人博客的实战,从零基础到实际开发,由浅到深帮助新手入门 Node.js 这门语言
74+
75+
8、[pomelo](https://github.com/NetEase/pomelo):pomelo 网易开源的一个Node.js游戏服务器框架,[Demo](http://pomelo.netease.com/demo.html)
76+
77+
#### C、C++项目
78+
9、[json](https://github.com/nlohmann/json):C++ 的 JSON 库
79+
80+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/09/img/json-show.gif)
81+
82+
#### 机器学习
83+
10、[machine-learning-for-software-engineers](https://github.com/ZuzooVn/machine-learning-for-software-engineers):自上而下的学习路线: 软件工程师的机器学习,[中文版](https://github.com/ZuzooVn/machine-learning-for-software-engineers/blob/master/README-zh-CN.md)
84+
85+
#### Objective-C、Swift项目
86+
11、[Kingfisher](https://github.com/onevcat/Kingfisher):Kingfisher 是一个异步下载和缓存图片的库,你可以把它看做 SDWebImage 的纯 Swift 实现和替代。它可以帮助简单地实现像是用户头像或者 table view 里面的图片的下载和缓存这样的工作,以提高 app 速度和帮助开发者节省时间,[作者的中文博客](http://project.onevcat.com/)
87+
88+
#### Java项目
89+
12、[MSEC](https://github.com/Tencent/MSEC):MSEC 是腾讯开源的,毫秒服务引擎(Mass Service Engine in Cluster)
90+
它是一个开源框架,适用于在廉价机器组成的集群上开发和运营分布式后台服务。毫秒服务引擎集RPC、名字发现服务、负载均衡、业务监控、灰度发布、容量管理、日志管理、key-value存储于一体,[官网介绍](http://haomiao.qq.com/index.html#documents)
91+
92+
## Android
93+
13、[One Step](https://github.com/SmartisanTech/android):One Step 是锤子开源的 Android 项目,一步(one step)是通过拖拽完成将信息发送至应用或联系人的动作,节省了在不同应用之间切换的诸多步骤,第一次打通了手持设备中应用间的边界,[One Step](http://www.smartisan.com/m1/#/os?section=onestep)
94+
95+
14、[android-open-project](https://github.com/Trinea/android-open-project):Android 开源项目分类汇总
96+
97+
#### 其它
98+
99+
15、[freecodecamp](https://github.com/FreeCodeCampChina/freecodecamp.cn):freecodecamp 是一个自由的开源编程社区,[freecodecamp中文社区](https://freecodecamp.cn)
100+
101+
16、[Web-Frontend-Introduction-And-Best-Practicesa](https://github.com/wxyyxc1992/Web-Frontend-Introduction-And-Engineering-Practices):Web 开发入门与实践练习
102+
103+
17、[best-chinese-front-end-blogs](https://github.com/FrankFang/best-chinese-front-end-blogs):该项目是收集优质的中文前端博客
104+
105+
18、[golang-open-source-projects](https://github.com/hackstoic/golang-open-source-projects):中文版awesome-go
106+
107+
19、[Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms):算法数据结构学习,C语言实现
108+
109+
20、[the-way-to-go_ZH_CN](https://github.com/Unknwon/the-way-to-go_ZH_CN):《The Way to Go》中文译本,中文正式名《Go入门指南》
110+
111+
21、[FromXToGo](https://github.com/golang/go/wiki/FromXToGo):如果你正从某个语言(PHP, Python, Ruby...)想要换到 Golang 却又害怕吗?(英文)
112+
113+
---
114+
115+
116+
## 声明
117+
如果你发现了好玩、有意义的开源项目,[点击这里](https://github.com/521xueweihan/HelloGitHub/issues/new) 分享你觉得有意思的项目。
118+
119+
- 分享项目格式:项目名称——项目地址:项目描述(中文),追求完美👉项目上手 Demo、有图有真相~
120+
121+
或许你分享的项目会让别人由衷的感慨:“原来还有这么有意思的项目!编程可以这么酷!”
122+
123+
**欢迎转载,请注明出处和作者,同时保留声明和联系方式。**
124+
125+
## 联系方式
126+
- [削微寒](https://github.com/521xueweihan)
127+
128+
- [博客园](http://www.cnblogs.com/xueweihan/)
129+
130+
- [知乎专栏](https://zhuanlan.zhihu.com/hellogithub)

09/content09.md

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
#### Python项目
2+
1、[flask-limiter](https://github.com/alisaifee/flask-limiter):flask limiter 是一个 flask 的扩展库,它可以根据访问者的 IP 限制其访问频率、次数等,示例代码如下:
3+
```python
4+
from flask import Flask
5+
from flask_limiter import Limiter
6+
from flask_limiter.util import get_remote_address
7+
8+
app = Flask(__name__)
9+
limiter = Limiter(
10+
app,
11+
key_func=get_remote_address,
12+
global_limits=["2 per minute", "1 per second"],
13+
)
14+
15+
@app.route("/slow")
16+
@limiter.limit("1 per day")
17+
def slow():
18+
return "24"
19+
20+
@app.route("/fast")
21+
def fast():
22+
return "42"
23+
24+
@app.route("/ping")
25+
@limiter.exempt
26+
def ping():
27+
return 'PONG'
28+
29+
app.run()
30+
```
31+
32+
2、[ngrok](https://github.com/inconshreveable/ngrok):ngrok 是一个十分方便、好用的工具,它可以把本地某个端口的服务,通过一个安全隧道,映射到公网的一个地址。同时它提供了一个 web 页面,展示了每个请求、响应的所有信息,便于调试本地的程序。基本的使用方法如下:
33+
```
34+
ngrok 协议 本地服务监听的端口
35+
ngrok http 8000
36+
37+
创建成功会返回公网地址,然后通过该地址就可以访问到本地的服务。
38+
本地访问 http://localhost:4040,就可以查看关于每个请求、响应的相关数据
39+
```
40+
41+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/09/img/ngrok-show-min.png)
42+
43+
3、[glances](http://nicolargo.github.io/glances/):glances 是一个可以让你**一目了然**你的系统情况(类top、htop)的工具,它界面友好,安装方便:`pip install glances`
44+
45+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/09/img/glances-show-min.png)
46+
47+
#### Go项目
48+
4、[lantern](https://github.com/getlantern/lantern):lantern ——> 蓝灯vpn
49+
50+
#### PHP项目
51+
5、[VulApps](https://github.com/Medicean/VulApps):VulApps 是用于快速搭建各种漏洞环境,可用来学习、理解常见的漏洞,增强自己在开发过程的安全意识
52+
53+
#### Javascript项目
54+
6、[vue-hackernews-2](https://github.com/vuejs/vue-hackernews-2.0):这是一个Vue 2.0示例,克隆 [Hacker News]((https://news.ycombinator.com/)) 网站(我感觉比原站好看多了😅)
55+
56+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/09/img/vue-hackernews-show-min.png)
57+
58+
7、[N-blog](https://github.com/nswbmw/N-blog): N-blog 项目是面向新手的 Node.js 教程,该教程讲述了 Node.js 基本知识点,同时结合搭建一个多人博客的实战,从零基础到实际开发,由浅到深帮助新手入门 Node.js 这门语言
59+
60+
8、[pomelo](https://github.com/NetEase/pomelo):pomelo 网易开源的一个Node.js游戏服务器框架,[Demo](http://pomelo.netease.com/demo.html)
61+
62+
#### C、C++项目
63+
9、[json](https://github.com/nlohmann/json):C++ 的 JSON 库
64+
65+
![](https://github.com/521xueweihan/HelloGitHub/blob/master/09/img/json-show.gif)
66+
67+
#### 机器学习
68+
10、[machine-learning-for-software-engineers](https://github.com/ZuzooVn/machine-learning-for-software-engineers):自上而下的学习路线: 软件工程师的机器学习,[中文版](https://github.com/ZuzooVn/machine-learning-for-software-engineers/blob/master/README-zh-CN.md)
69+
70+
#### Objective-C、Swift项目
71+
11、[Kingfisher](https://github.com/onevcat/Kingfisher):Kingfisher 是一个异步下载和缓存图片的库,你可以把它看做 SDWebImage 的纯 Swift 实现和替代。它可以帮助简单地实现像是用户头像或者 table view 里面的图片的下载和缓存这样的工作,以提高 app 速度和帮助开发者节省时间,[作者的中文博客](http://project.onevcat.com/)
72+
73+
#### Java项目
74+
12、[MSEC](https://github.com/Tencent/MSEC):MSEC 是腾讯开源的,毫秒服务引擎(Mass Service Engine in Cluster)
75+
它是一个开源框架,适用于在廉价机器组成的集群上开发和运营分布式后台服务。毫秒服务引擎集RPC、名字发现服务、负载均衡、业务监控、灰度发布、容量管理、日志管理、key-value存储于一体,[官网介绍](http://haomiao.qq.com/index.html#documents)
76+
77+
## Android
78+
13、[One Step](https://github.com/SmartisanTech/android):One Step 是锤子开源的 Android 项目,一步(one step)是通过拖拽完成将信息发送至应用或联系人的动作,节省了在不同应用之间切换的诸多步骤,第一次打通了手持设备中应用间的边界,[One Step](http://www.smartisan.com/m1/#/os?section=onestep)
79+
80+
14、[android-open-project](https://github.com/Trinea/android-open-project):Android 开源项目分类汇总
81+
82+
#### 其它
83+
84+
15、[freecodecamp](https://github.com/FreeCodeCampChina/freecodecamp.cn):freecodecamp 是一个自由的开源编程社区,[freecodecamp中文社区](https://freecodecamp.cn)
85+
86+
16、[Web-Frontend-Introduction-And-Best-Practicesa](https://github.com/wxyyxc1992/Web-Frontend-Introduction-And-Engineering-Practices):Web 开发入门与实践练习
87+
88+
17、[best-chinese-front-end-blogs](https://github.com/FrankFang/best-chinese-front-end-blogs):该项目是收集优质的中文前端博客
89+
90+
18、[golang-open-source-projects](https://github.com/hackstoic/golang-open-source-projects):中文版awesome-go
91+
92+
19、[Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms):算法数据结构学习,C语言实现
93+
94+
20、[the-way-to-go_ZH_CN](https://github.com/Unknwon/the-way-to-go_ZH_CN):《The Way to Go》中文译本,中文正式名《Go入门指南》
95+
96+
21、[FromXToGo](https://github.com/golang/go/wiki/FromXToGo):如果你正从某个语言(PHP, Python, Ruby...)想要换到 Golang 却又害怕吗?(英文)
97+
98+
---

09/img/glances-show-min.png

174 KB
Loading

09/img/json-show.gif

1.07 MB
Loading

09/img/ngrok-show-min.png

49.6 KB
Loading

09/img/vue-hackernews-show-min.png

43.3 KB
Loading

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
---
1414
### 往期回顾
15+
- [第09期](https://github.com/521xueweihan/HelloGitHub/blob/master/09/HelloGitHub09.md)
1516
- [第08期](https://github.com/521xueweihan/HelloGitHub/blob/master/08/HelloGitHub08.md)
1617
- [第07期](https://github.com/521xueweihan/HelloGitHub/blob/master/07/HelloGitHub07.md)
1718
- [第06期](https://github.com/521xueweihan/HelloGitHub/blob/master/06/HelloGitHub06.md)

0 commit comments

Comments
 (0)