技术专区
-
VMware虚拟化与云计算:vSphere运维卷 pdf
高清扫描版下载链接:https://pan.baidu.com/s/1gDGDLHf0Hu_7nuh0uZOrTw 点击这里获取提取码。
-
Windows时间同步命令
Windows Time服务 sc query W32Time sc start W32Time Windows 时间同步命令 w32tm /config /manualpeerlist:"ntp.aliyun.com" /syncfromflags:manual /reliable:yes /update w32tm /resync
-
centos7防火墙基本操作
开启、关闭、查看防火墙状态 systemctl方式 systemctl status firewalld #查看状态(防火墙为开启状态active(running),防火墙为关闭状态inactive(dead)) systemctl start firewalld #开启防火墙(临时的,重…
-
IIS上部署Asp.Net(.NET5.0)网站(转)
一.安装IIS与其他基础模块 1.进入操作系统“控制面板/所有控制面板项/程序和功能”,如图: 2.点击“启用或关闭Windows功能”,选择【Internet information Services】和【Internet information Services 可承载的Web核…
-
python3:面向对象之成员变量(成员变量赋值为元组、字典)
python3:面向对象之成员变量(成员变量赋值为元组、字典) 一、python3源码 1 #!/usr/bin/python3 2 3 class data: 4 5 # python是“弱类型语言”,可以给“变量”赋予“任何类型的数值” 6 _name_array="" …
-
在IIS中部署.NET Core WebApi程序(转载)
环境说明 部署NET Core 编写WebApi并部署为IIS站点,演示环境如下: Visual Studio 2019(v16.8) .Net Core 3.1 一台安装了IIS的设备 Note:.NET Core 3.0项目开发需要vs2019(v16.3及以上)支持 项目创建 1.打开vs 20…
-
IIS上部署Asp.Net(.NET5.0)网站(转)
一.安装IIS与其他基础模块 1.进入操作系统“控制面板/所有控制面板项/程序和功能”,如图: 2.点击“启用或关闭Windows功能”,选择【Internet information Services】和【Internet information Services 可承载的Web核…
-
LeetCode 反转链表算法题解 All In One
LeetCode 反转链表算法题解 All In One js / ts 实现反转链表 反转链表原理 图解 双指针,swap 交换 // 反转 双指针 // swap: a = b; c = a; b = c; let prev: ListNode | null = null; let cur: ListNode | null …
-
算法总结
今天放两道刚刷的关于链表的题 package com.chenghaixiang.jianzhi2.day09; import java.util.ArrayList; import java.util.List; /** * @author 程海翔 * @school 石家庄铁道大学 */ public class Office027 { } /…
-
C++之运算符重载
1 运算符重载 运算符 + - * / ++ -- % && -> > < 等 class Person{ public : Person(){} Person(int a ,int b):m_A(a),m_B(b){} /*Person operator+(Person &am…