码迷,mamicode.com
首页 > 其他好文 > 详细

值得学习的库

时间:2018-12-27 18:24:52      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:github   pytho   amp   dom   随机   基础   区域   如何   提高   

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

https://github.com/cnodejs/nodeclub

 

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

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

https://tinylab.gitbooks.io/shellbook/content/

 

performance-column 

阿里胡子哥写的《性能专栏》,旨在提升 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

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

 

值得学习的库

标签:github   pytho   amp   dom   随机   基础   区域   如何   提高   

原文地址:https://www.cnblogs.com/CyLee/p/10185393.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!