本文分类:news发布日期:2024/11/3 20:02:38
相关文章
查看 WSL2 (Windows Subsystem for Linux 2) IP 地址
查看 WSL2 [Windows Subsystem for Linux 2] IP 地址 1. ipconfig2. ping $(hostname).local3. cat /etc/resolv.conf4. ip route show5. ip addrReferences 1. ipconfig
Windows 系统上与 WSL2 (Windows Subsystem for Linux 2) 接口的地址 172.31.32.1。
Microsoft Windows…
建站知识
2024/10/21 18:37:38
【TB作品】msp430g2553,读取SHT31,读取gy-30,显示到lcd12864,温度湿度光强
功能
msp430g2553,读取SHT31,读取gy-30,显示到lcd12864
硬件
/*
12864液晶串行显示测试程序P1.4模拟SID(接第5脚),P1.5模拟SCLK(接第6脚)4脚(CS信号)接高…
建站知识
2024/10/18 12:02:10
C语言 | Leetcode C语言题解之第125题验证回文串
题目: 题解:
bool isalumn(char c) {return (c > a && c < z) || (c > A && c < Z) || (c > 0 && c < 9);
}bool isPalindrome(char* s) {for (int left 0, right strlen(s) - 1; left < right; left, …
建站知识
2024/10/5 9:25:33
WIireShark使用教程
文章目录 目录 文章目录 一.入门抓包示例 一.入门抓包示例
先介绍一下如何使用wireshark抓取相应网卡的流量,让读者可以先上手操作感受一下抓包的具体过程。
1.打开wireshark的主界面如下 2.选择需要抓包的网卡,鼠标左键双击,即可抓取该网…
建站知识
2024/10/18 14:15:44
算法每日一题(python,2024.06.02)
题目来源:(力扣. - 力扣(LeetCode),简单) 解题思路:
用lower()函数转换为小写(也可以用upper()函数全部变为大写),用isalnum()函数去除非字母数字字符&#…
建站知识
2024/11/3 10:01:44