2020102413021819 X86系统下载安装 2020102413031192 X64系统下载安装 以上安装包根据系统二选一 ===============================...
撸空投专用!
扫码加入微信群! http://www.shashou47.com/1024.html 小白看这里 ==============================================...
硬盘的S.M.A.R.T
硬盘的S.M.A.R.T中的 05 C4 C5 C6是关于硬盘坏道的计数 05是修复计数 C4是计数(修复和未修复都计数) 05没数据 C4有数据就是未修复的坏道 C5是当前待修复的扇区 就是在遇到这...
PyThon 2.x 简单爬虫 正则匹配
#coding=utf-8 import urllib url = "http...
PyThon 2.x 下载文件带进度显示
#coding=utf-8 import urllib import os def Schedule(a...
SQL 语句进行 like in 参数化
sql 语句进行 like in 参数化,按照正常的方式是无法实现的 我们一般的思维是: Like 参数: string strSql = "select * from Person.Address ...
C# 多播委托
using System; using System.Collections.Generic; using System.Li...
C# 匿名方法 lambda表达式 泛型委托
using System; using System.Collections.Generic; using System.Li...
C# 单例模式
using System; using System.Collections.Generic; using System.Li...
C# 编写代码的命名规则
Pascal 规则 每个单词开头的字母大写(如 TestCounter). Camel 规则 除了第一个单词外的其他单词的开头字母大写. 如. testCounter. Upper 规则...