Douglas Magic
Douglas Magic
@hellosean1025 thank you. node-gyp 的环境应该是没有问题的, 最后以本地部署的命令行方式顺利完成了。
@MRwangyd 这个问题有没有解决掉? 我也有这个需求
存在同样的问题,建议新增安全防护措施。
确实如此,希望新增保护。 我这边遇到的问题是,新增tcp隧道用于内网ssh和远程桌面。 新开一个端口号大约1天之后就会不断有国外ip暴力攻击。
@aschenmaker ``` # log level LevelEmergency->0 LevelAlert->1 LevelCritical->2 LevelError->3 LevelWarning->4 LevelNotice->5 LevelInformational->6 LevelDebug->7 log_level=7 log_path=nps.log ```
自己写错了吧,我这一切正常。 
6 ps脚本我是这样的 ``` ./npc.exe -server [ip:port] -vkey [vkey] -type tcp ``` 如果是windows 参数名和值之间是 空格 而不是=, 这点似乎文档不对。 另外任务里面的 `WorkingDirectory` 不确定 `\` 行不行。 ``` C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe ./start.ps1 d:\\tools\\npc ```
6 years later, has an initialized or ready event supported?
- 浏览器兼容性: `IE10` - demo 地址:[ https://codepen.io/cdswyda/pen/BXBZKE](https://codepen.io/cdswyda/pen/BXBZKE) ## 题目一 兼容 IE8 暂时没想到如何实现,针对此需求感觉使用 `flex` 就可以很好地实现。 ```html 这是一个长度不确定的标题标题这是一个长度不确定的标题标题这是一个长度不确定的标题标题这是一个长度不确定的标题标题这是一个长度不确定的标题标题这是一个长度不确定的标题标题 标签1 标签2 标签3 ``` ```scss .list-1 { .item { line-height: 30px; display: flex; }...
### `matches` 部分 两个都需要 ```js // Polyfill for Element.prototype.matches if (!Element.prototype.matches) { var ep = Element.prototype; ep.matches = ep.msMatchesSelector || ep.webkitMatchesSelector || ep.mozMatchesSelector || ep.oMatchesSelector; if (!ep.matches) { ep.matches =...