2021年01月归档

第4/5页
  1. K8S离线部署笔记-1-操作系统配置

    通用配置 K8S特殊配置

  2. 常用推流测试工具

    Android推流 RTSP Camera https://play.google.com/store/apps/details?id=com.miv.rtspcamera&hl=zh 播流地址: RTSP rtsp://10.10.38.141:5554 HLS…

  3. SRS配置笔记

    官网 http://ossrs.net/srs.release/releases/ https://github.com/ossrs/srs https://github.com/ossrs/srs/wiki/v3 CN Home https://github.c…

  4. nginx-rtmp配置

    Windows预编译版下载地址 http://nginx win.ecsds.eu/download/ http://nginx win.ecsds.eu/download/nginx%201.7.11.3%20Gryphon.zip 直接安装即可,不做赘述 ya…

  5. nginx-http-flv配置

    github https://github.com/winshining/nginx http flv module/blob/master/README.CN.md 源码下载 nginx http flv nginx openssl 编译 配置 注意拷贝stat…

  6. Livego配置笔记

    官网 https://github.com/gwuhaolin/livego/blob/master/README cn.md 二进制下载 https://github.com/gwuhaolin/livego/releases 启动 获取channelkey 访…

  7. ffmpeg&ffplay&ffprobe常用命令

    官网 ffmpeg官网 ffprobe ffplay 常用示例 常用参数 ffmpeg 参数格式 常用参数 常用示例 其它示例 参考文档 FFmpeg 视频处理入门教程 ffprobe,ffplay ffmpeg常用的命令行命令 FFmpeg常用技巧 ffmpeg…

  8. Anaconda常用操作

    换源 查看版本等信息 环境查看 环境管理 环境导入导出 包管理 requirements.txt导入导出 参考文档 https://jakevdp.github.io/blog/2016/08/25/conda myths and misconceptions/…

  9. 研发规约-TypeScript编码风格

    参考文档 https://acexking.github.io/2019/08/14/typescript/ https://www.zhihu.com/question/55701103 https://github.com/microsoft/TypeScri…

  10. 研发规约-ModelMapper对像映射

    简介 项目中经常需要将Model和DTO互转,产生很多 getXXX/setXXX 的模板化代码。使用ModelMapper可以简化转换步骤。 官网 http://modelmapper.org/ 添加依赖 对象示例 源对象: 目标对象: 自动转换 自定义转换 转…

  11. 研发规约-Angular编码风格

    参考文档 https://angular.cn/guide/styleguide https://zhuanlan.zhihu.com/p/29784072 https://www.npmjs.com/package/codelyzer 单一职责 一个文件定义一样…

  12. 研发工具-MybatisPageHelper

    官网 https://github.com/pagehelper/Mybatis PageHelper pom.xml整合 注意需要更新至最新版,以支持SQL排序 配置拦截器插件 公司框架中 MyBatisConfigure.class 已配置: 基本使用示例 推…

  13. 使用GitHubGist管理代码片断

    简介 Gist 是Github的一个子服务. 最简单的功能就是分享代码片段,例如把一些小型脚本放到Gist方便分享和管理. 不同于大型项目使用repository进行管理, Gist就是小型代码片段的分享. 类似的服务还有如 Pastebin 和 Pastie ,…

  14. TypeScript学习笔记

    教程 https://www.typescriptlang.org/docs/home.html https://ts.xcatliu.com https://zhongsp.gitbook.io/typescript handbook/tutorials 参考文…

  15. 研发规约-jUnit测试

    简介 工程必须编写Junit单元测试,只有通过所有测试并达到指定覆盖率之后,才允许构建。 初期不强制要求,视团队接受/排斥情况而定 约定 存放及命名 所有单元测试均放在src/test/java文件夹下,命名为类名+Test(s).java,即对于某个类的所有单元…