This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] | |
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,01,00,3a,00,00,00,00,00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
egypt_guy:https://cdn4.iconfinder.com/data/icons/adiante-apps-app-templates-incos-in-grey/512/app_type_museum_512px_GREY.png | |
sphinx:http://icons.veryicon.com/png/System/Landmarks/egypt%20sphynx.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 打开Excel并填充数据,然后画出占用内存前十的程序的饼状图 | |
# create new excel instance | |
$objExcel = New-Object -comobject Excel.Application | |
$objExcel.Visible = $True | |
$objWorkbook = $objExcel.Workbooks.Add() | |
$objWorksheet = $objWorkbook.Worksheets.Item(1) | |
# write information to the excel file | |
$i = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=TEXT((LEFT(B1,10)+8*3600)/86400+70*365+19,"yyyy-MM-DD HH:mm:ss") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import matplotlib.pyplot as plt | |
plt.rcParams['font.sans-serif'] = ['SimHei'] # 用来正常显示中文标签 | |
plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private Sub RegExp_Replace() | |
Dim RegExp As Object | |
Dim SearchRange As Range, Cell As Range | |
'此处定义正则表达式 | |
Set RegExp = CreateObject("vbscript.regexp") | |
RegExp.Pattern = "[0-9]{5}" | |
'此处指定查找范围 |