值得学习的库

🐤Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统css

# nodejs express PC客户端版本源码
https://github.com/cnodejs/nodeclub

# 移动端 react-native 版本源码
https://github.com/soliury/noder-react-native

 

 

ItChat : 用Python写微信外挂node

https://mp.weixin.qq.com/s/QGHtwpQofipw81b9z9uEFQ

# python 版本
https://github.com/littlecodersh/ItChat

# nodejs 版本
https://github.com/Chatie/wechaty

 

lit.css: 16k 响应式的css库,极其轻巧可人。大范围的使用em单位来做为间距也算独树一帜了。首页就是纯框架开发的:https://ajusa.github.io/lit/python

https://github.com/ajusa/lit

 

performance-column react

阿里胡子哥写的《性能专栏》,旨在提高 PC/H5/Native 等多个端上对性能的认知,阅读地址git

https://github.com/barretlee/performance-column/issues

 

如何经过饿了么 Node.js 面试github

https://elemefe.github.io/node-interview/#/sections/zh-cn/

 

 

C# : ScreenToGif面试

此工具能够记录屏幕的选定区域、网络摄像头的实时图像和绘图板上的实时图像。能够编辑并将动画保存为 GIF 或视频 
ScreenToGifshell

https://github.com/NickeManarin/ScreenToGif

 

 

假装浏览器身份,经常使用于爬虫。这个项目的代码不多,能够阅读一下,看看 ua.random 是如何返回随机的浏览器身份的😁,示例代码:express

https://github.com/hellysmile/fake-useragent

 

reddit 编程

reddit.com 网站的源码,经过这个项目,能够学习 Python 在构建大型项目中的使用、项目结构、代码风格、Python 技巧的使用方法等。安装教程

https://github.com/reddit/reddit

 

python-fire: https://github.com/google/python-fire

Fire 是 Google 开源的 Python 库,可自动将您的代码转变成 CLI,无需您作任何额外工做。您没必要定义参数,设置帮助信息,或者编写定义代码运行方式的 main 函数。相反,您只需从 main 模块调用“Fire”函数,其他工做所有交由 Python Fire 来完成。示例代码以下:

import fire
class Example(object):
    def hello(self, name='world'):
        """Says hello to the specified name."""
        return 'Hello {name}!'.format(name=name)

def main():
    fire.Fire(Example)
if __name__ == '__main__':
    main()

# 在终端中调用效果以下:
$ ./example.py hello
Hello world!
$ ./example.py hello David
Hello David!
$ ./example.py hello --name=Google
Hello Google!

 

 

N-blog

N-blog 项目是面向新手的 Node.js 教程,该教程讲述了 Node.js 基本知识点,同时结合搭建一个多人博客的实战,从零基础到实际开发,由浅到深帮助新手入门 Node.js 这门语言

https://github.com/nswbmw/N-blog

 

v-region: https://github.com/TerryZ/v-region/tree/master/src

使用 Vue 建立的中国省市区选择组件,组件复用程度高、可直接引入项目中使用。使用场景适用于须要用户选择地址,采用该组件能够提升交互程度,示例代码:

<v-region :city="false" :area="false" class="form-control"></v-region> // 只显示省份
<v-region :area="false" class="form-control"></v-region> // 显示省市
<v-region class="form-control"></v-region> // 显示省市区


v-region

 

weixin_crawler: 基于 Scrapy、Flask、Echarts、Elasticsearch 等实现的微信公众号文章爬虫。自带 UI 界面、分析报告、搜索功能 

https://github.com/wonderfulsuccess/weixin_crawler

 

 

soar: SQL 自动优化和改写的工具。能够自动优化 MySQL 语法族,而且给出为何要这样优化的理由。功能特色:

https://github.com/XiaoMi/soar

 

 

Shell 编程范例:面向操做对象学 Shell!

不一样于传统 Shell 书籍,本书并未花大篇幅去介绍 Shell 语法,而是以面向“对象” 的方式引入大量的实例介绍 Shell 平常操做,“对象” 涵盖数值、逻辑值、字符串、文件、进程、文件系统等。这样有助于学以至用,并在用的过程当中提升兴趣。也能够做为 Shell 编程索引,在须要的时候随时检索。

https://tinylab.gitbooks.io/shellbook/content/
相关文章
相关标签/搜索