上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页
摘要: ``` #!/usr/bin/env python # _*_ coding: utf-8 _*_ # @Time : 2017/10/19 14:38 # @Author : otfsenter # @File : operation_registry.py import _winreg def delete_sub_key(key0, key1, key2=""): ... 阅读全文
posted @ 2017-10-20 10:11 idlewith 阅读(162) 评论(0) 推荐(0) 编辑
摘要: ``` #!/usr/bin/env python # _*_ coding: utf-8 _*_ # @Time : 2017/10/20 9:36 # @Author : otfsenter # @File : open_connections.py import ctypes import subprocess import time import win32gui as... 阅读全文
posted @ 2017-10-20 10:09 idlewith 阅读(170) 评论(0) 推荐(0) 编辑
摘要: ``` schtasks /create /sc minute /mo 5 /st 00:00:00 /tn "ws_monitor" /tr "C:\Python27_64\python.exe C:\cell_manage\ws_monitor.py" /ru "System" /f ``` 阅读全文
posted @ 2017-10-17 08:50 idlewith 阅读(178) 评论(0) 推荐(0) 编辑
摘要: c_fib.c include int Cfib(int n) { if (n 阅读全文
posted @ 2017-10-10 12:38 idlewith 阅读(209) 评论(0) 推荐(0) 编辑
摘要: ``` 转载 #!/usr/bin/env python #-*-coding=gbk-*- """ 原始数据,用于建立模型 """ #缩水版的courses,实际数据的格式应该为 课程名\t课程简介\t课程详情,并已去除html等干扰因素 courses = [ u'Writing II: Rhetorical Composing', ... 阅读全文
posted @ 2017-10-07 12:46 idlewith 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 修改python安装目录下Lib\distutils\msvc9compiler.py文件 简单写了一个测试文件(命名为test.py): 在该目录下,再新建一个py文件(命名为setup.py): 阅读全文
posted @ 2017-09-22 15:42 idlewith 阅读(424) 评论(0) 推荐(0) 编辑
摘要: ``` Sub ConvertPDFCenter() Dim workPath workPath = ThisWorkbook.Path With ActiveSheet.PageSetup .LeftMargin = Application.InchesToPoints(0.708661417322835) .RightMargin = ... 阅读全文
posted @ 2017-09-07 17:14 idlewith 阅读(174) 评论(0) 推荐(0) 编辑
摘要: ``` import win32api from ctypes import windll def click(x, y, button=1, n=1): for i in range(n): flag_press = 2 ** ((2 * button) - 1) flag_release = 2 ** (2 * button) win... 阅读全文
posted @ 2017-09-06 13:32 idlewith 阅读(309) 评论(0) 推荐(0) 编辑
摘要: ``` https://www.izlesene.com/video/revised-method-how-to-activate-office-2013-proffesional-plus-on-windows-7-2015-march/8245952 ``` 阅读全文
posted @ 2017-08-30 09:28 idlewith 阅读(218) 评论(0) 推荐(0) 编辑
摘要: ``` 1- HKCU\Software\Microsoft\Avalon.Graphics clear all except default 2- HKCU\Control Panel\Desktop FontSmoothing 2 FontSmoothingGamma 0x00000000(0)... 阅读全文
posted @ 2017-08-30 09:03 idlewith 阅读(134) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页