摘要:
配置vscode auto save afterDelay 安装 npm install -g nodemon --registry=https://registry.npm.taobao.org 运行 // node test.js nodemon test.js 阅读全文
摘要:
collections.abc 入门 # 定义个二叉树 ,希望可以 # 输出列表,是二叉树的前序遍历 # 可以进行索引取值,可以获取长度 https://zhuanlan.zhihu.com/p/142663602 ### 普通方法 class BinaryNode(object): def __i 阅读全文
摘要:
paramiko调试 import logging import paramiko logging.basicConfig() logging.getLogger("paramiko").setLevel(logging.DEBUG) # for example AliasStore调试,用1没有出 阅读全文
摘要:
获取python版本 PY_VERSION = sys.version_info[:3] PY2 = PY_VERSION[0] == 2 PY3 = not PY2 定义python不同版本的处理 if PY2: # io.StringIO only accepts u'foo' with Pyt 阅读全文
摘要:
https://github.com/PowerShell/Win32-OpenSSH/wiki/Logging-Facilities 阅读全文
摘要:
@echo off if "%1" == "h" goto begin mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit :begin ping 10.101.35.129 -n 100 阅读全文
摘要:
sar -n DEV 1 100 1代表一秒统计并显示一次 100代表统计一百次 阅读全文
摘要:
区别 1. each 是 art-template 的模板语法,专属的只能在模板字符串中使用 {{each 数组}} <li>{{ $value }}</li> {{/each}} 2. jQuery的 each,一般用于遍历 jQuery 选择器选择到的伪数组实例对象 $.each(数组, fun 阅读全文
摘要:
node偏向底层,没有类似 res.redirect的api var comment = parseObj.query comment.dateTime = '2017-11-2 17:11:22' comments.unshift(comment) // 如何通过服务器让客户端重定向? // 1. 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/41547331 阅读全文