摘要: #查看jvm进程pid jps #列出所有信号名称 kill -l # Windows下信号常量值 # 简称 全称 数值 # INT SIGINT 2 Ctrl+C中断 # ILL SIGILL 4 非法指令 # FPE SIGFPE 8 floating point exception(浮点异常) 阅读全文
posted @ 2024-05-06 17:24 杜子烟 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. <style> html { filter: grayscale(1); -webkit-filter:grayscale(1); } </style> 2. <html style="filter:grayscale(1);-webkit-filter:grayscale(1)"> </ht 阅读全文
posted @ 2023-02-21 09:37 杜子烟 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1.移动文件夹 mv /home/weblogic/原目录 /新目录/weblogic 2.删除文件 rm -r /home/test/www/site/logs rm -r :rm -r 只能用于删除文件,不能用于删除文件夹。 rm -R:rm -R既能用于删除文件,也能用于删除文件夹。 3.查看 阅读全文
posted @ 2022-08-25 16:36 杜子烟 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1、身份证号码计算年龄: select (substring(now(),1,4)-substring('证件号',7,4))-(substring('证件号',11,4)-date_format(now(),'%m%d')>0) as 年龄 2、身份证号码计算性别 SELECT IF (MOD(S 阅读全文
posted @ 2022-08-25 14:21 杜子烟 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 1.C#用法 安装BouncyCastle.Crypto依赖包 /// <summary> /// Base64字符串转16进制字符串 /// </summary> /// <param name="base64String"></param> /// <returns></returns> pub 阅读全文
posted @ 2022-08-09 16:07 杜子烟 阅读(1667) 评论(0) 推荐(0) 编辑
摘要: 某用户执行net core sdk 版本不生效 sudo chmod +x /home/username/netcore3.1sdk/dotnet //某个用户执行新版本net core sdk 阅读全文
posted @ 2020-08-03 09:40 杜子烟 阅读(95) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.IO; using System.Xml.Serialization; namespace ConsoleApp.Test { public class XmlTest { pu 阅读全文
posted @ 2020-04-23 15:08 杜子烟 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 1.在NuGet程序包中添加NSoup包 阅读全文
posted @ 2019-08-29 16:12 杜子烟 阅读(843) 评论(0) 推荐(0) 编辑
摘要: 第一步:在 Ubuntu 中安装 VSFTPD 服务器 修改的时候把输入法切换到英文输入、大小写一定要看清楚再输入、移动光标不要按方向键;“a”是进入编辑模式,“ESC”键是退出编辑模式;非编辑模式下“k”是把光标向上移动、“j”向下、“h”向左、“l”向右;“x”是非编辑模式删除键;编辑模式下一边 阅读全文
posted @ 2019-08-20 11:55 杜子烟 阅读(336) 评论(0) 推荐(0) 编辑
摘要: Windows 10 子系统Linux重启(不重启Win10) Using CMD (Administrator) net stop LxssManager net start LxssManager Using CMD (Administrator) net stop LxssManager ne 阅读全文
posted @ 2019-08-19 13:36 杜子烟 阅读(1057) 评论(0) 推荐(1) 编辑