<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-CN"><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://xoderony.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://xoderony.github.io/" rel="alternate" type="text/html" hreflang="zh-CN" /><updated>2026-07-31T17:33:22+08:00</updated><id>https://xoderony.github.io/feed.xml</id><title type="html">Xoderony</title><subtitle>游戏开发者</subtitle><author><name>Xoderony</name></author><entry><title type="html">#pragma once 和 #ifndef</title><link href="https://xoderony.github.io/2023/04/18/knowledge4/" rel="alternate" type="text/html" title="#pragma once 和 #ifndef" /><published>2023-04-18T00:00:00+08:00</published><updated>2023-04-18T00:00:00+08:00</updated><id>https://xoderony.github.io/2023/04/18/knowledge4</id><content type="html" xml:base="https://xoderony.github.io/2023/04/18/knowledge4/"><![CDATA[<p>作用都是为了避免同一个被 #include 多次，或者避免头文件嵌套包含（参照前置声明的笔记）。需要特别注意的是：</p>

<ul>
  <li></li>
</ul>

<p>#pragma once 并不是 C++的原生语法，而是编译器的一种支持，所以并不是所有的编译器都能够支持。#ifndef 则为 C++的标准。</p>

<ul>
  <li></li>
</ul>

<p>#ifndef 依赖于不重复的宏名称，保证了包含在 #endif 的内容不会被重复包含，这个内容可以是一个文件的所有内容，或者仅仅是一段代码。而 #pragma once 则是针对物理文件的一个标记，标记该文件不会被 #include 多次，不能只针对文件中某段代码进行标记。而且，#pragma once 不能保证多个文件的拷贝不会被重复包含，但这种错误更容易发现，且 #pragma once 大大提高了编译效率。</p>

<ul>
  <li></li>
</ul>

<p>一般建议用 #pragma once，因为一个类声明和定义各占用一个物理文件，即使类声明之外的内容，也应该是和该类有关，比如非模板类中声明了模板接口，则需要在同一个文件定义该模板接口。</p>]]></content><author><name>Xoderony</name></author><category term="知识" /><summary type="html"><![CDATA[作用都是为了避免同一个被 #include 多次，或者避免头文件嵌套包含（参照前置声明的笔记）。需要特别注意的是：]]></summary></entry><entry><title type="html">知识点-预处理#define</title><link href="https://xoderony.github.io/2023/03/17/knowledge3/" rel="alternate" type="text/html" title="知识点-预处理#define" /><published>2023-03-17T00:00:00+08:00</published><updated>2023-03-17T00:00:00+08:00</updated><id>https://xoderony.github.io/2023/03/17/knowledge3</id><content type="html" xml:base="https://xoderony.github.io/2023/03/17/knowledge3/"><![CDATA[<h1 id="define">#define</h1>

<div class="language-c highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="cp">#define MALLOC(n, type) (type*)malloc(n*sizeof(type))
</span>
</code></pre></div></div>

<h2>“#”</h2>

<div class="language-c highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="cp">#define PRINT(mode, x) printf("The value of "#x" = "mode, x)
</span>
</code></pre></div></div>

<p>上面这行代码的功能: 以 mode 的形式打印 x 的值</p>

<div class="language-c highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">int</span> <span class="n">a</span> <span class="o">=</span> <span class="mi">1</span><span class="p">;</span>
<span class="n">PRINT</span><span class="p">(</span><span class="s">"%d"</span><span class="p">,</span> <span class="n">a</span><span class="p">);</span>

</code></pre></div></div>

<p>上面的输出：</p>

<div class="language-c highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="n">The</span> <span class="n">value</span> <span class="n">of</span> <span class="n">a</span> <span class="o">=</span> <span class="mi">1</span>

</code></pre></div></div>

<p>也就是变量的名字会以字符串的形式替换掉 #x</p>

<h2 id="-1">“##”</h2>

<div class="language-c highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="cp">#define contact(a, b) printf("%c", a##b)
</span>
</code></pre></div></div>

<p>很怪就对了，连接传入的字符，一般可以把变量名字拆开再传进去, 会自动连接该变量名 😂</p>]]></content><author><name>Xoderony</name></author><category term="知识" /><summary type="html"><![CDATA[#define]]></summary></entry><entry><title type="html">知识点-sizeof</title><link href="https://xoderony.github.io/2022/12/20/knowledge1/" rel="alternate" type="text/html" title="知识点-sizeof" /><published>2022-12-20T00:00:00+08:00</published><updated>2022-12-20T00:00:00+08:00</updated><id>https://xoderony.github.io/2022/12/20/knowledge1</id><content type="html" xml:base="https://xoderony.github.io/2022/12/20/knowledge1/"><![CDATA[<h1 id="关于-sizeof">关于 sizeof()</h1>

<div class="language-c highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">int</span> <span class="nf">main</span><span class="p">()</span> <span class="p">{</span>
 <span class="kt">short</span> <span class="n">s</span> <span class="o">=</span> <span class="mi">4</span><span class="p">;</span>  <span class="c1">//短整型</span>
 <span class="kt">int</span> <span class="n">a</span> <span class="o">=</span> <span class="mi">5</span><span class="p">;</span>  <span class="c1">//整形</span>
 <span class="n">printf</span><span class="p">(</span><span class="s">"%d"</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">(</span><span class="n">s</span> <span class="o">=</span> <span class="n">a</span> <span class="o">+</span> <span class="mi">2</span><span class="p">));</span>  <span class="c1">//这里打印的是 2 ，因为sizeof是通过类型来计算大小的</span>
                                   <span class="c1">//s = a + 2 这个表达式的类型是左值的类型，也就是short</span>
 <span class="n">printf</span><span class="p">(</span><span class="s">"%d"</span><span class="p">,</span> <span class="n">s</span><span class="p">);</span>  <span class="c1">//这里打印的是 5 ，因为sizeof是不计算内部的语句的</span>
                   <span class="c1">//也就是不计算s = a + 2，只推断类型(函数的话，推断类型为其返回值的类型)</span>
 <span class="k">return</span> <span class="mi">0</span><span class="p">;</span>
<span class="p">}</span>

</code></pre></div></div>

<p>·知识点 1：sizeof 通过类型计算大小</p>

<p>·知识点 2：sizeof 不计算内部的语句，只推断类型(函数的话，推断类型为其返回值的类型)</p>]]></content><author><name>Xoderony</name></author><category term="知识" /><category term="bug" /><summary type="html"><![CDATA[关于 sizeof()]]></summary></entry><entry><title type="html">知识点-指针</title><link href="https://xoderony.github.io/2022/12/20/knowledge2/" rel="alternate" type="text/html" title="知识点-指针" /><published>2022-12-20T00:00:00+08:00</published><updated>2022-12-20T00:00:00+08:00</updated><id>https://xoderony.github.io/2022/12/20/knowledge2</id><content type="html" xml:base="https://xoderony.github.io/2022/12/20/knowledge2/"><![CDATA[<h1 id="关于指针运算">关于指针运算</h1>

<h2 id="指针运算不改变指针类型">·指针运算不改变指针类型</h2>

<p>如：</p>

<div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>int arr[3] = { 1,2,3 };
&amp;arr + 1;  //&amp;arr表示整个数组的地址，+1跳过这个数组，虽然越界了，但是其类型仍然为 int (*) [3];

</code></pre></div></div>

<p>这时就有 sizeof(*(&amp;arr + 1)) = 12; 这时 sizeof 计算的其实是 int [3] 这个类型的大小</p>

<h1 id="关于数据结构中的指针常见用法">关于数据结构中的指针常见用法</h1>

<h2 id="多指针">·多指针</h2>

<p>一般有双指针、三指针、快慢指针</p>]]></content><author><name>Xoderony</name></author><category term="知识" /><summary type="html"><![CDATA[关于指针运算]]></summary></entry><entry><title type="html">bug3😎</title><link href="https://xoderony.github.io/2022/12/08/bug3/" rel="alternate" type="text/html" title="bug3😎" /><published>2022-12-08T00:00:00+08:00</published><updated>2022-12-08T00:00:00+08:00</updated><id>https://xoderony.github.io/2022/12/08/bug3</id><content type="html" xml:base="https://xoderony.github.io/2022/12/08/bug3/"><![CDATA[<h2 id="究极细的知识点1">究极细的知识点1</h2>

<p>变量(非const)引用类型是不能引用<strong>临时变量(如右值)或者常量</strong>的，</p>

<p>但是const引用既可以引用变量，也可以引用临时变量(如右值)或者常量，</p>

<p>所以某些地方使用const引用可以避免bug</p>

<h2 id="stl中的const">STL中的const</h2>

<p>const修饰的容器，使用迭代器时记得用const_iterator</p>]]></content><author><name>Xoderony</name></author><category term="bug" /><category term="知识" /><summary type="html"><![CDATA[究极细的知识点1]]></summary></entry><entry><title type="html">类型名</title><link href="https://xoderony.github.io/2022/12/07/c-he-c-zhong-de-lei-xing-ming/" rel="alternate" type="text/html" title="类型名" /><published>2022-12-07T00:00:00+08:00</published><updated>2022-12-07T00:00:00+08:00</updated><id>https://xoderony.github.io/2022/12/07/c-he-c-zhong-de-lei-xing-ming</id><content type="html" xml:base="https://xoderony.github.io/2022/12/07/c-he-c-zhong-de-lei-xing-ming/"><![CDATA[<h1 id="常见类型左及其类型名右">常见类型（左）及其类型名（右）</h1>

<div class="language-c highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">int</span> <span class="n">arr</span><span class="p">[</span><span class="mi">10</span><span class="p">];</span>         <span class="c1">//--&gt;     int [10]  数组</span>

<span class="kt">int</span><span class="o">*</span> <span class="n">p</span><span class="p">;</span>              <span class="c1">//--&gt;     int*  整形指针</span>

<span class="kt">int</span><span class="o">*</span> <span class="n">p</span><span class="p">[</span><span class="mi">10</span><span class="p">];</span>          <span class="c1">//--&gt;     int* [10]  指针数组 (int*代表存放数据的类型)</span>

<span class="kt">int</span> <span class="p">(</span><span class="o">*</span><span class="n">p</span><span class="p">)[</span><span class="mi">10</span><span class="p">];</span>        <span class="c1">//--&gt;     int (*)[10]  数组指针(int 代表存放数据的类型)</span>

<span class="kt">int</span><span class="o">*</span> <span class="p">(</span><span class="o">*</span><span class="n">p</span><span class="p">)[</span><span class="mi">10</span><span class="p">];</span>       <span class="c1">//--&gt;     int* (*)[10]  数组指针(指向指针数组的指针)</span>

<span class="kt">void</span> <span class="p">(</span><span class="o">*</span> <span class="n">pf</span><span class="p">[</span><span class="mi">10</span><span class="p">])</span> <span class="p">();</span>  <span class="c1">//--&gt;     void (*[10]) ()  函数指针数组（存放函数指针 void (*) () 的数组）</span>

</code></pre></div></div>

<p>其他同理······</p>

<p>规律：去掉变量名，剩下的就是类型。对于数组，去掉数组名剩下的是数组类型，再去掉数组的 [x] 剩下的才是存放数据的类型</p>]]></content><author><name>Xoderony</name></author><category term="知识" /><category term="bug" /><summary type="html"><![CDATA[常见类型（左）及其类型名（右）]]></summary></entry><entry><title type="html">bug2😶</title><link href="https://xoderony.github.io/2022/12/03/bug2/" rel="alternate" type="text/html" title="bug2😶" /><published>2022-12-03T00:00:00+08:00</published><updated>2022-12-03T00:00:00+08:00</updated><id>https://xoderony.github.io/2022/12/03/bug2</id><content type="html" xml:base="https://xoderony.github.io/2022/12/03/bug2/"><![CDATA[<p>power shell（其他控制台一样） 使用 UTF-8 字符集后在 vs 里面显示时就会乱码，暂时还不知道原因······</p>]]></content><author><name>Xoderony</name></author><category term="bug" /><category term="知识" /><summary type="html"><![CDATA[power shell（其他控制台一样） 使用 UTF-8 字符集后在 vs 里面显示时就会乱码，暂时还不知道原因······]]></summary></entry><entry><title type="html">bug1</title><link href="https://xoderony.github.io/2022/12/02/bug1/" rel="alternate" type="text/html" title="bug1" /><published>2022-12-02T00:00:00+08:00</published><updated>2022-12-02T00:00:00+08:00</updated><id>https://xoderony.github.io/2022/12/02/bug1</id><content type="html" xml:base="https://xoderony.github.io/2022/12/02/bug1/"><![CDATA[]]></content><author><name>Xoderony</name></author><category term="bug" /><category term="网站" /><summary type="html"><![CDATA[]]></summary></entry><entry><title type="html">BUG目录</title><link href="https://xoderony.github.io/2022/12/02/bugs/" rel="alternate" type="text/html" title="BUG目录" /><published>2022-12-02T00:00:00+08:00</published><updated>2022-12-02T00:00:00+08:00</updated><id>https://xoderony.github.io/2022/12/02/bugs</id><content type="html" xml:base="https://xoderony.github.io/2022/12/02/bugs/"><![CDATA[<h2 id="special-buglnk2019">special bug—LNK2019</h2>

<p>开始看到这个错误警告的时候一脸懵逼，翻来覆去最后是通过重新引用一遍头文件才解决的，真实奇葩。</p>

<p>——&gt;这告诉我们，自己的头文件别忘了加入防止多次引用的语句 :(</p>]]></content><author><name>Xoderony</name></author><category term="bug" /><summary type="html"><![CDATA[special bug—LNK2019]]></summary></entry><entry><title type="html">精华</title><link href="https://xoderony.github.io/2022/11/29/jing-hua/" rel="alternate" type="text/html" title="精华" /><published>2022-11-29T00:00:00+08:00</published><updated>2022-11-29T00:00:00+08:00</updated><id>https://xoderony.github.io/2022/11/29/jing-hua</id><content type="html" xml:base="https://xoderony.github.io/2022/11/29/jing-hua/"><![CDATA[<h1 id="我的收藏夹总有你想要的づ3づ️">我的收藏夹，总有你想要的（づ￣3￣）づ╭❤️～</h1>

<p>Bookmarks</p>

<h1 id="bookmarks">Bookmarks</h1>

<h3 id="收藏夹栏">收藏夹栏</h3>

<p><a href="https://www.bilibili.com/">哔哩哔哩</a>
        <a href="https://www.acfun.cn/">AcFun</a>
        <a href="http://dmh8.com/">樱花动漫</a>
        <a href="https://acgfantuan.com/">ACG饭团</a>
        <a href="http://yhdm06.com/">6樱花</a>
        <a href="http://www.bimiacg4.net/">Bimibimi</a>
        <a href="https://omofun.tv/">OmoFun</a>
        <a href="http://www.mvcat.com/">Movie</a></p>

<h3 id="资源">资源</h3>

<h3 id="游戏资源">游戏资源</h3>

<p><a href="https://assetstore.unity.com/">Unity 资源商店</a>
                <a href="https://www.unrealengine.com/marketplace/zh-CN/store">虚幻商城 - 虚幻引擎商城</a>
                <a href="https://steamzg.com/">小叽资源 – Free Share</a>
                <a href="https://www.ali213.net/">游侠网</a>
                <a href="https://game.ali213.net/">游侠NETSHOW论坛</a>
                <a href="https://www.3dmgame.com/">3DM游戏网</a>
                <a href="https://bbs.3dmgame.com/forum.php">3DMGAME_中国单机游戏论坛</a>
                <a href="http://www.9damaogame.net/">9DM</a>
                <a href="https://www.sonkwo.com/">杉果游戏</a>
                <a href="http://flysheep.ysepan.com/">flysheep资源避难所</a>
                <a href="http://gbtgame.ysepan.com/">GBT乐赏游戏空间</a>
                <a href="http://baozangku.ysepan.com/">哆啦A梦的神奇口袋</a>
                <a href="https://xxxxx520.com/">Switch520</a>
                <a href="https://www.s-sgames.com/">SGAMES-专注于精品游戏，各类可联机精品资源</a>
                <a href="https://fitgirl-repacks.site/">FitGirl Repacks - The ONLY official site for FitGirl Repacks. Every single FG repack installer has a link inside, which leads here. Do not fall for fake and scam sites, which are using my name.</a>
                <a href="https://dynalist.io/d/hgf4ADm7lp4r-TVkiMnArmiV">免费破解版游戏分享 - Dynalist</a>
                <a href="https://www.nexusmods.com/">Nexus mods and community</a>
                <a href="https://modworkshop.net/game/noita">Noita mod</a>
                <a href="https://mirror.sgkoi.dev/Home">泰拉瑞亚模组浏览器</a>
                <a href="https://mirror.bbstr.net/">泰拉瑞亚 tModLoader 模组浏览器</a>
                <a href="https://bbs.a9vg.com/thread-3427737-1-1.html">[百度/360]日版PS2 Non-Redump合集2387个镜像（暂停整理） - PS2资源分享区 - A9VG电玩部落论坛 - Powered by Discuz!</a>
                <a href="https://www.nutaku.net/home/">Play Free Hentai Games and Porn Games Online - Nutaku</a></p>

<h3 id="软件资源">软件资源</h3>

<p><a href="https://u9baoku.xyz/">悠久的小宝库</a>
                <a href="https://www.niceso.fun/?accessToken=eyJhbGciOiJIUzI1NiIsImtpZCI6ImRlZmF1bHQiLCJ0eXAiOiJKV1QifQ.eyJleHAiOjE2NTg0MTI3MzQsImZpbGVHVUlEIjoibThBWlYxMXk5RFVSeHpBYiIsImlhdCI6MTY1ODQxMjQzNCwiaXNzIjoidXBsb2FkZXJfYWNjZXNzX3Jlc291cmNlIiwidXNlcklkIjotNjgxMjQwNTc0OH0.0zZwN1CImp_fPPiPrLQeL3mqfO9BsE2hs9WipfTdq4E">奈斯搜索 - 资源超丰富的阿里云盘资源搜索网站！</a>
                <a href="https://alternativeto.net/">AlternativeTo - Crowdsourced software recommendations</a>
                <a href="https://www.similarsites.com/">Similarsites.com - Easily Explore alternative websites</a></p>

<h3 id="其他资源">其他资源</h3>

<p><a href="https://www.58pic.com/">千图网-免费设计图片素材网站-正版图库免费设计素材中国</a>
                <a href="http://tools.liumingye.cn/music/?page=searchPage">MYFREEMP3 </a>
                <a href="http://music.y444.cn/#/">下歌吧</a>
                <a href="https://www.extfans.com/">扩展迷</a>
                <a href="https://greasyfork.org/zh-CN">Greasy Fork </a>
                <a href="https://zhenti.burningvocabulary.cn/">英语真题在线 - Burning Vocabulary旗下产品</a>
                <a href="https://www.pptsupermarket.com/">PPT超级市场官网</a>
                <a href="https://www.ypppt.com/">PPT模板免费下载</a>
                <a href="https://echarts.apache.org/zh/index.html">Apache ECharts</a>
                <a href="https://wap.faloo.com/">同人小说</a></p>

<h3 id="在线娱乐">在线娱乐</h3>

<p><a href="https://sketch.metademolab.com/">动画绘图</a>
            <a href="https://waifulabs.com/">Waifu Labs </a>
            <a href="https://picrew.me/">Picrew｜つくってあそべる画像メーカー</a>
            <a href="https://www.pixilart.com/">像素画</a>
            <a href="https://crypko.ai/">Crypko</a>
            <a href="https://www.yikm.net/">小霸王，其乐无穷 。红白机，FC在线游戏，街机游戏，街机在线，NES games，NES games online，Super Mario</a>
            <a href="https://iogames.space/">在线游戏</a>
            <a href="https://pony.town/character">小马镇</a>
            <a href="http://music.alang.run/#/">一起听歌吧</a>
            <a href="https://youquhome.com/">有趣网址之家 – 收藏全球最有趣的网站</a>
            <a href="https://sharkle.com/">Sharkle | Generator of random awesomeness</a>
            <a href="https://theuselessweb.com/">The Useless Web</a>
            <a href="http://www.georgeandjonathan.com/#6">George &amp; Jonathan III</a>
            <a href="http://weavesilk.com/">Silk </a>
            <a href="https://aidn.jp/mikutap/">Mikutap</a>
            <a href="https://nuclearsecrecy.com/nukemap/">核爆模拟</a></p>

<h3 id="工具">工具</h3>

<p><a href="https://xiangjianan.github.io/lks/">LKs - 良心到难以置信的网站推荐</a>
            <a href="https://www.toolnb.com/">爱资料工具-好用的在线工具箱</a>
            <a href="https://www.onezyh.cn/?p=289">在线临时邮箱生成网站，拥有无数邮箱地址</a>
            <a href="https://www.tool22.com/">兔二工具</a>
            <a href="https://jianwai.youdao.com/index/0">网易见外工作台</a>
            <a href="https://www.jiuwa.net/">九蛙工具箱</a>
            <a href="https://www.uupoop.com/">在线PS软件</a>
            <a href="https://unbug.github.io/codelf/">CODELF</a>
            <a href="https://www.deepl.com/translator">DeepL翻译：全世界最准确的翻译</a>
            <a href="https://cn.office-converter.com/">在线转换器</a>
            <a href="https://www.dp712.com/">DP社区</a>
            <a href="https://winmoes.com/">枫の主题社 ★ 二次元技术研究社区~</a>
            <a href="http://moresound.tk/music/tool/">音乐解锁</a>
            <a href="https://audioalter.com/preset/8d-audio">8D Audio - Audioalter</a>
            <a href="https://getquicker.net/">Quicker软件 您的指尖工具箱 - Quicker</a>
            <a href="https://www.bccn.net/run/">在线编程 - 编程中国</a>
            <a href="https://panzoid.com/">Panzoid</a>
            <a href="https://vitozyf.github.io/lucky-draw/index.html#/">抽奖</a>
            <a href="https://saucenao.com/">SauceNAO Reverse Image Search</a>
            <a href="https://saucenao.com/index.php">SauceNAO Reverse Image Search</a>
            <a href="http://www.soutushenqi.com/home">搜图神器</a>
            <a href="https://steamdb.info/">SteamDB</a>
            <a href="http://hi.pcmoe.net/index.html">加密 - PcMoe!</a>
            <a href="http://waifu2x.udp.jp/">waifu2x</a>
            <a href="https://ultra.pixivel.moe/">UltraReso 超分酱</a>
            <a href="https://maplab.amap.com/">高德开放平台 | Map Lab</a></p>

<h3 id="网址">网址</h3>

<p><a href="https://github.com/">GitHub</a>
            <a href="https://www.zoomeye.org/">钟馗之眼</a>
            <a href="https://fantia.jp/">Fantia[ファンティア](综合)｜创作者支援平台</a>
            <a href="https://discord.com/channels/@me">Discord | 好友</a>
            <a href="https://dash.cloudflare.com/6504fa53bbc788b6964c4640736603f6">Cloudflare</a>
            <a href="https://www.natfrp.com/user/">SakuraFrp</a>
            <a href="https://jixia.ink/">极下防失联</a>
            <a href="https://www.dogfight360.com/blog/">Dogfight360 – 羽翼城个人博客</a>
            <a href="https://w1.ddnsgo.xyz/">V2free机场</a>
            <a href="https://www.zerotier.com/">ZeroTier – Global Area Networking</a>
            <a href="https://hsk.oray.com/">花生壳</a>
            <a href="https://lspjs.xyz/user">长风破浪</a>
            <a href="https://www.addog.vip/">网址导航 【addog】</a></p>

<h3 id="学技能网站">学技能网站</h3>

<p><a href="https://dazidazi.com/">dazidazi</a>
            <a href="https://cplusplus.com/">c/c++</a>
            <a href="https://stackoverflow.com/">Stack Overflow - Where Developers Learn, Share, &amp; Build Careers</a>
            <a href="https://leetcode.com/explore/">Explore - LeetCode</a>
            <a href="https://huke88.com/">虎课网 - 设计、办公软件学习</a>
            <a href="https://www.imooc.com/?utm_source=baidu&amp;utm_medium=sem&amp;utm_campaign=June2022&amp;utm_content=1&amp;utm_term=%C4%BD%BF%CE%CD%F8&amp;bd_vid=7782706376946582783">慕课网-程序员的梦工厂</a>
            <a href="https://app.codemonkey.com/courses">代码猴子</a>
            <a href="https://topbook.cc/overview/7">Topbook</a>
            <a href="https://learningmusic.ableton.com/zh-Hans/index.html">Learning Music (Beta)</a>
            <a href="https://fs49.org/">新版前言 - 裙中世界</a></p>

<h3 id="学习教育">学习教育</h3>

<p><a href="http://tkbtx.scedu.com.cn/#/course?stage=gz">四川省教育资源公共服务平台</a>
            <a href="http://www.scedu.com.cn/">四川省教育资源公共服务平台</a>
            <a href="http://yj.scedu.com.cn/middleresource/resource_cms/index.html#/content/homepage">四川云教</a>
            <a href="http://www.dearedu.com/">第二教育网</a>
            <a href="https://ulearning.eastedu.com/cdqz">泛在学习</a>
            <a href="http://jwc.xhu.edu.cn/xtgl/index_initMenu.html?jsdm=xs&amp;_t=1662768934006">教学管理信息服务平台</a>
            <a href="https://www.educoder.net/classrooms/8ekactlr/announcement">头歌</a>
            <a href="http://iwrite.unipus.cn/student">学生</a></p>

<h3 id="图-漫">图 漫</h3>

<p><a href="https://www.dmzj.com/">动漫之家</a>
            <a href="https://www.dongmanmanhua.cn/">咚漫漫画</a>
            <a href="https://www.iconfont.cn/home/index?spm=a313x.7781069.1998910419.2">阿里巴巴矢量图标库</a>
            <a href="https://www.vilipix.com/">p站-pixiv-插画世界</a>
            <a href="https://pixivel.moe/">Pixivel</a>
            <a href="https://pixiv.moe/">pixiv萌え</a>
            <a href="https://anime-pictures.net/?lang=zh_CN">动漫图片和壁纸</a>
            <a href="http://lab.mkblog.cn/wallpaper/">电脑壁纸</a>
            <a href="http://www.netbian.com/">桌面壁纸</a>
            <a href="https://bz.zzzmh.cn/index">极简壁纸</a>
            <a href="https://undraw.co/">undraw</a>
            <a href="https://wallroom.io/">wallroom</a>
            <a href="https://wallhere.com/">WallHere</a>
            <a href="https://wallhaven.cc/">Wallhaven</a>
            <a href="https://www.gamewallpapers.com/index.php?">GameWallpapers</a>
            <a href="https://www.wallpapermaiden.com/">wallpapermaiden</a>
            <a href="http://wallpaperswide.com/">wallpaperswide</a>
            <a href="https://wallpaperscraft.com/">wallpaperscraft</a></p>

<p><a href="https://theporndude.com/zh">Porn Dude </a>
    <a href="https://jmcomic.asia/">免費A漫 - 禁漫天堂</a>
    <a href="http://llss.site/">琉璃神社</a>
    <a href="https://hanime1.me/">Hanime1.me</a>
    <a href="https://www.2dfan.com/">2DFan</a>
    <a href="https://iqq3.fun/cn/">iQQTV </a>
    <a href="https://www.epicgames.com/store/zh-CN/?ns=85189f7cf7a64f86aa6aa91d81d36c08&amp;id=a61c6602b5784d36801d0cab73e02337">Epic Games Store</a>
    <a href="https://store.steampowered.com/">欢迎来到 Steam</a>
    <a href="https://mail.qq.com/cgi-bin/frame_html?sid=ShNziRS4c6rlyRlH&amp;target=today">QQ邮箱</a>
    <a href="https://mail.163.com/">163网易免费邮</a></p>]]></content><author><name>Xoderony</name></author><category term="网站" /><category term="bug" /><category term="time" /><summary type="html"><![CDATA[我的收藏夹，总有你想要的（づ￣3￣）づ╭❤️～]]></summary></entry></feed>