IE/Edge 竟然可以转换图片格式

SVG 转 PNG、SVG 转 BMP

在图片上点击右键,选择“图片另存为”

Windows/Office 屏幕录制

office 竟然带有屏幕录制功能,傻傻的偶以前使用 Windows 7 还要找专门的录屏软件:

当然 Windows 10 原生带有屏幕录制功能(Win+G)。

海外版Windows 商店

Win+V



Opera 将Windows 设置成区域为国外,就有免费 VPN 啦

Edge 节能了?

VS 2017 集成了免费的 GIT 仓库

Remote:
Remote: vSTs
Remote: vSTSVSTSv
Remote: vSTSVSTSVST
Remote: VSTS vSTSVSTSVSTSV
Remote: VSTSVS vSTSVSTSV STSVS
Remote: VSTSVSTSvsTSVSTSVS TSVST
Remote: VS tSVSTSVSTSv STSVS
Remote: VS tSVSTSVST SVSTS
Remote: VS tSVSTSVSTSVSts VSTSV
Remote: VSTSVST SVSTSVSTs VSTSV
Remote: VSTSv STSVSTSVSTSVS
Remote: VSTSVSTSVST
Remote: VSTSVSTs
Remote: VSTs (TM)
Remote:
Remote: Microsoft (R) Visual Studio (R) Team Services
Remote:
Remote:
Remote: Found 839 objects to send. (1063 ms)

"Segoe MDL2 Assets"

打开 outlook 并插入一个 html 模板

start OUTLOOK /c ipm.note /a mail.html

通过设置为 Win 10 UWP 应用解除网络隔离

https://sspai.com/post/41137

Windows 10 自带了一款名为 CheckNetIsolation.exe 的命令行工具可以帮助我们将 UWP 及 Windows 8 Metro 应用添加到排除列表。

以下示例 LinrApp

"C:\Program Files\IIS Express\iisexpress.exe" /path:"" /port:8899 /clr:v4.0 /systray:true

browser-sync start --proxy http://localhost:5000/ --files '**/.cshtml, **/.css, **/.js, **/.htm*'

浏览器命令行截图

C:\Users\xiaogezi.cn\AppData\Local\Microsoft\Edge SxS\Application>msedge.exe --headless --disable-gpu --hide-scrollbars --window-size=1280,1920 --screenshot https://www.xiaogezi.cn/

--screenshot=file1.png

--print-to-pdf=file1.png

打印页面DOM:

google-chrome --headless --disable-gpu --dump-dom https://github.com/

参考:

https://developers.google.com/web/updates/2017/04/headless-chrome

function getStyle () {
const { Page, CSS, DOM } = protocol
return Promise.all([
DOM.enable(),
CSS.enable(),
Page.enable()
])
.then(() => {
Page.navigate({ url: 'https://github.com/' })
return new Promise((resolve, _) => {
Page.loadEventFired(() => { resolve(DOM.getDocument()) })
})
})
.then(res => res.root.nodeId)
.then(nodeId => DOM.querySelector({ selector: '.btn-primary', nodeId }))
.then(({ nodeId }) => CSS.getComputedStyleForNode({ nodeId }))
.then(style => { console.log(style) })
}

https://zhuanlan.zhihu.com/p/27100187

最新文章

  1. Android 命令行执行工具类
  2. Discuz对不起,您安装的不是正版应用的解决办法
  3. CSS+DIV 设计一个简单的个人网页界面
  4. 错误:The Controls collection cannot be modified because the control contains code blocks (i.e. ). .
  5. js:语言精髓笔记7----原型继承
  6. Codeforces Round #264 (Div. 2)
  7. KindEditor ---富编辑器
  8. BZOJ_1622_[Usaco2008_Open]_Word_Power_名字的能量_(字符匹配_暴力)
  9. 关于python文件转为exe文件
  10. 关于svn获取获取文件时 Unable to connect to a repository at URL"https://..."执行上下文错误:参数错误
  11. mysql innerjoin left join right join 解析
  12. IOS之动画
  13. 第一节:.Net版基于WebSocket的聊天室样例
  14. A1制作文件夹目录
  15. node+koa2获取请求参数
  16. 第一天---关于环境和java基础
  17. 【洛谷P1828】香甜的黄油
  18. python3.5 自带的虚拟环境使用
  19. Android——调用高德地图API前期准备
  20. Session过期后自动跳转到登录页面

热门文章

  1. 【Oracle】修改参数的同时添加注释
  2. 用户 'NT Service\MSSQLServerOLAPService' 登录失败
  3. 函数反抖 debounce
  4. JS去空格、截取页面url
  5. Java中 ArrayList类常用方法和遍历
  6. MySQL安装部署
  7. SaltStact自动化运维工具01
  8. RabbitMQ基础知识(转载)
  9. spring注解@Autowired和@Resource比较
  10. Apache Http Client 4 上传多个文件 (示例代码可在 github 上找到)