首页
网络资源
技术分享
云资源
分享你我
行动起来,活在当下
累计撰写
108
篇文章
累计创建
13
个标签
累计收到
0
条评论
栏目
首页
网络资源
技术分享
云资源
目 录
CONTENT
最新文章
golang实现http代理服务
package main import ( "crypto/tls" "fmt" "io" "log" "net" "net/http" "net/http/httputil" "net/url" "strings" "time" ) // 默认目标连接超时时间 const
2024-11-30
3
0
0
某东滑动算法
import random import matplotlib.pyplot as plt import numpy as np class GTrace(object): def __init__(self): self.__pos_x = [] sel
2024-11-13
7
0
0
反向代理神器:Nginx Proxy Manager 反代缺少参数处理
第一步 在Nginx中配置一个站点 这里需要填写外网访问的域名、内网代理ip以及端口信息
2024-08-06
6
0
0
C# 使用NPOI手搓excel转html
/// <summary> /// excel转html /// </summary> public class ExcelToHtml { /// <summary> /// excel转html /// </summary> /// <param name="in
2024-08-06
6
0
0
技术分享
.net 通过npoi和excel模版标识实现复杂的报表导出
public class ExcelExporter { /// <summary> /// 报表保存路径 /// </summary> protected static string ReportSavePath =
2024-08-05
6
0
0
C# Json转换DataTable
public static class JsonToDataTableConverter { /// <summary> /// Json转换为DataTable /// </summary> /// <param name="json"></param> p
2024-08-05
10
0
0
docker 部署redis 并以配置文件方式启动
<p>先创建redis 数据目录和配置文件目录</p> <h5>创建数据目录</h5> <pre><code>mkdir -p /root/redis/data</code></pre> <h5>创建配置文件目录</h5> <pre><code>mkdir -p /root/redis/conf</code></pre> <h5>创建配置文件</h5> <pre><code>vim redis.conf</code></pre> <pre><code class="language-bash"> # Redis configuration file example. # # Note that in order to read the configuration file, Redis must be # started with the file path as first argument: # # ./redis-server /path/to/redis.conf # Note on units: when memory size is needed, it is possible to specify # it in the usual form of 1k 5GB 4M and so forth: # # 1k =<!--autointro--></code></pre><!--autointro--><!--111-->
2023-06-07
8
0
0
技术分享
uniapp 使用sqlite 保存数据封装使用
<p>```<br>class Sqlite {</p> <p> #privatedbName = ‘’;</p> <p> #privatePath = ‘’;<br> constructor(dbName, path = ‘’) {<br> this.#privatedbName = dbName;<br> this.#privatePath = path;<br> console.log(this.#privatedbName, this.#privatePath);<br> }<br> // 监听数据是否打开<br> isOpenDB() {<br> let dbName = this.#privatedbName;<br> let dbPath = this.#privatePath || <code>_doc/${dbName}.db</code>;<br> //数据库打开了就返回true,否则返回false<br> let isopen = plus.sqlite.isOpenDatabase({<br> name: dbName,<br> path: dbPath,<br> });<br> return isopen;<br> }</p> <p> // 创建数据库/打开数据库<br> openDB() {<br> return new Promise((resolve, reject) =<!--autointro--></p> <!--110-->
2023-02-27
5
0
0
技术分享
Open-IM-SDK-Web改版本支持Open-IM-SDK-Nodejs
<p>地址:<a href="https://github.com/Child-Cheng/Open-IM-SDK-Nodejs">https://github.com/Child-Cheng/Open-IM-SDK-Nodejs</a></p><!--autointro--><!--109-->
2023-02-16
10
0
0
技术分享
C# 多进程管道双向通信
<p>服务端代码</p> <pre><code> public class ServerPipe { #region 成员变量 /// <summary> /// 接受名称 /// </summary> private string _receivePipeName; /// <summary> /// 接受数据回调函数 /// </summary> public event ResultCallBackPoint _resultCallBackEvent; /// <summary></summary><!--autointro--></code></pre><!--autointro--><!--108-->
2022-12-14
4
0
0
技术分享
1
2
3
4
5
...
11