摘要:
1. 宿主机pull最新镜像 docker pull mcr.microsoft.com/mssql/server:latest 2. 宿主机命令行跑docker run docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=pwd" -e "MSSQL_AGE 阅读全文
摘要:
前提:WindowStyle="None" ResizeMode="NoResize" Step1:在窗体构造函数中加SourceInitialized事件 public MainWindow() { InitializeComponent(); SourceInitialized += MainW 阅读全文
摘要:
C#垃圾回收机制导致对象已经销毁但不为null而引发的报错,使用该对象时应判断对象是否已销毁,已销毁则重新new一个。 MyForm myForm=null; if(myForm==null) myForm=new MyForm(); else if(myForm!=null && myForm.I 阅读全文
摘要:
1.Failed to flush outgoing items {:outgoing_count=>1, :exception=>"WebHDFS::IOError" ... 解决方案:确认hdfs-site.xml对WebHdfs进行了配置,具体配置如下: <property> <name>df 阅读全文
摘要:
因为记录数量多,如果以原来模板行做深拷贝会很慢,所以直接去循环模板行拿结构再新增行。 参考链接:https://www.cnblogs.com/binye/articles/9351041.html CT_Row ctrow = row.GetCTRow(); table.RemoveRow(tab 阅读全文
摘要:
1. pyinstaller打包成exe后报错 脚本在Pycharm和IDE环境下运行正常,但是用pyinstaller打包成exe报错,"Failed to execute script xxx exe;用try...except...finally捕获到错误"No module named 'x 阅读全文
摘要:
解决身份证号导出到Excel中变科学计数的方案:https://www.2cto.com/kf/201203/124830.html 【="XX"在Excel中会被看成是字符串】 阅读全文
摘要:
//匹配非特殊字符 var reg=@"^[\u4e00-\u9fa5a-zA-Z0-9\-_\(\(\)\)]+$"; //匹配网络文件路径 var reg=@"((http|ftp|https)://)(([a-zA-Z0-9\._-]+\.[a-zA-Z]{2,6})|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,4... 阅读全文
摘要:
SOLID是面向对象设计(OOD)的几条基本原则. Single Responsibility Principle (SRP) Key Points: 同一个class或function只为同一个目的而存在。 Open-Closed Principle Key Points: abstract cl 阅读全文