bcaso
bcaso
希望实现,ssh 公钥登陆,网页粘贴的功能。
## Description `Ctrl+v` or `Shift+Insert` always paste two copies of the same content. Especially pictures copied from other web pages (pictures copied from local files to the clipboard will not...
添加规则,`*://*/*` 以屏蔽所有网址。 对于白名单,这样添加: `@*://github.com/*` 经测试,可行。 有 bug,但问题不大, bug: (1)设置后再对单个网站点击 unblock 时,规则 `*://*/*` 会被删除。 (2)点击 unblock 也不会添加 类似 `@*//` 的规则。 解决方法,用代码生成规则。
## Description Mindmap widget collapse button not work. ## Context - Browser and version: Version 111.0.5563.65 (Official Build, ungoogled-chromium) (64-bit) - JupyterLab version: - `ipydrawio-*` version(s): ```shell root@ee4b04a9fa8f:/# pip list...
怎么用啊?
服务器地址 (提示:请输入IP加端口号,如 https://127.0.0.1:9000) // 这是什么意思?
打开知乎专栏时光标会自动聚焦在评论区的输入框,当我用空格翻页或使用 vimium 插件按 hjkl 翻动页面时,空格或字符都会在评论区,我都会手动点击一下页面来取消光标聚焦到评论输入框。 希望能添加这个功能到脚本中。 取消光标自动聚焦到输入框: ```js // https://stackoverflow.com/a/4276900 document.activeElement.blur(); ```
https://tsejx.github.io/data-structure-and-algorithms-guidebook/algorithms/search/bf/ ``` 4 if (s[i] === j[i]) { ``` 应该是 s[i] === p[j]