Ubuntu 切换 Xfce4
在 Ubuntu 22.04 中,可以通过以下步骤从 Gnome 桌面切换到 Xfce4 桌面 … 打开终端(Ctrl + Alt + T) 安装 Xfce4:输入命令 sudo apt install xfce4 并回车 安装 LightDM(登录器):输入命令 sudo apt install lightdm 并回车 选择 LightDM 作为默认登录器:输入命令...
在 Ubuntu 22.04 中,可以通过以下步骤从 Gnome 桌面切换到 Xfce4 桌面 … 打开终端(Ctrl + Alt + T) 安装 Xfce4:输入命令 sudo apt install xfce4 并回车 安装 LightDM(登录器):输入命令 sudo apt install lightdm 并回车 选择 LightDM 作为默认登录器:输入命令...
I’m trying to … try (my best ) to do something. try doing // 动名词, == something == 尝试 try to do // 尽力 / 尽全力 I’m trying to concentrate // 我正尽力集中精力 concentrate == con + centr + ate concentrate...
I’m looking for … looking for // 寻找 (指过程) find // 找到 (指结果) I’m looking for keys. Of course you are. // 你当然 … 废话 … I’m looking for suit. // 我在找西装/一套衣服 hoodie // 连帽卫衣 (有帽子 乎迪) I’m looking fo...
When working with Git, you might encounter slow connection speeds, especially when cloning repositories from GitHub. Setting up a proxy can help improve the connection speed. Here are the steps to ...
嵌入式Python(Embeddable Python)是一种精简版的 Python,适用于无需安装完整 Python 环境的场景,如便携式开发或分发 Python 程序。以下是搭建嵌入式 Python 开发环境的步骤。 0x01. 下载嵌入式 Python 前往 Python 官网。 在 Downloads 页面选择适合的 Windows 版本,下载带有“embeddable”字样的...
Python asyncio 教程 asyncio 是 Python 3.4 引入的标准库,用于支持异步 I/O 操作。它的编程模型是一个消息循环,通过 EventLoop 执行协程,实现异步 I/O。 asyncio 模块内部实现了 EventLoop ,把需要执行的协程扔到 EventLoop 中执行,就实现了异步 IO。 0x01 基本用法 使用 asyncio 实现异步操...
Not For Jazz 0x01 We have an old musical instrument. It is called a clavichord. It was made in Germany in 1681. Our clavichord is kept in the living-room. It has belonged to our family for a lo...
Search suggest: Python re regexp Python 自1.5版本起增加了re 模块,它提供 Perl 风格的正则表达式模式。 re 模块使 Python 语言拥有全部的正则表达式功能。 compile 函数根据一个模式字符串和可选的标志参数生成一个正则表达式对象。该对象拥有一系列方法用于正则表达式匹配和替换。 re 模块也提供了与这些方法功能完全一致的函...
Search suggest: debian linux compile install python 编译 安装 Debian 12 中的默认安装的 Python 版本是 3.11 . 我们的项目用的什么版本都有, 至少从 3.8 到 3.10 的都有, 为了便于调试,我这里记录怎样收到安装 Python 3.8 到 3.10 的版本 以前还记过一个在 centos 中安装的笔记,在...
Search suggest: go yaml 在日常开发中,YAML 格式的文件基本上被默认为是配置文件,其内容因为缩进带来的层级感看起来非常直观和整洁。本文将会对 YAML 内容的读取进行介绍。 0x01 yaml.v3 包 yaml.v3 的包,可以让我们在 Go 里面轻松地操作 yaml 格式的数据(如将 yaml 格式转成结构体等)。在使用 yaml.v3 包之前,我们...