阚金翔
达则兼济天下,穷则独善其身
摘要: ​ 针对于不同版本的redis模块版本。使用zadd方法有相对应的注意事项 redis模块版本低于3.0 result= redis_class.zadd(Name, score,'key') 参数类型:string,float,string redis模块版本高于3.0 mapping = {"k 阅读全文
posted @ 2023-09-18 10:51 阚金翔 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1.安装 pyinstaller pip install pyinstaller 注:pip安装会安装到python下默认路径,需要根据实际情况在指定的虚拟环境下进行安装(进入虚拟环境:在cmd终端命令下,进去目录Scripts下执行命令activate后前边显示(flask)表示进入虚拟环境成功) 阅读全文
posted @ 2022-01-04 10:56 阚金翔 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1)复制一整行代码,将光标移至该行,再使用组合键“Ctrl+C”来完成复制操作,无需选择整行。2)剪切一整行代码,将光标移至该行,再使用组合键“Ctrl+X”来完成剪切操作,无需选择整行。3)删除一整行代码,将光标移至该行,再使用组合键“Ctrl+L”来完成删除并加入到剪切板中,无需选择整行4)复制 阅读全文
posted @ 2020-11-23 11:23 阚金翔 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 可空表达式 可空表达式只能是 C# 6.0+ 才可以使用,VS2015+ 版本才支持 在这个表达式出现之前,当我们得到一个对象时,并想要使用这个对象之前,都必须先判断该对象是否为 null,否则使用对象时就会抛出 NullReferenceException 异常(未将对象引用设置到对象的实例)。 阅读全文
posted @ 2020-06-19 15:43 阚金翔 阅读(738) 评论(0) 推荐(0) 编辑
摘要: Windows Registry Editor Version 5.00 #不检查发行商的证书是否吊销[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\WinTrust\Trust Providers\Software Publ 阅读全文
posted @ 2018-10-16 14:01 阚金翔 阅读(1516) 评论(0) 推荐(1) 编辑
摘要: Random rd = new Random(); int random = rd.Next(1000, 1000000); string str = random.ToString(); 创建于2017年1月19日 整理于2017年12月1日 阅读全文
posted @ 2017-12-01 10:20 阚金翔 阅读(152) 评论(0) 推荐(0) 编辑
摘要: static public void SetIERegistry() { try { //获取系统IE版本号 string strIEVersion = SysIeVersion(); if (string.IsNullOrEmpty(strIEVersion) || strIEVersion.Sp 阅读全文
posted @ 2017-11-30 16:14 阚金翔 阅读(3279) 评论(0) 推荐(0) 编辑
摘要: Process proc = null; try { proc = new Process(); proc.StartInfo.FileName = @"C:\Users\Administrator\Desktop\script"; proc.StartInfo.Arguments = string 阅读全文
posted @ 2017-11-30 16:02 阚金翔 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: //实现窗体抖动的效果 Point first = this.Location; for (int i = 0; i < 30; i++) { Random ran = new Random(); Point p = new Point(this.Location.X + ran.Next(10) 阅读全文
posted @ 2017-11-30 13:38 阚金翔 阅读(185) 评论(0) 推荐(0) 编辑
摘要: //文件名 private string curFileName; //图像对象1 private Bitmap curBitmap; //将本地图片保存到pictureBox中 private void button1_Click(object sender, EventArgs e) { Ope 阅读全文
posted @ 2017-11-29 14:57 阚金翔 阅读(1192) 评论(0) 推荐(0) 编辑