移动云MAS短信发送代码

using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http.Headers; using System.Security.Cryp...

树的数据结构定义

#include<bits/stdc++.h> using namespace std; const int m = 10; //树的度 typedef struct node; typedef node *tree; struct node { cha...

查询 ASP.NET Core 版本命令

# 查看已安装的 .NET SDK 版本(包含 ASP.NET Core 相关) dotnet --list-sdks # 查看已安装的 .NET 运行时版本(包含 ASP.NET Core 运行时) dotnet --list-runtimes

查内网linux服务器出口IP

查内网linux服务器出口IPcurl ipinfo.io/ipcurl ifconfig.me curl icanhazip.com curl ipinfo.io/ip curl checkip.amazonaws.com

条码打印软件安装

条码打印软件安装:

未命名文章

# deepseek本地部署简要教程## 安装ollama访问:https://ollama.com/![](https://wxy-blog.oss-cn-hangzhou.aliyuncs.com/wxy-blog/2024/20250213081953081.png)![](https:...

打印栈的出栈序列

#include<bits/stdc++.h> using namespace std; vector<int> ppp; int n; //vector<int> temp; void dfs(int index,stack<int> s,v...

快速部署 Shadowsocks Docker版

快速部署 Shadowsocks Docker版 | 好运来了clash配置文件:# Clash for Windows 节点配置文件基础模板示例 # 代理服务器列表 proxies: - name: "雨云美国" # 节点名称 type: ss # 节点类型 ...

快速幂

递归快速幂//递归快速幂 int qpow(int a, int n) { if (n == 0) return 1; else if (n % 2 == 1) return qpow(a, n - 1) * a; else { ...

当Ubuntu开启ufw后

当Ubuntu开启ufw后docker容器的内部网络也会受限制,需要allow内部网络