展开
拓展 关闭
订阅号推广码
GitHub
视频
公告栏 关闭
摘要: 官网 打开cmd安装依赖 C:\Users\ychen>pip install scipy Looking in indexes: https://mirrors.aliyun.com/pypi/simple/ Requirement already satisfied: scipy in c:\p 阅读全文
posted @ 2024-05-06 11:14 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 官网 安装 # 打开cmd C:\Users\ychen>pip install pyecharts Looking in indexes: https://mirrors.aliyun.com/pypi/simple/ Collecting pyecharts Downloading https: 阅读全文
posted @ 2024-05-06 10:56 DogLeftover 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 添加账号 useradd [选项] 用户名 -c comment 指定一段注释性描述 -d 目录 指定用户主目录,如果此目录不存在,则同时使用-m选项,可以创建主目录 -m 用于创建用户的家目录。如果-d选项已经指定了家目录的路径,并且该目录不存在,则-m选项会告诉useradd创建该目录。如果-d 阅读全文
posted @ 2024-04-30 16:19 DogLeftover 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 路径 # 绝对路径 /usr/share/doc # 相对路径 cd ../man 查看 ls -[ a | d | l ] -a :全部的文件,连同隐藏文件( 开头为 . 的文件) 一起列出来(常用) -d :仅列出目录本身,而不是列出目录内的文件数据(常用) -l :长数据串列出,包含文件的属性 阅读全文
posted @ 2024-04-30 14:01 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 查看 [root@localhost ~]# ls -l total 64 dr-xr-xr-x 2 root root 4096 Dec 14 2012 bin [root@localhost ~]# ll 总用量 4 -rw . 1 root root 1258 3月 7 14:47 anaco 阅读全文
posted @ 2024-04-29 21:58 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 打开puttygen.exe 选择默认 开始生成 在这个过程中鼠标要来回的动,否则这个进度条是不会动的,保存公钥和私钥 先用ssh登录Linux [root@localhost ~]# mkdir /root/.ssh [root@localhost ~]# chmod 700 /root/.ssh 阅读全文
posted @ 2024-04-28 21:44 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 系统运行级别 运行级别0:系统停机状态,系统默认运行级别不能设为0,否则不能正常启动 运行级别1:单用户工作状态,root权限,用于系统维护,禁止远程登录 运行级别2:多用户状态(没有NFS) 运行级别3:完全的多用户状态(有NFS),登录后进入控制台命令行模式 运行级别4:系统未使用,保留 运行级 阅读全文
posted @ 2024-04-28 12:58 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 名称 详情 /bin 是 Binaries (二进制文件) 的缩写, 这个目录存放着最经常使用的命令 /boot 这里存放的是启动 Linux 时使用的一些核心文件,包括一些连接文件以及镜像文件 /dev 是 Device(设备) 的缩写, 该目录下存放的是 Linux 的外部设备,在 Linux 阅读全文
posted @ 2024-04-28 11:39 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <script src="https://cdn.amcharts.com/lib/5/index.js"></script> <script src="https://cdn.amcharts.com/lib/5/xy.js"> 阅读全文
posted @ 2024-04-26 17:50 DogLeftover 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <script src="https://cdn.amcharts.com/lib/5/index.js"></script> <script src="https://cdn.amcharts.com/lib/5/xy.js"> 阅读全文
posted @ 2024-04-26 16:06 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <script src="https://cdn.amcharts.com/lib/5/index.js"></script> <script src="https://cdn.amcharts.com/lib/5/xy.js"> 阅读全文
posted @ 2024-04-26 16:02 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <script src="https://cdn.amcharts.com/lib/5/index.js"></script> <script src="https://cdn.amcharts.com/lib/5/xy.js"> 阅读全文
posted @ 2024-04-26 15:58 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <script src="https://cdn.amcharts.com/lib/5/index.js"></script> <script src="https://cdn.amcharts.com/lib/5/xy.js"> 阅读全文
posted @ 2024-04-26 15:54 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 甜甜圈动画 代码如下 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> <script src="http 阅读全文
posted @ 2024-04-26 14:58 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 基础 代码如下 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> <script src="https:/ 阅读全文
posted @ 2024-04-26 14:50 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 响应配置 代码如下 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> <script src="https 阅读全文
posted @ 2024-04-26 14:45 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 多行标签 代码如下 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> <script src="https 阅读全文
posted @ 2024-04-26 14:40 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 双极条形图 代码案例 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> <script src="http 阅读全文
posted @ 2024-04-26 14:31 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 线插值/平滑 代码如下 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> </head> <body> < 阅读全文
posted @ 2024-04-26 14:20 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 事件替换图形 代码如下 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> </head> <body> < 阅读全文
posted @ 2024-04-26 11:38 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 折线散点图 代码如下 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> </head> <body> <d 阅读全文
posted @ 2024-04-26 11:04 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 数据漏洞 代码案例 <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="./chartist.min.css"> <script src="./chartist.min.js"></script> </head> <body> <di 阅读全文
posted @ 2024-04-26 10:57 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 参考 代码如下 <!DOCTYPE html> <html> <head> <script src="https://cdn.amcharts.com/lib/5/index.js"></script> <script src="https://cdn.amcharts.com/lib/5/xy.j 阅读全文
posted @ 2024-04-26 10:32 DogLeftover 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 添加新文本框 开始,绘图,形状,基本性质,文本框 新增节 右键左侧侧边栏,新增节 使用大纲 视图,演示文稿视图,大纲视图 侧边栏,点击右下角 页面方向 设计,自定义,幻灯片大小,自定义幻灯片大小,方向,纵向 幻灯片编号 插入,文本,幻灯片编号,例如页脚插入1,点击应用则只在当前页面插入,点击全部应用 阅读全文
posted @ 2024-04-24 17:32 DogLeftover 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 设置页码 插入,页码,页面底端 换行符 Shift + Enter 表格 插入,表格 选中多个表格,右键,合并单元格 文本居中:开始,段落,居中;右键,表格属性,单元格,居中 页面旋转 布局,纸张方向,横向 背景 插入,形状,圆角矩形,拖动鼠标,绘制出一个圆角矩形 按住图中左上角的黄色圆点,拖动鼠标 阅读全文
posted @ 2024-04-24 17:30 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html lang="en"> <head> <title>Network</title> <script type="text/javascript" src="https://unpkg.com/vis-network/standalone/umd/v 阅读全文
posted @ 2024-04-24 16:28 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!doctype html> <html> <head> <title>Timeline</title> <script type="text/javascript" src="https://unpkg.com/vis-timeline@latest/standalone/umd/vi 阅读全文
posted @ 2024-04-24 16:21 DogLeftover 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!doctype html> <html> <head> <title>Timeline</title> <script type="text/javascript" src="https://unpkg.com/vis-timeline@latest/standalone/umd/vi 阅读全文
posted @ 2024-04-24 15:30 DogLeftover 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } div#info { width: 600px; text-align: center; margin 阅读全文
posted @ 2024-04-24 15:11 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-24 14:57 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-24 14:53 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-24 14:42 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-24 14:37 DogLeftover 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-24 14:32 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-24 14:25 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-24 14:19 DogLeftover 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-24 14:13 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } fieldset { width: fit-content; } fieldset > div { f 阅读全文
posted @ 2024-04-23 18:00 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> html, body { font: 10pt arial; padding: 0; margin: 0; width: 100%; height: 100 阅读全文
posted @ 2024-04-23 17:52 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 代码案例 <!DOCTYPE html> <html> <head> <title>Graph 3D demo</title> <style> body { font: 10pt arial; } </style> <script type="text/javascript" src="https: 阅读全文
posted @ 2024-04-23 17:44 DogLeftover 阅读(2) 评论(0) 推荐(0) 编辑