文章归档

第14/21页
  1. SRS配置笔记

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

  2. nginx-rtmp配置

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

  3. nginx-http-flv配置

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

  4. Livego配置笔记

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

  5. ffmpeg&ffplay&ffprobe常用命令

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

  6. Anaconda常用操作

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

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

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

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

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

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

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

  10. 研发工具-MybatisPageHelper

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

  11. 使用GitHubGist管理代码片断

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

  12. TypeScript学习笔记

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

  13. 研发规约-jUnit测试

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

  14. 研发规约-RESTful接口约定

    RESTful风格简介 定义 REST = REpresentational State Transfer = 表现层状态转移 REST描述的是在网络中Client/Server的一种交互风格,并非强制性规范。 名词&资源 URL中只使用名词来指定资源,原则上不使…

  15. Angular代码片段

    来源 本文档直接取自GitHub30 seconds of angular项目。 Table of contents Beginner snippets Accessing Enums in template Cheat Sheets and Checklists…