摘要: 言语理解与表达 第一章 片段阅读 第一节 主旨概括(重点) 同义替换,精简压缩,归纳概括,转折关系 辨别关键词:主旨、主要、旨在、概括、中心、重在、核心、复述、重心、主题 一、转折关键词 (基于原文,不能引申) 转折前 + 转折后 关联词:虽然...,但是...。 可与虽然替换的词是:虽说、固然、诚 阅读全文
posted @ 2024-08-08 11:19 Y&Qter 阅读(6) 评论(0) 推荐(0) 编辑
摘要: import os import requests import requests from bs4 import BeautifulSoup from typing import Dict total_div: Dict[str, BeautifulSoup] = dict() def the_b 阅读全文
posted @ 2024-06-23 23:27 Y&Qter 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 这是版本问题 更换版本即可 python 3.6+版本方法: 代码如下 pip install pyecharts==0.1.9.4 -i https://pypi.tuna.tsinghua.edu.cn/simple 更换为0.1.9.4版本即可 python 3.4+版本方法 代码如下 pip 阅读全文
posted @ 2024-05-29 16:09 Y&Qter 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 写一个~/.ssh/config文件 # gitee Host gitee.com HostName gitee.com PreferredAuthentications publickey IdentityFile ~/.ssh/gitee # github Waiting write.. hos 阅读全文
posted @ 2024-02-11 20:02 Y&Qter 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Linux Usage Experience Use X Window Install apt install suckless-tools xorg xinit xterm dwm That's all needed to launch Dwm but how we start to enjoy 阅读全文
posted @ 2024-01-31 09:16 Y&Qter 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Hadoop-3.3.5 自动安装脚本 为了方便数据科学与大数据技术的 hadoop-3.3.5 安装与配置 目前适用于新安装的纯净虚拟机,未配置冲突检测.. 所以安装的话请使用全新创建的机器以避免错误... 如何使用 ssh localhost 输入你目前用户的密码 exit 退出当前ssh终端( 阅读全文
posted @ 2023-10-14 13:22 Y&Qter 阅读(46) 评论(0) 推荐(0) 编辑
摘要: SELinux初探 自己总结出来的SELinux部分,仅供参考。 SELinux是一个内核模块。 SELinux的运行模式 主体:SELinux主要管理的就是进程,你可以将【主体】跟进程划上等号。 目标:主体进程能否读写的【目标资源】一般就是文件系统。 策略:由于进程与文件数量庞大,因此SELinu 阅读全文
posted @ 2022-12-20 08:45 Y&Qter 阅读(63) 评论(0) 推荐(0) 编辑
摘要: <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.4.1</version> <execution 阅读全文
posted @ 2022-12-17 18:18 Y&Qter 阅读(26) 评论(0) 推荐(0) 编辑
摘要: On_Java_Advanced_Edition 01 枚举类型 1.2 在枚举类型中添加自定义方法 package org.example; public enum Run_RR { YANG("This is most helpful.."), QIAN("This is a good test 阅读全文
posted @ 2022-09-27 07:23 Y&Qter 阅读(60) 评论(0) 推荐(0) 编辑
摘要: On _ Java 08_复用 8.8.1 final 数据 对于基本类型,final使其值恒定不变。但对于对象引用,final使其引用恒定不变。 一旦引用被初始化一个对象,他就永远不能被更改为指向另一个对象了。 class Test{ Test(String s){ System.out.prin 阅读全文
posted @ 2022-09-20 22:25 Y&Qter 阅读(65) 评论(0) 推荐(0) 编辑