程序函数库可分为3种类型:静态函数库(static libraries)、共享函数库(shared libraries)、动态加载函数库(dynamically loaded libraries): 静态函数库,是在程序执行前就加入到目标程序中去了; 共享函数库,则是在程序启动的时候加载到程序中,它 ...
分类:
系统相关 时间:
2020-07-02 16:10:56
阅读次数:
85
from docx import Document from docx.shared import Cm w=Document(r'F:\word练习\qq.docx') run=w.tables[0].cell(0,0).paragraphs[0].add_run() run.add_pictur ...
分类:
其他好文 时间:
2020-07-02 11:57:14
阅读次数:
75
问题现象:原有计算机名称为office###,现在添加计算机名称为test###解决方法:1.Get-AcctIdentityPool-IdentityPoolNameoffice-desktop#查看有问题的计算机目录的身份标识2.Set-AcctIdentityPool-NamingSchemeSRSRI-Office###-IdentityPoolNameOffice-Desktop#修改计
分类:
其他好文 时间:
2020-07-02 09:26:35
阅读次数:
65
ntp命令 主要用于对计算机的时间同步管理操作。 这个时间对服务器非常重要。 1、手动同步,一次性同步 ntpdate 时间服务器地址 (http://www.ntp.org.cn/pool.php 这个网址里面找) 例如用阿里云的 ntpdate 120.25.108.11 2、通过服务自动同步。 ...
分类:
系统相关 时间:
2020-07-02 00:24:00
阅读次数:
90
JVM class文件格式 魔法数 CAFE BABE 编译器版本号 Constant count Constant pool access flag this class super class interface count interfaces field count fields metho ...
分类:
其他好文 时间:
2020-07-01 20:22:12
阅读次数:
65
hiredis 的应用程序出错。 ./example-libevent: error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directo ...
分类:
其他好文 时间:
2020-07-01 13:03:53
阅读次数:
97
传统RAID技术在面临大容量磁盘的时候显得有点力不从心,这主要由于大容量磁盘技术的引入使得RAID的数据重构时间急剧变长,并且整体IO性能也受到了严重影响。所以很多人预测,传统RAID技术作为存储核心的时代即将过去,大容量磁盘的数据管理需要其它的数据保护技术。我也曾经在一些文章中分析过,传统RAID ...
分类:
其他好文 时间:
2020-06-30 22:49:13
阅读次数:
63
1 from pyquery import PyQuery as pq 2 import requests as rs 3 from docx import Document 4 from docx.shared import RGBColor 5 6 7 html = ''' 8 https:// ...
分类:
Web程序 时间:
2020-06-30 17:15:14
阅读次数:
117
server.port=8080 //服务器端口号 server.servlet.context-path=/ems // 应用程序的上下文路径。 spring.datasource.type=com.alibaba.druid.pool.DruidDataSource //要使用的连接池实现的完全 ...
分类:
移动开发 时间:
2020-06-29 17:18:29
阅读次数:
82
文件和目录(理解) 目标 理解 Linux 文件目录的结构 01. 单用户操作系统和多用户操作系统(科普) 单用户操作系统:指一台计算机在同一时间 只能由一个用户 使用,一个用户独自享用系统的全部硬件和软件资源 Windows XP 之前的版本都是单用户操作系统 多用户操作系统:指一台计算机在同一时 ...
分类:
系统相关 时间:
2020-06-29 13:10:48
阅读次数:
68