码迷,mamicode.com
首页 >  
搜索关键字:power designer    ( 4157个结果
CentOS7虚拟机配置ssh(桥接模式)
配置ssh(桥接模式) 1. 环境为VMware虚拟机 2. 虚拟网络适配器选择 “桥接模式” 3. Windows用power shell或cmd查看本机ip地址 4. 将CentOS7的ip地址设置为静态并自定义ip地址 5. ssh连接成功! ...
分类:其他好文   时间:2020-03-15 21:56:11    阅读次数:111
逆元与组合数
``` LL fpow(LL x, LL power, LL mod) { x %= mod; LL ans = 1; for (; power; power >>= 1, (x *= x) %= mod) if(power & 1) (ans *= x) %= mod; return ans; }... ...
分类:其他好文   时间:2020-03-15 00:04:40    阅读次数:56
win10操作系统查看电池损耗,电池使用时间
第一步:win+R 第二步:输入cmd 第三步:输入命令Powercfg /batteryreport 结果: ...
分类:Windows程序   时间:2020-03-14 12:41:00    阅读次数:88
Win10热点使用教程
Win10热点使用教程 点击WiFi图标-找到热点-点击即可开启 右键开启状态的热点-转到设置即可看到win10开启WiFi后自动生成的密码 wifi密码至少需要8位 在手机中或其他设备中使用win10开启的热点 —————>>>>>I'm web developer / designer / iL ...
分类:Windows程序   时间:2020-03-14 01:17:36    阅读次数:102
windows advanced firewall simple config
config windows firewall with specific way
分类:Windows程序   时间:2020-03-13 18:35:23    阅读次数:78
【突发】【WinForm】Visual Studio 2019 16.4.6 更新之后的意外之喜
? 正文 ? 今天下班回家的路上,在群里发现群友说 Visual Studio 2019 更新了,貌似支持了 的`designer`文件。回家之后,打开心爱的小本本,将 Visual Studio 2019 完之后,去巨硬的官方看了一下更新公告。 发现并没有列出此项作为更新项。又失望的以为群友在晃点 ...
分类:Windows程序   时间:2020-03-12 22:04:08    阅读次数:112
VSCode + PYQT5 搭建图形化界面
1,安装依赖 pip install -i https://mirrors.aliyun.com/pypi/simple/ PyQt5 pip install -i https://mirrors.aliyun.com/pypi/simple/ PyQt5-tools 2,找到designer 绘制 ...
分类:其他好文   时间:2020-03-10 20:09:13    阅读次数:106
Tian Ji -- The Horse Racing / HDU - 1052
Here is a famous story in Chinese history. "That was about 2300 years ago. General Tian Ji was a high official in the country Qi. He likes to play hor ...
分类:其他好文   时间:2020-03-09 20:48:05    阅读次数:56
[python、VScode]PyQt5-designer-新建窗口2
import sys from PyQt5.QtWidgets import QApplication,QMainWindow import Ui_demoui if __name__ == "__main__": app = QApplication(sys.argv) mainWindow = ...
分类:编程语言   时间:2020-03-09 15:10:57    阅读次数:69
PSTAT 174/274
PSTAT 174/274 COURSE PROJECTThe course project is an opportunity for students to apply time series techniques to real-world problems. Data andsoftware ...
分类:其他好文   时间:2020-03-08 19:47:57    阅读次数:68
4157条   上一页 1 ... 35 36 37 38 39 ... 416 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!