一篇新文章
Testhhhh TEST KEY TEST1
Fedora开箱配置
Gnome插件篇使用的插件截图: 主题篇 theme: Fluent-gtk-theme icons: Fluent-icon-theme 输入法配置使用ibus-rime,导入该配置文件 123git clone https://github.com/zippermonkey/rime-settings.gitrm -rf ~/.config/ibus/rimecp -r rime-settings ~/.config/ibus/rime 然后配合iBus Tweaker插件实现横排和大字体 输入效果: 快捷键设置设置快捷键Ctrl+Alt+T 为gnome-terminal打开终端 字体配置直接复制Windows的字体过来即可 flakhub仓库添加1flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo 必备的软件Appimagelauncher Helper application for Linux distributions serving as ...
docker/podman 的使用
Docker 属于 Linux 容器的一种封装,提供简单易用的容器使用接口。它是目前最流行的 Linux 容器解决方案。 image文件Docker 把应用程序及其依赖,打包在 image 文件里面。只有通过这个文件,才能生成 Docker 容器。image 文件可以看作是容器的模板。Docker 根据 image 文件生成容器的实例。同一个 image 文件,可以生成多个同时运行的容器实例。 image 是二进制文件。实际开发中,一个 image 文件往往通过继承另一个 image 文件,加上一些个性化设置而生成。举例来说,你可以在 Ubuntu 的 image 基础上,往里面加入 Apache 服务器,形成你的 image。 12345# 列出本机的所有 image 文件。$ docker image ls# 删除 image 文件$ docker image rm [imageName] image 文件是通用的,一台机器的 image 文件拷贝到另一台机器,照样可以使用。一般来说,为了节省时间,我们应该尽量使用别人制作好的 image 文件,而不是自己制作。即使要定制,也应该 ...
使用vscode写Python
安装Python Python官网: https://www.python.org/ 下面给出一些常用版本的下载链接,点击下载地址列的版本号即可下载,提供了镜像下载地址和官方下载地址,为保证下载速度建议使用镜像下载地址。 如果你使用的是Windows 7版本,那么是不能使用3.9及以上的版本的,建议下载3.7或者3.8;此外32bit和64bit的选择与你的操作系统对应(不出意外,现在应该都是64bit吧) 版本 镜像下载地址 官方下载地址 3.7 (32bit) (Win7 32位用户可用) python-3.7.9.exe python-3.7.9.exe 3.7 (64bit) (Win7 64位用户可用) python-3.7.9-amd64.exe python-3.7.9-amd64.exe 3.8 (32bit) (Win7 32位用户可用) python-3.8.10.exe python-3.8.10.exe 3.8 (64bit) (Win7 64位用户可用) python-3.8.10-amd64.exe python-3.8.10-a ...
hello-world
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Categories & TagsOnly posts support the use of categories and tags. Categories apply to posts in order, resulting in a hierarchy of classifications and sub-classifications. Tags are all defined on the same hierarchica ...