#python去重脚本 # -*- coding:utf-8 -*- #! python2 import shutil a=0 readDir = "old.txt" #old writeDir = "new.txt" #new lines_seen = set() outfile = open(w ...
分类:
其他好文 时间:
2020-07-07 19:52:23
阅读次数:
94
从 http://oldlinux.org/Linux.old/bochs/ 下载 Linux0.00 源码 linux-0.00-050613.zip, 并解压: 解压 linux-0.00-rh9.tar.gz: 得到这三个文件: 修改 head.s,在最开始添加 .code32,否则会出现“E ...
分类:
系统相关 时间:
2020-07-07 13:33:34
阅读次数:
71
试图修改max_allowed_packet 参数大小,无效。 在mysqldump 出文件的开头添加了以下文本,恢复成功,source 不报错。 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 S ...
分类:
数据库 时间:
2020-07-06 12:50:24
阅读次数:
119
[C 库函数 - rename() C 标准库 - 描述C 库函数 int rename(const char *old_filename, const char *new_filename) 把 old_filename 所指向的文件名改为 new_filename。声明下面是 rename() ... ...
分类:
其他好文 时间:
2020-07-06 09:13:25
阅读次数:
65
字符串方法帮助您处理字符串。 字符串方法和属性 原始值,比如“Bill Gates”,无法拥有属性和方法(因为它们不是对象)。 但是通过 JavaScript,方法和属性也可用于原始值,因为在执行方法和属性时 JavaScript 将原始值视为对象。 字符串方法和属性 原始值,比如“Bill Gat ...
分类:
编程语言 时间:
2020-07-04 10:31:28
阅读次数:
123
Archive old log files NLog 4.5 makes it easy to setup archive logic to move/cleanup old files with dynamic fileName-Layout. You just need to configure ...
分类:
其他好文 时间:
2020-07-03 15:55:03
阅读次数:
68
3.1 添加文件 当前版本的 uboot 中肯定是已经没有 S3C24x0 这种老芯片了,我们需要找一份稍为 old 一点的 u-boot 将 s3c24x0 有关的文件都添加进来。 文件或目录 作用 ./arch/arm/cpu/arm920t/s3c24x0 s3c24x0 芯片相关的启动代码 ...
分类:
其他好文 时间:
2020-07-01 20:16:47
阅读次数:
88
<script>// 创建对象:var person = { firstName: "Bill", lastName : "Gates", id : 678, fullName : function() { return this.firstName + " " + this.lastName; } ...
分类:
其他好文 时间:
2020-07-01 14:22:09
阅读次数:
57
安装 bochs sudo apt-get install bochs suao apt-get install bochs-x 下载Linux0.11镜像文件 从 http://oldlinux.org/Linux.old/bochs/ 下载 linux-0.11-devel-060625.zip ...
分类:
系统相关 时间:
2020-06-30 11:13:21
阅读次数:
125
import os import shutil import time start_time = time.time() # 需要被复制的文件夹 old_path = r'C:\old_dir' new_path = r'C:\new_dir' all_list = os.listdir(old_p ...
分类:
编程语言 时间:
2020-06-29 22:38:13
阅读次数:
131