HelloGitHub Vol.13
HelloGitHub shares interesting and beginner-friendly open source projects on GitHub, updated on the 28th of each month. Here you will find fun and beginner-level open source projects, open source books, practical projects, and enterprise-level projects, allowing you to quickly appreciate the charm of open source and develop an interest in it.
C 资源大全中文版,包括了:构建系统、编译器、数据库、加密、初中高的教程/指南、书籍、库等。
DHT 实现了 BitTorrent DHT 协议,它包含两种模式,标准模式和爬虫模式。标准模式遵循 DHT 协议,你可以把它当做一个标准的 DHT 组件。爬虫模式是为了嗅探到更多 torrent 文件信息,它在某些方面不遵循 DHT 协议。 基于爬虫模式,你可以打造你自己的 BTDigg,演示地址
Go 示例代码,在线浏览
Android 问题交流讨论坛,包含 Android 开发中的各种问题讨论
Android 开源代码大全,收集 Android 开发中优秀的开源组件库,方便大家查询
从零开始构建 JavaScript 技术栈(中文版)
TypeScript 入门教程
在 Mac 上计算你写了多少行代码的工具
- 支持检测参与计算的代码文件夹数量以及代码行数;
- 支持同时检测多文件/多文件夹代码;
- 支持自定义检测的文件类型,例如:C、Swift、Java 等类型的代码文件;
- 支持自定义需要忽略检测的文件夹, 例如:iOS 工程中的 Pods 文件夹;
- 支持中文与英文,跟随系统语言变化;
- 支持忽略代码中的空行,代码行数计算更精确;
基本算法、数据结构的 Python 实现
. ├── array │ ├── circular_counter.py │ └── ... ├── backtrack │ ├── anagram.py │ └── ... ├── bfs │ ├── shortest_distance_from_all_buildings.py │ └── word_ladder.py ├── bit │ ├── count_ones.py │ └── ... │ └── traversal.py └── 等等
Rquests + Gevent 让异步 HTTP 变得简单、人性化。示例代码:
>>> import grequests >>> def exception_handler(request, exception): ... print "Request failed" >>> reqs = [ ... grequests.get('http://httpbin.org/delay/1', timeout=0.001), ... grequests.get('http://fakedomain/'), ... grequests.get('http://httpbin.org/status/500')] >>> grequests.map(reqs, exception_handler=exception_handler) Request failed Request failed [None, None, <Response [500]>]
语言技术平台(Language Technology Platform,LTP)是哈工大社会计算与信息检索研究中心开源的一整套中文语言处理系统。提供了一系列中文自然语言处理工具,这些工具可以用于中文文本进行分词、词性标注、句法分析等工作
解析 nginx 访问日志并格式化输出有用的信息,可以用来实时了解你的服务器正在发生的情况。安装命令
pip install ngxtop
$ ngxtop running for 411 seconds, 64332 records processed: 156.60 req/sec Summary: | count | avg_bytes_sent | 2xx | 3xx | 4xx | 5xx | |---------+------------------+-------+-------+-------+-------| | 64332 | 2775.251 | 61262 | 2994 | 71 | 5 | Detailed: | request_path | count | avg_bytes_sent | 2xx | 3xx | 4xx | 5xx | |------------------------------------------+---------+------------------+-------+-------+-------+-------| | /abc/xyz/xxxx | 20946 | 434.693 | 20935 | 0 | 11 | 0 | | /xxxxx.json | 5633 | 1483.723 | 5633 | 0 | 0 | 0 | | /xxxxx/xxx/xxxxxxx | 3624 | 7830.236 | 3621 | 0 | 3 | 0 | | /static/js/minified/utils.min.js | 3031 | 1781.155 | 2104 | 927 | 0 | 0 |
腾讯 AlloyTeam 开源项目官网
成为专业程序员路上用到的各种优秀资料、神器及框架
掘金翻译计划,翻译掘金上优质的英文文章
免费的计算机编程类中文书籍
全栈增长工程师指南,在线阅读
- C
- C#
- Go
- Java
- JavaScript
- Objective-C
- Python
- Other
- Book