上一页 1 2 3 4 5 6 7 ··· 35 下一页
摘要: 本文测试环境为deepin系统,其他系统操作基本一致 1. 确保ssh开启 ``` sudo apt-get install openssh-server sudo systemctl start sshd ``` 2. 安装vnc server ``` sudo apt install x11vn 阅读全文
posted @ 2023-09-08 16:16 Hey,Coder! 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 如果需要在运行时调用T4模板,一般有以下几种方式 1. 通过TextTransform.exe传递参数的模式(https://www.cnblogs.com/ives/p/8760661.html) 2. 通过运行时T4脚本生成的对象调用(https://www.cnblogs.com/ives/p 阅读全文
posted @ 2023-09-01 14:48 Hey,Coder! 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 核心逻辑为通过sheet.GetMergedRegion(i)获取所有的合并区域信息,随后检测单元格是否在此区域内 新增对象识别合并单元格的开始、结束位置 ``` /// /// 获取指定行列的数据 /// /// /// /// public ICell GetCell(int row, int 阅读全文
posted @ 2023-08-18 17:30 Hey,Coder! 阅读(169) 评论(0) 推荐(0) 编辑
摘要: ### 基础通信模型 server : bind、listen、accept、read、write、read、close client:connect、write、read、close ### 帮助类 ``` public class SocketHelper : IDisposable { pri 阅读全文
posted @ 2023-08-17 16:56 Hey,Coder! 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1. 安装依赖 sudo apt-get install -y -no-install-recommends libc6 libgcc1 libgssapi-krb5-2 libicu7 libssl1.1 libstdc++6 zliblg 2. 解压官网下载的文件 tar zxf dotnet- 阅读全文
posted @ 2023-08-09 17:36 Hey,Coder! 阅读(78) 评论(0) 推荐(0) 编辑
摘要: ### 使用方法 0. 建立实体 注意:通过Description在用户获取模板时输出到标题中,如果不配做则为字段名; ExcelExIndexAttrbute可以调整字段所在的列索引,否则将按字段顺序依次向后排序; 另外,ExcelExIndexAttrbute为重设列索引,其他字段如果未设置此特 阅读全文
posted @ 2023-08-02 13:59 Hey,Coder! 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ``` public class GZipHelper { /// /// 字符串压缩 /// /// /// public static byte[] Compress(byte[] data) { try { MemoryStream ms = new MemoryStream(); GZipS 阅读全文
posted @ 2023-07-17 15:37 Hey,Coder! 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 安装走官网安装,选择底部的下载(包含网络功能) https://ryujinx.org/download ![](https://img2023.cnblogs.com/blog/944369/202307/944369-20230702213251568-339821326.png) 安装ava版 阅读全文
posted @ 2023-07-02 22:10 Hey,Coder! 阅读(1467) 评论(0) 推荐(0) 编辑
摘要: ## 背景 两台服务器,其中windows能够联网,linux不能联网 windows为windows server 2016 linux为centos7 ## 配置windows时间服务 配置HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ 阅读全文
posted @ 2023-06-28 13:06 Hey,Coder! 阅读(441) 评论(0) 推荐(0) 编辑
摘要: #include //设置本程序进程基本为实时执行,快速退出。 SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS); SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_ 阅读全文
posted @ 2023-06-21 17:57 Hey,Coder! 阅读(61) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 35 下一页