相关文章
LeetCode 1113.报告的记录
数据准备
Create table If Not Exists Actions (user_id int, post_id int, action_date date, action ENUM(view, like, reaction, comment, report, share), extra varchar(10));
Truncate table Actions;
insert into Actions (user_id, post_id, action_date, action, ext…
建站知识
2024/11/23 4:56:40
idea配置git(gitee)并提交(commit)推送(push)
git程序下载国内镜像地址: https://registry.npmmirror.com/binary.html?pathgit-for-windows/v2.42.0.windows.2/ 解压后放到固定路径: 1.在idea文件->设置中配置git关联项: 2.在Settings设置对话框中,安装Gitee插件。 3.vcs…
建站知识
2024/11/9 3:14:35
企业架构LNMP学习笔记21
URL重写:
ngx_http_rewrite_module 模块用于使用PCRE正则表达式更改请求URI,返回重定向,以及有条件地选择配置。
return
该指令用于结束结束规则的执行并返回状态码给客户端。
403 Forbidden.服务器已经理解请求,但是拒绝执行它
404 Not…
建站知识
2024/10/19 17:13:34
lv3 嵌入式开发-7 linux shell脚本编程(分支语句、循环语句)
目录
1 分支语句
2 多路分支语句
3 for的用法
4 while的用法
5 循环控制语句
6 练习 1 分支语句
语法结构: if 表达式then 命令表fi
如果表达式为真, 则执行命令表中的命令; 否则退出if语句, 即执行fi后面的语句。 if和fi是条件语句的语句括号, 必须成对使用; …
建站知识
2024/11/9 9:21:20
Android11编译第四弹:证书和资源内置
问题:我们智能货柜,终端与云端采用的是MQTT通信,为了更加安全,需要采用HTTPS进行通信。这样,中断需要内置证书。这就需要实现ROM中内置资源,将资源打包到系统中。
一、什么是内置资源
内置资源࿰…
建站知识
2024/11/15 23:57:28
docker 容器pip、git安装异常;容器内web对外端口ping不通
1、docker 容器pip、git安装异常
错误信息: git clone https://github.com/vllm-project/vllm.git Cloning into ‘vllm’… fatal: unable to access ‘https://github.com/vllm-project/vllm.git/’: Failed to connect to 127.0.0.1 port 10808: Connection ref…
建站知识
2024/10/22 15:06:50