<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>Tips - 标签 - zwyyy456&#39;s blog</title>
        <link>https://doit.tellm.eu.org/zh/tags/tips/</link>
        <description>Tips - 标签 - zwyyy456&#39;s blog</description>
        <generator>Hugo -- gohugo.io</generator><language>zh</language><managingEditor>zwyyy456@hotmail.com (zwyyy456)</managingEditor>
            <webMaster>zwyyy456@hotmail.com (zwyyy456)</webMaster><copyright>This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.</copyright><lastBuildDate>Sun, 11 Aug 2024 09:51:38 &#43;0800</lastBuildDate><atom:link href="https://doit.tellm.eu.org/zh/tags/tips/" rel="self" type="application/rss+xml" /><item>
    <title>基于 Hugo 搭建个人博客</title>
    <link>https://doit.tellm.eu.org/zh/build-site-with-papermod/</link>
    <pubDate>Sun, 11 Aug 2024 09:51:38 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/build-site-with-papermod/</guid>
    <description><![CDATA[1 简介与安装Hugo 是一个用 Go 编写的静态网站生成器，可以轻松生成个人博客。 Hugo 安装起来也非常方便，以下是 Hugo 的安装命令： sh brew install hugo # mac sudo apt install hugo # Debian]]></description>
</item><item>
    <title>Neovim 快捷键配置</title>
    <link>https://doit.tellm.eu.org/zh/nvim_keymap/</link>
    <pubDate>Sun, 05 Nov 2023 17:05:51 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/nvim_keymap/</guid>
    <description><![CDATA[1 Vim 快捷键这一部分是 Vim 的默认快捷键，例如 gg、dd 等。 1.1 normal 模式快捷键 按键 操作 按键 操作 i 切换到插入模式 : 切换到命令模式 h 左移一个字符 j 下移一个]]></description>
</item><item>
    <title>1074. 元素和为目标值的子矩阵数量 (Hard)</title>
    <link>https://doit.tellm.eu.org/zh/1074.number-of-submatrices-that-sum-to-target/</link>
    <pubDate>Fri, 13 Oct 2023 11:27:57 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/1074.number-of-submatrices-that-sum-to-target/</guid>
    <description><![CDATA[1 问题描述1074. 元素和为目标值的子矩阵数量 (Hard) 给出矩阵 matrix 和目标值 target，返回元素总和等于目标值的非空子矩阵的数量。 子矩阵 x1, y1, x2, y2 是满]]></description>
</item><item>
    <title>解决远程主机的默认 shell 为 fish 时，vscode remote 无法连接的问题</title>
    <link>https://doit.tellm.eu.org/zh/fish-vscode-remote/</link>
    <pubDate>Sat, 08 Jul 2023 11:30:15 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/fish-vscode-remote/</guid>
    <description><![CDATA[1 问题描述我主要用的 shell 就是 fish，主打一个开箱即用，虽然也配置过 zsh，但是感觉配置好的 zsh 在易用性上也就是 fish 的水平。 此前，一直以来默认的 shell]]></description>
</item><item>
    <title>通过 frp 使用 ssh 连接内网服务器</title>
    <link>https://doit.tellm.eu.org/zh/frp_ssh/</link>
    <pubDate>Sun, 02 Apr 2023 17:41:53 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/frp_ssh/</guid>
    <description><![CDATA[1 配置frp 1.1 安装frp~/Prog目录下执行wget https://github.com/fatedier/frp/releases/do]]></description>
</item><item>
    <title>vscode 使用 clangd</title>
    <link>https://doit.tellm.eu.org/zh/clangd_vscode/</link>
    <pubDate>Thu, 23 Mar 2023 15:56:21 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/clangd_vscode/</guid>
    <description><![CDATA[1 环境要求使用 wsl 或者 macOS，Linux 下同理，暂时不考虑纯 winodws。 以 wsl 为例，执行以下指令 bash sudo apt install clang clangd lldb cmake macOS如果安装过xc]]></description>
</item><item>
    <title>Zsh 的简单配置与使用</title>
    <link>https://doit.tellm.eu.org/zh/zsh_configuration/</link>
    <pubDate>Thu, 23 Mar 2023 10:55:08 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/zsh_configuration/</guid>
    <description><![CDATA[1 安装 starshipMacOS 下执行curl -sS https://starship.rs/install.sh | sh即可，Linux 下（如 Debian），执行curl -sS https://starship.rs/install.sh | sh即可，然后执行starship preset pure-preset &gt; ~/.con]]></description>
</item><item>
    <title>git 使用技巧</title>
    <link>https://doit.tellm.eu.org/zh/git_tutorial/</link>
    <pubDate>Wed, 22 Mar 2023 09:56:48 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/git_tutorial/</guid>
    <description><![CDATA[1 设置默认编辑器为 vim text git config --global core.editor vim 2 问题fatal: in unpopulated submodule 'xxx'的解决出现这个问题的原因 clone 的别人的项目之后，删除项目里的.git文件就直接]]></description>
</item><item>
    <title>自行制作 nerd font</title>
    <link>https://doit.tellm.eu.org/zh/patch_my_own_nerd_font/</link>
    <pubDate>Sat, 18 Mar 2023 15:06:08 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/patch_my_own_nerd_font/</guid>
    <description><![CDATA[1 前言Nerd Fonts 是一个使用大量字体图标来解决程序员在开发过程中缺少合适字体的问题的项目。它可以从流行的字体图标库中将大量外部字体引入待开发的]]></description>
</item><item>
    <title>Neovim 的配置与使用</title>
    <link>https://doit.tellm.eu.org/zh/neovim_tutorial/</link>
    <pubDate>Fri, 17 Mar 2023 15:08:52 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/neovim_tutorial/</guid>
    <description><![CDATA[1 安装 LazyVim参考 Lazyvim 的官方安装教程即可安装，要求系统已经安装好了 npm。 实际上就是 clone folke 的适用于 LazyVim 的初始 配置文件 到 Neovim 的配置文件所处的目录]]></description>
</item></channel>
</rss>
