搜索结果
查询Tags标签: err,共有 632条记录-
SRS流媒体服务器——源码分析——基本流程简单分析
SRS流媒体服务器——源码分析——基本流程简单分析 前言 部门打算用SRS搭建直播源站,由我负责完成,所以借此机会学习SRS相关内容,对我也是提升的机会,最近也有动手在自己的阿里云服务器搭建各个模式的集群和看了一些源码。我自己是一个记性差的人,所以喜欢总结和整理…
2022/1/27 20:04:44 人评论 次浏览 -
axios拦截器与基本使用
一、拦截器介绍一般在使用axios时,会用到拦截器的功能,一般分为两种:请求拦截器、响应拦截器。请求拦截器在请求发送之前进行必要操作处理,例如添加统一cookie、请求体加验证、设置请求头等,相当于是对每个接口里相同操作的一个封装。响应拦截器响应拦截器在响应数据…
2022/1/27 6:04:32 人评论 次浏览 -
2003 - Can‘t connect to MySQL server on ‘*.*.*.*‘ (10060 “Unknown err
navicat 连接不上服务器上的MySQL 并报错 2003 - Cant connect to MySQL server on *.*.*.* (10060 "Unknown err 最终发现是服务器上的安全组配置未配置3306端口 即可连接成功
2022/1/26 19:04:19 人评论 次浏览 -
使用 FormatMessage 格式化 Windows 错误码.md
https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-formatmessage#include <string>#ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif // !WIN32_LEAN_AND_MEAN #include <Windows.h>std::string str_win_err(int err)…
2022/1/26 7:04:14 人评论 次浏览 -
Viper包的钩子函数
Viper包的钩子函数自动监听配置文件是否改变 改变以后又做什么操作viper.WatchConfig() // 自动判断配置文件是否改变 viper.OnConfigChange(func(e fsnotify.Event) {// 配置文件发生变更之后会调用的回调函数fmt.Println("Config file changed:", e.Name)// 反…
2022/1/25 6:04:29 人评论 次浏览 -
ubuntu定时任务 gPRC AHA256加密算法
ubuntu设置cron定时执行任务 https://blog.csdn.net/leisurelen/article/details/106015948 GNU nano使用保存退出的说明 https://blog.csdn.net/weixin_44166997/article/details/93216783 rtsp https://www.cnblogs.com/haibindev/p/7918733.htmlgRPC https://mp.weixin…
2022/1/23 7:06:25 人评论 次浏览 -
Build Containers From Scratch in Go用Go从零实现容器
转载自 Ali Josie-Build Containers From Scratch in Go 2020/9/17,在过去的几年里,容器的使用量显著增加。容器的概念已经出来好多年了,但是由于Docker易于使用的命令行使得容器从2013年开始在开发者里流行(我觉得主要是可复用的镜像)。 在这个系列中,我将尝试演示…
2022/1/22 23:06:27 人评论 次浏览 -
网络编程--TCP套接字(C/CC++)
效果图 可实现自由通讯 客户端:#define _WINSOCK_DEPRECATED_NO_WARNINGS #define _CRT_SECURE_NO_WARNINGS #include <WinSock2.h> #include <iostream> #include <stdio.h> #pragma comment(lib,"ws2_32.lib")int main(void) {while (1){…
2022/1/22 21:07:08 人评论 次浏览 -
mysql从一个数据库向另一个数据库插数据
var mysqlr = require(mysql); var readConnection = mysqlr.createConnection({//创建第一个连接host: 112.74.82.181,user: root, password: root.,database: ce,dateStrings: true,charset: utf8mb4,pagesize: 30,connectionLimit: 10,reuseDB: true }); readConnectio…
2022/1/19 19:28:35 人评论 次浏览 -
mysql从一个数据库向另一个数据库插数据
var mysqlr = require(mysql); var readConnection = mysqlr.createConnection({//创建第一个连接host: 112.74.82.181,user: root, password: root.,database: ce,dateStrings: true,charset: utf8mb4,pagesize: 30,connectionLimit: 10,reuseDB: true }); readConnectio…
2022/1/19 19:28:35 人评论 次浏览 -
node 单例模式的mysql处理的简单封装
使用单例模式,数据库线程池,网上找的一些不是很好用,就自己简单写了一个,方便后期使用 const mysql = require(mysql); //导入mysql中间件const lodash = require(lodash);// 默认配置文件 var defaultConfig= require(@/config/mysql.js);class DB {// 多次连接共享实…
2022/1/19 19:22:52 人评论 次浏览 -
node 单例模式的mysql处理的简单封装
使用单例模式,数据库线程池,网上找的一些不是很好用,就自己简单写了一个,方便后期使用 const mysql = require(mysql); //导入mysql中间件const lodash = require(lodash);// 默认配置文件 var defaultConfig= require(@/config/mysql.js);class DB {// 多次连接共享实…
2022/1/19 19:22:52 人评论 次浏览 -
c++仿照go语言的error,函数返回值封装
c++仿照go语言,程序返回错误时,可以附加错误信息 #ifndef __ERRORMSG_H_ #define __ERRORMSG_H_ #include <string> struct Errormsg {typedef enum{OK = 0,ERR = 1,} HerrorCode;HerrorCode code = OK;std::string desc = "";int line;std::string fil…
2022/1/19 1:05:54 人评论 次浏览 -
c++仿照go语言的error,函数返回值封装
c++仿照go语言,程序返回错误时,可以附加错误信息 #ifndef __ERRORMSG_H_ #define __ERRORMSG_H_ #include <string> struct Errormsg {typedef enum{OK = 0,ERR = 1,} HerrorCode;HerrorCode code = OK;std::string desc = "";int line;std::string fil…
2022/1/19 1:05:54 人评论 次浏览 -
golang csv写入基础
package main import ( "encoding/csv" "fmt" "os" ) type CsvAPI struct { f *os.File } func (h *CsvAPI) CreateFile(filename string) { f, err := os.OpenFile(filename, os.O_CREATE|os.O_RDWR, 0644) if err != nil { fmt.Println(&…
2022/1/18 23:09:27 人评论 次浏览