摘要: 基本数据类型 python基础数据类型--数字(int)|python基础数据类型--字符串(str)|python基础数据类型--列表(list) python基础数据类型--元组(tuple)|python基础数据类型--字典(dict)|python基础数据类型--集合(set) 函数 pyt 阅读全文
posted @ 2018-02-23 23:25 流年中渲染了微笑 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 一、错误信息 ImportError: dlopen(/Users/menghuiding/Library/Python/3.8/lib/python/site-packages/PIL/_imaging.cpython-38-darwin.so, 0x0002): tried: '/Users/m 阅读全文
posted @ 2024-04-16 14:38 流年中渲染了微笑 阅读(4) 评论(0) 推荐(0) 编辑
摘要: curl_getinfo 是 PHP 中 cURL 库的一个函数,用于获取 cURL 传输会话的信息。当你使用 cURL 发送请求后,你可以使用 curl_getinfo 函数来获取与该请求相关的信息,例如响应的状态码、重定向次数、总传输时间等。 以下是 curl_getinfo 函数的简单示例和参 阅读全文
posted @ 2024-03-22 14:48 流年中渲染了微笑 阅读(21) 评论(0) 推荐(0) 编辑
摘要: array_merge() 是 PHP 中的一个函数,用于合并一个或多个数组。它将一个或多个数组的元素合并到一个数组中,并返回结果数组。 函数的基本语法是 array_merge(array1, array2, array3, ...) 其中,array1、array2、array3 等是要合并的数 阅读全文
posted @ 2024-03-22 14:40 流年中渲染了微笑 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ulimit -c 判断是否开启转储 为0 则没有开启 ulimit -c unlimited 设置转储core大小没有限制 在你的主目录下创建core文件夹,比如我在/home/joe下创建core文件夹 vim /etc/sysctl.conf kernel.core_pattern=/home 阅读全文
posted @ 2024-02-05 14:28 流年中渲染了微笑 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 采用wifi或者有线网口adb方式 保证在同一个局域网 1、打开adb设置-系统-关于-连续点击Android TV操作系统版本,会有提示要打开发者选项,在开发者选项内勾选USB调试 2、电脑连接adb adb connect 空格(192.168.xxx.xxx.)(xxx.xxx内是你电视盒子的 阅读全文
posted @ 2024-01-04 21:37 流年中渲染了微笑 阅读(231) 评论(0) 推荐(0) 编辑
摘要: brew install Caskroom/cask/android-platform-tools 遇见的报错 解决办法 brew update-reset 阅读全文
posted @ 2024-01-02 21:43 流年中渲染了微笑 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 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:19 流年中渲染了微笑 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 首先在 ~/.bash_profile 文件中加入如下命令(如果没有就touch一个) alias ll='ls -alF' 随后执行 source ~/.bash_profile 命令,使修改生效 这样就可以使用 ll命令了,但是这样有一个问题,每次新开的终端ll 命令都会失效 以下是解决方案 在 阅读全文
posted @ 2023-10-31 15:42 流年中渲染了微笑 阅读(249) 评论(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 流年中渲染了微笑 阅读(100) 评论(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 流年中渲染了微笑 阅读(38) 评论(0) 推荐(0) 编辑