通过windows快速查询当前网段的存活主机 在linux当中查看当前网段存活的主机,通过nmap可以很简单的实现,在windows也可以通过namp实现,但是还要下载nmap,namp又是位于国外网站,下载起来比较慢,其实我们可以通过命令提示符实现,非常简单。 for /L %i IN (1,1, ...
(1)无边框窗口的拖动事件 新建一个MenuStrip,然后注册其MouseMove与MouseDown事件 private Point formPoint = new Point(); public MainForm() { InitializeComponent(); } private voi ...
看到一道面试题,用flex布局九宫格,决定自己实现一下 ###基础版 .father { display: flex; /*必须给宽高把盒子撑起来,然后调整width可看是否要正方形*/ width: 300px; height: 300px; flex-direction: column; } . ...
分类:
其他好文 时间:
2020-07-29 21:45:05
阅读次数:
57
第一章:Linux硬件基础 什么是系统 os 就是操作系统Windows Linux Mac Unix DOS 32位操作系统和64位操作系统有什么区别 1.设计定位不同2.安装要求不同3.运算能力不同4.寻址能力不同?32位:4G 3.5G64位:最大支持128G 什么是Linux? window ...
分类:
系统相关 时间:
2020-07-29 21:18:50
阅读次数:
105
VNC系统由客户端,服务端,和一个协议组成。服务端目的是分享其所运行的屏幕,服务端被动的允许客户端控制它。
<!doctype html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } #outer { width: 500px; mar ...
分类:
其他好文 时间:
2020-07-29 17:44:45
阅读次数:
66
AcWing 829. 模拟队列 #include <bits/stdc++.h> using namespace std; const int N=1e6+10; int q[N],hh,tt; void init(){ hh=0; tt=-1; } void add(int x){ q[++tt ...
function createStyle(){ return"*{padding:0;margin:0;border:0}.loading{width:640px;height:1024px;margin:0 auto}.loadImg{width:640px;height:1024px;anima ...
分类:
Web程序 时间:
2020-07-29 12:39:59
阅读次数:
206
应用场景DC升级、维护、旧DC下线,域中的服务器都需要将DNS指向新的DC,手动逐台更改占用大量的人力和时间。提案SaltStack中win_dns_client模块的win_dns_client.add_dns方法SaltStack中network模块的managed方法使用SaltStack远程执行PS脚本可行性分析win_dns_client模块该模块提供了两种方式来设置DNS,一种是远程执
import Vue from 'vue' import Router from 'vue-router' Router.prototype.go = function(t) { this.isBack = true console.log('go ' + this.history.current. ...
分类:
其他好文 时间:
2020-07-29 10:29:00
阅读次数:
83