前端领域
文章平均质量分 50
前端领域
从未、淡定
主动负责不拒绝,简单高效不设界。
展开
-
实时监听端口状态。并重启服务
使用场景: 服务需要依赖第三方接口。本地开发过程中有时因为网络问题导致服务终止。注意:它不是守护进程,只是一个 循环监听,所以不可以使用在生产环境。监听端口,如果端口没有服务则重启服务。原创 2023-03-08 21:30:35 · 362 阅读 · 0 评论 -
实时监听文件变更,并重新编辑
【代码】实时监听文件变更,并重新编辑。原创 2023-03-08 21:26:40 · 318 阅读 · 0 评论 -
MongoDB Object Array Lookup Aggregation
【代码】MongoDB Object Array Lookup Aggregation。转载 2023-02-19 20:52:51 · 211 阅读 · 0 评论 -
Mongodb 通过 aggregate 对子文档进行筛选
相关文档: http://www.petecorey.com/blog/2020/01/29/mongodb-object-array-lookup-aggregation/部落列表中的用户 state, unknow = 0, applyed = 1, joined = 2 , deleted = 3。这里 members.state 它是做标记,没有达到预期效果。期望:筛选出不同状态的的用户。部落表中包含有成员列表。原创 2023-02-19 20:46:22 · 599 阅读 · 0 评论 -
对官网文档做SEO
思路将我们现有文档给搜索引擎。原创 2023-01-19 08:57:59 · 1312 阅读 · 0 评论 -
shell 将时间戳修改为时间
下载日志文件,日志内有时间戳,展示不够直观。预期:将毫秒的时间戳修改为时间。原创 2022-11-12 08:51:57 · 995 阅读 · 0 评论 -
RTC媒体管理
【代码】RTC媒体管理。原创 2022-11-09 21:11:18 · 291 阅读 · 0 评论 -
Chrome的几个参数
在 Chrome 上运行自动化测试时,以下参数在启动时非常有用:原创 2022-09-07 20:42:49 · 758 阅读 · 0 评论 -
端对端 自动化单元测试
端对端 自动化单元测试。原创 2022-08-22 12:58:46 · 1030 阅读 · 1 评论 -
使用灰度滤镜
使用灰色滤镜原创 2022-07-25 09:50:21 · 133 阅读 · 0 评论 -
Chrome命令
Chrome 命令转载 2022-07-15 20:00:00 · 1452 阅读 · 0 评论 -
音视频 SDP 添加码率
音视频 SDP 添加码率原创 2022-07-12 22:34:22 · 718 阅读 · 1 评论 -
web AudioContext 与AudioWorkletNode
web AudioContext 与AudioWorkletNode原创 2022-06-20 18:16:15 · 765 阅读 · 0 评论 -
音视频类之间的关系
音视频之间的关系原创 2022-06-20 18:11:46 · 264 阅读 · 1 评论 -
装饰器学习
LoggerTestimport { LoggerClass, LoggerMethod, LoggerParams, LoggerProperty } from './LoggerDescriptor'@LoggerClassclass LoggerTest { @LoggerProperty private readonly info: string constructor (private readonly key: string) { this.info = 'test原创 2022-05-29 07:56:19 · 96 阅读 · 0 评论 -
腾讯云文件上传流程
文件上传流程 actor user as "用户" participant Client as "浏览器" participant Server as "服务端" participant COS as "腾讯云" autonumber COS <- COS: 开通腾讯COS服务并获取密钥 Server <- Server: 配置密钥 user -> Client: 点击上传按钮 user -> Client: 选择上传文件 Client -原创 2022-05-26 12:45:09 · 3481 阅读 · 0 评论 -
直播技术的基本流程
@startuml mediaflow-a start partition pushFlow { :**采集**\n====\n 音频采集 \n----\n 视频采集; #ffeeee:待处理队列} :**处理**\n====\n 音频处理 \n----\n 视频处理; #ffeeee:待编码队列} :**编码**\n====\n 音频编码 \n----\n 视频编码; #ffeeee:待推流队列} :推流;原创 2022-05-03 16:35:06 · 430 阅读 · 0 评论 -
Typora样式调优
/** user Custom CSS ======================================= **/ p>.md-image:only-child:not(.md-img-error) img, p>img:only-child { margin-left: 0; } img { border-radius: 5px; } blockquote .md-pair-s > code { /* font-weight: .原创 2022-04-21 11:26:48 · 191 阅读 · 0 评论 -
PlantUML在vscode中的使用
安装搜索 PlantUML 进行安装使用使用文档: https://plantuml.com/zh/VScode 渲染使用命令 option + d使用文档@startumlAlice -> Bob: Authentication RequestBob --> Alice: Authentication ResponseAlice -> Bob: Another authentication RequestAlice <-- Bob: Another a原创 2022-04-17 10:09:22 · 3434 阅读 · 2 评论 -
Chrome浏览器高级参数
重新启动一个新的Chrome浏览器/Applications/Google\ Chrome.app/Contents/MacOS/Google\Chrome --disable-web-security --user-data-dir=/Users/shang/Downloads/chrome --incognito–disable-web-security关闭安全策略(浏览器可以直接进行跨域请求资源)–user-data-dir指定一新的工作目录–incognito使用隐身模式...原创 2022-04-15 11:00:50 · 2667 阅读 · 0 评论 -
php 命令启动静态服务
查看所有命令➜ ~ php --helpUsage: php [options] [-f] <file> [--] [args...] php [options] -r <code> [--] [args...] php [options] [-B <begin_code>] -R <code> [-E <end_code>] [--] [args...] php [options] [-B <begin_code&g原创 2022-04-09 15:59:14 · 1304 阅读 · 0 评论 -
活码需求流程图
活码需求活码流程#mermaid-svg-78LdYbdgUz5zc98y {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-78LdYbdgUz5zc98y .error-icon{fill:#552222;}#mermaid-svg-78LdYbdgUz5zc98y .error-text{fill:#552222;stroke:#552222;}#mermaid-s原创 2022-03-15 22:22:34 · 173 阅读 · 0 评论 -
公众号生成带参数的二维码
公众号生成带参数的二维码转载 2022-03-08 20:06:01 · 3702 阅读 · 0 评论 -
在微信外唤起微信小程序
在微信外唤起小程序转载 2022-03-08 19:48:52 · 3857 阅读 · 0 评论 -
阿里云Serverless实践
阿里云ServerLess最佳实践,Serverless的全称是Serverless computing无服务器运算原创 2022-02-16 19:19:43 · 1642 阅读 · 0 评论 -
优化前端部署服务
一次编译,通过不同环境变量对环境进行区分。原创 2022-02-15 18:18:11 · 1544 阅读 · 0 评论 -
Typora 皮肤微调
/** user Custom CSS ======================================= **/blockquote .md-pair-s > code { font-weight: 800; color: #d45c00;}blockquote { border-left: 4px solid #7fd68f; background: #ddffda; color: #333333; padding-top: 0.5rem; padd.原创 2021-12-22 14:42:07 · 297 阅读 · 0 评论 -
Vue2.0与Vue3.0的区别
对比入口使用方式首先我们先打开main.js文件,会发现它与过去的版本发生了一些变化://vue3.0import { createApp } from 'vue';import App from './App.vue'createApp(App).mount('#app')//vue2.0import Vue from 'vue'import App from './App.vue'Vue.config.productionTip = falsenew Vue({ render原创 2021-10-09 21:52:07 · 951 阅读 · 0 评论 -
泛域名-域名解析
子域名分段参数参数截取位置完整示例应用场景一段domain${domain}.csdn.comeditor.csdn.com线上环境两段subdomain, domain${subdomain} - ${domain}.csdn.comstage-editor.csdn.com基准环境(测试环境)三段envdomain, subdomain, domain${envdomain} - ${subdomain} - ${domain}.csdn.com...原创 2021-05-10 12:23:46 · 513 阅读 · 0 评论 -
静态资源域名进行散列
前情提要为了加速前端静态资源的加载。我们会把静态资源散列到不同的域名上。从而最大力度的使用浏览器的并发功能。查找资源查找HTML资源find . -type f -name "*.html" 查找JS资源find . -type f -name "*.js" 将两条合并在一起find . -type f -name "*.html" -o -name "*.js"实际产出如下:Downloads/assets » find . -type f -name "*.html"原创 2021-04-25 11:14:21 · 263 阅读 · 0 评论 -
微前端项目
微前端项目项目管理项目开发项目模块原创 2020-07-08 20:26:28 · 493 阅读 · 0 评论