yyh

Results 121 issues of yyh

首选: vscode [svn 插件](https://marketplace.visualstudio.com/items?itemName=johnstoncode.svn-scm)+ [tortoisesvn](https://tortoisesvn.net/downloads.zh.html) > vscode内管理svn代码仓库 配置介绍:https://blog.csdn.net/u010164507/article/details/115024477 不建议 ```bash // 只是在git svn rebase和git svn dcommit的时候才会和svn仓库发生关系 git svn clone -r HEAD file/path dir_name git svn rebase // 从svn上更新代码, 相当于svn的update。 git...

[https://blog.fundebug.com/2019/08/03/how-to-record-user-behavior/](https://blog.fundebug.com/2019/08/03/how-to-record-user-behavior/) + uuid + [requestIdleCallback](https://developer.mozilla.org/zh-CN/docs/Web/API/Window/requestIdleCallback) + [sendBeacon ](https://developer.mozilla.org/zh-CN/docs/Web/API/Navigator/sendBeacon) + [老式浏览器可以使用谷歌开发的兼容库 PageLifecycle.js](https://github.com/GoogleChromeLabs/page-lifecycle) + [sendBeacon 及下方visibilitychange相关推荐](https://developer.mozilla.org/zh-CN/docs/Web/API/Navigator/sendBeacon) + [阮一峰 Page Visibility API 教程](http://www.ruanyifeng.com/blog/2018/10/page_visibility_api.html) + [阮一峰 Page Lifecycle API 教程](https://www.ruanyifeng.com/blog/2018/11/page_lifecycle_api.html)

[nginx 跨域](https://segmentfault.com/a/1190000012550346) + docker nginx 映射 ```bash docker run --name nginx-name -p 8082:80 -v //d/path/dist:/usr/share/nginx/html -v //d/path/nginx.conf:/etc/nginx/conf.d/default.conf -d nginx ``` + docker nginx bash ```bash docker run nginx -it bash...

+ 弹窗另存为 + [Content-Disposition](https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Headers/Content-Disposition) ```js Content-Disposition: inline // 默认值,表示回复中的消息体会以页面的一部分或者整个页面的形式展示 Content-Disposition: attachment // 意味着消息体应该被下载到本地;大多数浏览器会呈现一个“保存为”的对话框,将 filename 的值预填为下载后的文件名,假如它存在的话 Content-Disposition: attachment; filename="filename.jpg" ``` + [content-type](https://www.jianshu.com/p/de5845b4c095) + 当前页面直接下载 ```js export function download(url) { const iframe...

## HEVC (H.265) : ![872f4467ae00588abfb766bb7d8b12c](https://user-images.githubusercontent.com/24493052/174551407-807c5136-0e6c-4188-9d9c-19779a35239b.png) ## AVC (H.264): ![21e2eb9f5e3ba9bb19230a28fed0dda](https://user-images.githubusercontent.com/24493052/174551439-e6a2a9c9-59ab-4ccc-a222-b0b9f831c967.png) HEVC (H.265) AVC (H.264) + [HEVC (H.265) 兼容](https://caniuse.com/?search=HEVC) + [AVC (H.264) 兼容](https://caniuse.com/?search=AVC) [https://mediainfo.js.org/](https://mediainfo.js.org/) [https://www.cnblogs.com/Yellow-ice/p/13743400.html](https://www.cnblogs.com/Yellow-ice/p/13743400.html) [网络视频编解码器指南 ](https://developer.mozilla.org/zh-CN/docs/Web/Media/Formats/Video_codecs#%E9%80%9A%E7%94%A8%E7%BC%96%E8%A7%A3%E7%A0%81%E5%99%A8)

vue3 vite 引用vue文件报错 [vue-cli](https://v3.cn.vuejs.org/guide/installation.html#vite) 通过配套vscode插件消除 + volar eslint prettier vscode setting [配置](https://vueschool.io/articles/vuejs-tutorials/eslint-and-prettier-with-vite-and-vue-js-3/) ```json { "vetur.validation.template": false, "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "[vue]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[javascript]": {...

+ vscode 插件 [文档](https://shd101wyy.github.io/markdown-preview-enhanced/#/zh-cn/) ``` Markdown Preview Enhanced ``` + reveal.js [github](https://github.com/hakimel/reveal.js) [中文文档](https://vxhly.github.io/archives/8bdf06de.html) + fusuma [fusuma](https://github.com/hiroppy/fusuma/blob/master/README.md) + 在线生成网站 [在线生成网站](https://remarkjs.com/remarkise) + [sli](https://cn.sli.dev/guide/#scaffolding-your-first-presentation)

[autotrack](https://github.com/shilongzhuang/autotrack/blob/master/README.zh.md)

[https://www.quirksmode.org/mobile/viewports.html](https://www.quirksmode.org/mobile/viewports.html) [https://www.quirksmode.org/mobile/viewports2.html](https://www.quirksmode.org/mobile/viewports2.html) [https://juejin.cn/post/6844903845617729549](https://juejin.cn/post/6844903845617729549)

+ 跨文档通信(cross-document messaging + worker通信(cross-worker messaging) + 通道通信(channel messaging) [https://cloud.tencent.com/developer/article/1938635](https://cloud.tencent.com/developer/article/1938635) [https://www.cnblogs.com/imgss/p/14634577.html](https://www.cnblogs.com/imgss/p/14634577.html)

todo