值得学习的库
Posted cylee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了值得学习的库相关的知识,希望对你有一定的参考价值。
??Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统
https://github.com/cnodejs/nodeclub
Shell 编程范例:面向操作对象学 Shell!
不同于传统 Shell 书籍,本书并未花大篇幅去介绍 Shell 语法,而是以面向“对象” 的方式引入大量的实例介绍 Shell 日常操作,“对象” 涵盖数值、逻辑值、字符串、文件、进程、文件系统等。这样有助于学以致用,并在用的过程中提高兴趣。也可以作为 Shell 编程索引,在需要的时候随时检索。
https://tinylab.gitbooks.io/shellbook/content/
阿里胡子哥写的《性能专栏》,旨在提升 PC/H5/Native 等多个端上对性能的认知,阅读地址
https://github.com/barretlee/performance-column/issues
如何通过饿了么 Node.js 面试
https://elemefe.github.io/node-interview/#/sections/zh-cn/
C# : ScreenToGif
此工具可以记录屏幕的选定区域、网络摄像头的实时图像和绘图板上的实时图像。可以编辑并将动画保存为 GIF 或视频
https://github.com/NickeManarin/ScreenToGif
伪装浏览器身份,常用于爬虫。这个项目的代码很少,可以阅读一下,看看 ua.random
是如何返回随机的浏览器身份的??,示例代码:
https://github.com/hellysmile/fake-useragent
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
以上是关于值得学习的库的主要内容,如果未能解决你的问题,请参考以下文章