上一页 1 2 3 4 5 6 7 8 ··· 30 下一页
摘要: mac 下使用 brew 安装包报错 error: Cannot install under Rosetta 2 in ARM default prefix (/opt/homebrew)! To rerun under ARM use: arch -arm64 brew install ... T 阅读全文
posted @ 2023-11-16 19:18 流年中渲染了微笑 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 首先在 ~/.bash_profile 文件中加入如下命令(如果没有就touch一个) alias ll='ls -alF' 随后执行 source ~/.bash_profile 命令,使修改生效 这样就可以使用 ll命令了,但是这样有一个问题,每次新开的终端ll 命令都会失效 以下是解决方案 在 阅读全文
posted @ 2023-10-31 15:42 流年中渲染了微笑 阅读(412) 评论(0) 推荐(0) 编辑
摘要: sudo add-apt-repository ppa:wireshark-dev/stable sudo apt update sudo apt install wireshark wireshark--version 阅读全文
posted @ 2023-08-29 15:49 流年中渲染了微笑 阅读(124) 评论(0) 推荐(0) 编辑
摘要: window win10 + Python3.9.6 https://www.python.org/ftp/python/ https://www.python.org/ftp/python/3.9.6/ 这里以Python目前的最新版3.9.6版本为例,本教程也适用于Python3.x版本的安装。 阅读全文
posted @ 2023-04-20 16:09 流年中渲染了微笑 阅读(42) 评论(0) 推荐(0) 编辑
摘要: html <html> <head> <meta charset="UTF-8"> <title>身份证件加水印</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1 阅读全文
posted @ 2023-03-31 10:38 流年中渲染了微笑 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 很多同学更新系统之后,使用这两者都会遇到一条报错,类似于: SSH(ssh: connect to host localhost port 22: Connection refused) 我们之前出过一篇文章【https://www.cnblogs.com/a438842265/p/16134018 阅读全文
posted @ 2023-02-09 14:55 流年中渲染了微笑 阅读(304) 评论(0) 推荐(1) 编辑
摘要: 递归函数与二分查找算法 如果有这样一个列表,让你从这个列表中找到66的位置,你要怎么做? l = [2,3,5,10,15,16,18,22,26,30,32,35,41,42,43,55,56,66,67,69,72,76,82,83,88] 你说,so easy! l.index(66) 我们之 阅读全文
posted @ 2022-06-08 17:10 流年中渲染了微笑 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 递归函数 如果一个函数体直接或者间接调用自己,那么这个函数就称为递归函数.也就是说,递归函数体的执行过程中可能会返回去再次调用该函数.在python里,递归函数不需要任何特殊的语法,但是它需要付出一定的努力去理解和创建. 例: 我们来计算阶乘n! = 1 x 2 x 3 x ... x n,用函数f 阅读全文
posted @ 2022-06-08 17:07 流年中渲染了微笑 阅读(78) 评论(0) 推荐(0) 编辑
摘要: yum -y install bzip2 rpm2cpio xxx.rpm | cpio -div 阅读全文
posted @ 2022-05-17 22:31 流年中渲染了微笑 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 当前gcc版本 [root@localhost ~]# gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper Ta 阅读全文
posted @ 2022-05-17 22:23 流年中渲染了微笑 阅读(513) 评论(2) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 30 下一页