本文分类:news发布日期:2025/1/20 3:36:45
相关文章
linux查看本机ip地址
一、ifconfig
ifconfig 命令可以显示网络接口的信息,包括 IP 地址。在一些最新的发行版中,可能使用 ip 命令代替 ifconfig。
ifconfig或者使用 ip 命令:
ip addr二、hostname
hostname -I这个命令会显示所有与主机名关联的 IP 地址。
三…
建站知识
2025/1/16 12:26:28
Android Canvas 改变背景颜色
我有一个有两个 View 的应用
<com.myexample.ui.view.BackgroundView android:id"id/id_draw_canvas_classroom" android:layout_width"fill_parent" android:layout_height"fill_parent" android:layout_marginBottom"3dp" andro…
建站知识
2025/1/12 9:53:12
Python---time库
目录
时间获取
时间格式化
程序计时 time库包含三类函数:
时间获取:time() ctime() gmtime()
时间格式化:strtime() strptime()
程序计时:sleep() perf_counter()
下面逐一介绍&#…
建站知识
2025/1/3 18:29:33
CentOS或RHEL安装code-server(vscode-web)
下载rpm安装包
网络下载或者下载到本地再上传到服务器,点击访问国内下载地址,不需要积分curl -fOL https://github.com/coder/code-server/releases/download/v4.19.1/code-server-4.19.1-amd64.rpm安装
rpm -i code-server-4.19.1-amd64.rpm关闭和禁用…
建站知识
2025/1/19 4:54:53
【数据结构】栈和队列算法总结
知识概览
在数据结构中,栈和队列都属于线性表。栈是先进后出(FILO)的,队列是先进先出(FIFO)的。
代码模板
#include <iostream>using namespace std;const int N 100010;// ********************…
建站知识
2025/1/18 11:25:26
什么是ElasticSearch中的过滤器?
在Elasticsearch中,过滤器(Filters)是一种用于在查询中筛选文档的强大工具。过滤器可以根据特定条件来评估文档是否符合搜索查询。这些条件通常应用于字段数据,并根据匹配结果返回符合条件的文档。
过滤器的主要优点包括…
建站知识
2025/1/16 5:39:56
14、pytest像用参数一样使用fixture
官方实例
# content of test_fruit.py
import pytestclass Fruit:def __init__(self, name):self.name nameself.cubed Falsedef cube(self):self.cubed Trueclass FruitSalad:def __init__(self, *fruit_bowl):self.fruit fruit_bowlself._cube_fruit()def _cube_fruit(s…
建站知识
2025/1/12 20:46:03