摘要:
App.config <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="a1" value="a1_result"/> <add key="a2" value="a2_result"/> < 阅读全文
摘要:
方法一 @echo off if not exist "c:\a\b\c\abc123.exe" (goto tagA) else (goto tagB) :tagA echo doing A..... goto end :tagB echo doing B..... goto end :end e 阅读全文
摘要:
表格设计工具 Microsoft Visual Studio 2012 表格居中 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>表格居中</title> <style> table { border-collapse: col 阅读全文
摘要:
###Selenium 控制 Chrome from selenium import webdriver from selenium.webdriver.chrome.service import Service import time s = Service(r"C:\Users\Administ 阅读全文
摘要:
以安装streamlit为例 只下载不安装,命令如下 pip3 download -d g:\1\ streamlit 忽略依赖安装 pip3 install --no-deps *.whl 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/342686109 阅读全文
摘要:
python3 import os from glob import glob import subprocess as sp class PowerShell: # from scapy def __init__(self, coding, ): cmd = [self._where('Power 阅读全文
摘要:
@echo off for %%i in (c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) do (if exist %%i:\ (dir %%i:\ /s /b /a-D|find /I "spring-beans")) 阅读全文
摘要:
实验环境 域账号zhangsan、lisi 域用户组group1中有zhangsan、lisi 共享主机目录结构: d:\share\profiles\lisi d:\share\profiles\zhangsan 共享文件夹profiles 实验目的 用户zhangsan只能在共享目录profil 阅读全文
摘要:
使用C#中的List<T> $objlist=New-Object System.Collections.Generic.List[System.String] $objlist.Add("Hello") $objlist.Add("World") foreach ($item in $objlis 阅读全文