摘要:
CMD netstat -ano | findstr 8088 taskkill /PID <PID> /F PowerShell Get-NetTCPConnection -Localport 8088 | select Localport,OwningProcess Stop-Process - 阅读全文
摘要:
iOS上安装Chrome 打开Chrome://inspect,选择开始收集日志 新选项卡中访问目标站点 切换回日志收集页面,即可看到日志信息 https://blog.chromium.org/2019/03/debugging-websites-in-chrome-for-ios.html 阅读全文
摘要:
Flash PPAPI NPAPI Chrome vs Flash 来源:https://www.chromium.org/flash-roadmap 来源:https://support.google.com/chrome/a/answer/7084871?hl=zh-Hans Chrome 会自 阅读全文
摘要:
1. 注册AWS账号 https://www.cnblogs.com/cmt/p/13912814.html 2.注册完成之后,选择实例 Ubuntu,下载xxx.pem文件,查看实例得到ip 比如我选择了Ubuntu 20. 3. 下载putty 地址:https://www.putty.org/ 阅读全文
摘要:
前言 此篇我们说的是Powershell5.1低版本到5.1的升级,对于Powershell6(及以上版本)可以跨平台独立安装,在windows上可与之前的版本并存。 首先要整清楚Powershell是Windows Management Framework的一部分,升级Powershell就需要升 阅读全文
摘要:
问题 项目中有个远程服务因为某些原因会访问不通,于是就在调用的那一步挂起无法结束了。 查看代码 代码大概如下 CloseableHttpClient closeableHttpClient = HttpClients.custom() .setConnectionManager(manager) . 阅读全文
摘要:
Chrome Switchs: https://chromium.googlesource.com/chromium/src/+/master/chrome/common/chrome_switches.cc Chrome Pref: https://chromium.googlesource.co 阅读全文
摘要:
import okhttp3.*; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.net.ssl.*; import java.net.*; import java.security.cert.Certif 阅读全文
摘要:
代码 foreach ($server in $servers) { $running = @(Get-Job | Where-Object { $_.State -eq 'Running' }) if ($running.Count -le 8) { Start-Job { Add-PSSnapi 阅读全文
摘要:
有些场景下,我们使用远程连接了某个Server,在远程Server中再想进行远程操作,就会提示错误。因为默认的认证信息只会传递一跳。 对此,微软官方文档给出的解决方案是:https://docs.microsoft.com/en-us/powershell/scripting/learn/remot 阅读全文