Skip to content

Instantly share code, notes, and snippets.

@jiewuzhan
jiewuzhan / 深入浅出 Greasemonkey
Created January 23, 2024 12:29 — forked from yanyuechuixue/深入浅出 Greasemonkey
一个非常优秀的 油猴脚本开发 、用户脚本开发、develope userscript 的教程。
# 深入浅出 Greasemonkey
版权 © 2005 Mark Pilgrimi
[sebug](http://sebug.net/appdir/) [paper](http://sebug.net/paper/)
这本书、及其样例代码和视频文件都是自由软件。在“GNU 通用公共许可证(自由软件基金会)(版本2以及更新版本)”许可下,您可以随意的再分发和/或修改它们。我们发行这本书、及其样例代码和视频文件,希望它能对您有所帮助。但是我们并没有提供任何担保!请查阅[GNU 通用公共许可证](http://www.ttlsa.com/docs/greasemonkey/#license)获取更多细节。
**目录**
@jiewuzhan
jiewuzhan / tree.md
Created July 11, 2023 02:01 — forked from hrldcpr/tree.md
one-line tree in python

One-line Tree in Python

Using Python's built-in defaultdict we can easily define a tree data structure:

def tree(): return defaultdict(tree)

That's it!

@jiewuzhan
jiewuzhan / content.md
Created April 4, 2023 09:45 — forked from baymaxium/content.md
深入理解 Python 异步编程(上)

原文:Python开发者

(点击上方蓝字,快速关注我们)

来源:阿驹的自荐投稿(微信公号:驹说码事) 

如有好文章投稿,请点击 → 这里了解详情

前言