相关文章
Rocky9.2基于http方式搭建局域网yum源
当前负责的项目有几十台Linux服务器,在安装各类软件的时候需要大量依赖包,而项目部署的环境属于内网环境,与Internet网完全隔离,无法采用配置网络yum源的方式安装rpm包,直接在每台linux服务器上配置本地yum源也比较麻烦,而采用直接下载rpm包用rpm命令安装更是费时费力。所…
编程日记
2024/12/22 23:11:04
【c#-Nuget 包“在此源中不可用”】 Nuget package “Not available in this source“
标题c#-Nuget 包“在此源中不可用”…但 VS 仍然知道它吗?
(c# - Nuget package “Not available in this source”… but VS still knows about it?)
背景: 今日从公司svn 上拉取很久很久以前的代码,拉取下来200报错,进一步发…
编程日记
2024/12/20 2:47:22
用js写一个函数,判定一个值是否为空
用js写一个函数,判定一个值是否为空
export const isNull (value) > {if (value 0) {// 若不去单独处理0,0为被默认判定为空,所以这里特殊处理0为非空return false} else {if (typeof value object) {// 这里单独判断空数组和空对象if (value.len…
编程日记
2024/12/18 7:04:30
Qt UDP传送图片
Qt UDP传送图片,server发送,client接收。 server
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QTime>
#include <QPainter>#define TRAN_SIZE 1024;
struct ImageFrameHead
{int funCode; …
编程日记
2024/12/18 21:37:40
SpringBoot集成Prometheus实现监控
SpringBoot配置Prometheus
pom.xml 引入监控以及prometheus依赖 <dependency><groupId>io.micrometer</groupId><artifactId>micrometer-registry-prometheus</artifactId></dependency><dependency><groupId>org.springfram…
编程日记
2024/12/22 0:37:44
深拷贝与浅拷贝(对象的引用)
可以用赋值
1.对象的引用
代码: <!-- 1.对象的引用 --><script>const info{name:"lucy",age:20}const objinfo;info.name"sam"console.log(obj.name) //sam</script>图解:
等于号的赋值,对象info…
编程日记
2024/12/7 21:44:46
Docker部署Redis内存数据库
1、准备工作
docker pull redis:6.2.6
Pwd"/data/software/redis"
mkdir ${Pwd}/{data,logs} -p
chmod 777 ${Pwd}/logs2、添加配置文件
cat > ${Pwd}/data/redis.conf << EOF
bind 0.0.0.0
port 6379
requirepass 123456
logfile /tmp/redis.log
save 6…
编程日记
2024/12/22 0:53:17