<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>RealDevClub - 泛技术讨论</title>
    <link>https://www.realdevclub.com/forum.php?mod=forumdisplay&amp;fid=26</link>
    <description>Latest 20 threads of 泛技术讨论</description>
    <copyright>Copyright(C) RealDevClub</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Mon, 06 Apr 2026 21:35:34 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.realdevclub.com/static/image/common/logo_88_31.gif</url>
      <title>RealDevClub</title>
      <link>https://www.realdevclub.com/</link>
    </image>
    <item>
      <title>从整数高精度运算到浮点高精度运算</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=4167</link>
      <description><![CDATA[RT的中B课堂Lesson3是高精度计算，同学们的程序可以轻松进行指定位数的高精度加法和乘法。

课后作业是：能不能基于int的高精度计算，做一套float的高精度计算程序？

这是课堂的ppt
很多同学在做这个作业的时候，遇到了一些细节问题，来找我讨论。实际上呢，这个float ...]]></description>
      <category>泛技术讨论</category>
      <author>liuyi</author>
      <pubDate>Wed, 25 Mar 2026 03:31:18 +0000</pubDate>
    </item>
    <item>
      <title>找回右键菜单中丢失的Edit with idle（保姆贴）</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=4159</link>
      <description><![CDATA[IDLE是Python官方自带的编程环境，作为轻量级IDE其实还挺好用的，而且越来越好用。

但是，在windows里，很多同学都经历过这样的噩梦：py文件上鼠标右键，属性，然后......找不到Edit with idle了！！！
怎么办？凉拌！那就...自己做一个呗！


首先按Win+R，输入regedi ...]]></description>
      <category>泛技术讨论</category>
      <author>liuyi</author>
      <pubDate>Wed, 18 Mar 2026 13:01:37 +0000</pubDate>
    </item>
    <item>
      <title>一道关于 SSTI 签到题</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=4105</link>
      <description><![CDATA[用于测试 markdown 渲染


[md]# 一道 SSTI 签到题 SWPUCTF 2025 秋季新生赛 诚实大厅
**Tag**: #web #upload #jinja2
**Environment:** #Python3

&gt; 什么是 SSTI
&gt;
&gt; SSTI是Server-Side Template Injection的缩写，是一种Web应用程序安全漏洞，主要存在于使用基于模板 ...]]></description>
      <category>泛技术讨论</category>
      <author>littleblackLB</author>
      <pubDate>Fri, 13 Feb 2026 12:37:26 +0000</pubDate>
    </item>
    <item>
      <title>Win 11 快捷键琐事</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=4099</link>
      <description><![CDATA[本日快捷键
Win+Ctrl+Shift+B
不知道大家有没有遇到过电脑玩着地平线5，后台opencode跑着10个subagent，电脑莫名其妙黑屏了的场景
（我绝对没遇到过)。
这种时候，重启电脑，我（划掉）各位的opencode里的程序就不会保存了。怎么办呢？这个时候，Win+Ctrl+Shift+B就派上 ...]]></description>
      <category>泛技术讨论</category>
      <author>12_Parsec</author>
      <pubDate>Thu, 05 Feb 2026 07:06:20 +0000</pubDate>
    </item>
    <item>
      <title>Win 11精简版Tiny11 25H2来了</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=810</link>
      <description><![CDATA[Win11相比Win10，屎山味道越来越重。规模越来越大，P事儿越来越多，更新越来越多，Bug越来越更多......（当然，从课堂同学们电脑表现看，Mac的Bug一点也不比Win11少，但是人家Mac再怎么Bug基本不死机（只是经常需要自己手动重启），这个还是领先的）所以转这篇文章给大 ...]]></description>
      <category>泛技术讨论</category>
      <author>liuyi</author>
      <pubDate>Wed, 29 Oct 2025 11:02:59 +0000</pubDate>
    </item>
    <item>
      <title>偶然发现一个题目的特殊解法</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=808</link>
      <description><![CDATA[题目是这样的：有一个 n×mn×m 的网格，每个格子中有一个正整数。从网格的左上角 (1,1)(1,1) 出发，每次只能向右或向下移动，到达右下角 (n,m)(n,m)。求经过的格子数字之和最小的路径和。
第一行两个整数 n,mn,m
接下来 nn 行，每行 mm 个正整数，表示网格中的数字
正 ...]]></description>
      <category>泛技术讨论</category>
      <author>潮汐</author>
      <pubDate>Mon, 27 Oct 2025 11:39:27 +0000</pubDate>
    </item>
    <item>
      <title>Python 异步编程库 —— asyncio 简单入门</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=793</link>
      <description><![CDATA[简单来说，异步是一种编程模型，区别于同步，允许程序在等待 I/O 操作时继续执行其他任务，从而提高了程序的并发性和效率。


何时使用异步？对于 IO 密集型 (如文件读写、网络请求) 的任务，优先使用异步可以在提升效率基础下避免线程竞争，同时避免管理多线程的开销以 ...]]></description>
      <category>泛技术讨论</category>
      <author>littleblackLB</author>
      <pubDate>Tue, 07 Oct 2025 08:17:27 +0000</pubDate>
    </item>
    <item>
      <title>长篇连载：智能手机操作系统发展史之 Blackberry</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=791</link>
      <description><![CDATA[2001年9月11日上午，当大家还在正常的办公和生活时，几声巨响改变了世界。两架被恐怖分子劫持的民航客机分别撞向美国纽约世界贸易中心一号楼和世界贸易中心二号楼，两座建筑在遭到攻击后相继倒塌，此时民众陷入到惊慌与恐惧当中。纽约城的通讯几乎全部瘫痪，与外界的联 ...]]></description>
      <category>泛技术讨论</category>
      <author>liuyi</author>
      <pubDate>Mon, 06 Oct 2025 09:58:47 +0000</pubDate>
    </item>
    <item>
      <title>n8n求助帖！</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=703</link>
      <description><![CDATA[有没有用过n8n中gmail credentials的大佬？

我创建了一个Google cloud的项目来通过n8n的oauth（下图一），但是在点击Sign In With Google后，会在输入完密码后显示请求超时（下图二）。本人开了美国的梯子。

 ...]]></description>
      <category>泛技术讨论</category>
      <author>12_Parsec</author>
      <pubDate>Sat, 16 Aug 2025 11:40:38 +0000</pubDate>
    </item>
    <item>
      <title>在 linux 上安装 Windows 网易云音乐</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=685</link>
      <description><![CDATA[背景在很久以前网易云 linux 版本就被官方悄悄弃用了, 并且目前为止由于 API 的更新, 它完全无法使用了. 为了解决在 linux 上用网易云的问题, 我诉诸过第三方开发者的网易云播放器, 但要不然是功能不完善, 要不然就是稳定性不高. 我便打算通过 wine 来运行 Windows 版本 ...]]></description>
      <category>泛技术讨论</category>
      <author>littleblackLB</author>
      <pubDate>Tue, 12 Aug 2025 11:40:01 +0000</pubDate>
    </item>
    <item>
      <title>USACO 25OPEN SILVER1+2</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=681</link>
      <description><![CDATA[防吞]]></description>
      <category>泛技术讨论</category>
      <author>C0mp1ler</author>
      <pubDate>Mon, 11 Aug 2025 14:50:00 +0000</pubDate>
    </item>
    <item>
      <title>算法效率：大O记法</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=679</link>
      <description><![CDATA[本来不想细究这个的，但是最近被USACO的题折磨得不轻，又加上刚好看到讲这个的文章，就想着研究一下发个帖子吧。
在具体讲大O记法之前，先看2组代码：这两组代码都是计算前n个整数之和。
第一个算法的思路是使用一个初始值为0的变量，然后遍历n个整数，并将值逐一累加到 ...]]></description>
      <category>泛技术讨论</category>
      <author>BZR</author>
      <pubDate>Mon, 11 Aug 2025 13:37:13 +0000</pubDate>
    </item>
    <item>
      <title>太空大逃亡AI思路——势场法</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=642</link>
      <description><![CDATA[这篇帖子，我将复盘一下在前日719RT年度派对上用势场法所实现的AI.

很荣幸能成为四组中存活时间最长的AI，同时算法高效，是O(N)的线性时间复杂度(N为障碍物).


(绿色方块为AI)

为什么选势场法？
这个方法更加自然，同时有一定的直观性，因为你可以将障碍物类比成一个 ...]]></description>
      <category>泛技术讨论</category>
      <author>littleblackLB</author>
      <pubDate>Tue, 22 Jul 2025 15:11:41 +0000</pubDate>
    </item>
    <item>
      <title>【抛砖引玉】关于太空大逃亡AI思路</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=638</link>
      <description><![CDATA[在刚刚过去的719RT年度派对上，我们的活动任务是现场为RT课堂经典小游戏“太空大逃亡”写一个ai，作为主持人我现场没有参与编程，但在前期准备我也有试着写过一个，采取的是纯人工，下面分享一下思路：

        首先我把决策分为两类，宏观和局部——宏观是指从整个屏 ...]]></description>
      <category>泛技术讨论</category>
      <author>脆脆大奶酪</author>
      <pubDate>Tue, 22 Jul 2025 04:13:18 +0000</pubDate>
    </item>
    <item>
      <title>python的进制转换真是方便啊</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=633</link>
      <description><![CDATA[如题，int(x,n)强制把n进制数x转成转为十进制，bin()、oct()、hex()把十进制转成2、8、16进制

同时表示起来也很方便，只需要加上对应的前缀，以字符串的形式表示，如\'0b110\'就是二进制的6，\'0o12\'就是八进制的10，\'0x11\'就是十六进制的17
特别的是，2、8、10、16的互转 ...]]></description>
      <category>泛技术讨论</category>
      <author>脆脆大奶酪</author>
      <pubDate>Tue, 15 Jul 2025 15:01:52 +0000</pubDate>
    </item>
    <item>
      <title>Python有哪些独有的关键词？</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=618</link>
      <description><![CDATA[Python独有的关键词
Python的独特之处在于它有其他主流编程语言中没有的关键词。
（当然，也可能更在于它像不同于所有其他语言、伪代码一样的编写方式：不能说是差不多，只能说是像得不能再像了）
回归正题，以下是一些Python特有的关键词：
1. as
 - 用作别名绑定
 -  ...]]></description>
      <category>泛技术讨论</category>
      <author>BZR</author>
      <pubDate>Sun, 13 Jul 2025 13:45:11 +0000</pubDate>
    </item>
    <item>
      <title>office无中生有</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=580</link>
      <description><![CDATA[此教程仅适用于Windows系统：
1.通过网盘下载officeTool（如下）
通过网盘分享的文件：Office_Tool_with_runtime_v10.21.35.0_x64 (1).zip
链接: https://pan.baidu.com/s/1S_KLHuWjHBWP3rrvh8LEjw?pwd=1111 提取码: 1111
下载完成后打开压缩包，将里面的文件夹复制出来 ...]]></description>
      <category>泛技术讨论</category>
      <author>Felix</author>
      <pubDate>Wed, 02 Jul 2025 02:34:33 +0000</pubDate>
    </item>
    <item>
      <title>动态网络爬虫</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=280</link>
      <description><![CDATA[有没有人会用requests和json做dynamic web scraping]]></description>
      <category>泛技术讨论</category>
      <author>AquaVision</author>
      <pubDate>Mon, 19 May 2025 14:16:20 +0000</pubDate>
    </item>
    <item>
      <title>版本管理工具——Git</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=268</link>
      <description><![CDATA[我在编程时，经常遇到一个问题：修改代码发现改错了，却回不到之前的版本了。这时候怎么办呢？可以用到一个版本控制工具，Git。每次修改后，你可以保存一个版本，然后可以随时回退到之前的状态。它会详细地记录你改了那些地方。Git的工作原理是一个远程服务器会存储所有 ...]]></description>
      <category>泛技术讨论</category>
      <author>Athena</author>
      <pubDate>Wed, 14 May 2025 13:33:15 +0000</pubDate>
    </item>
    <item>
      <title>怎么高效且愉悦地沉浸于线性代数的学习？</title>
      <link>https://www.realdevclub.com/forum.php?mod=viewthread&amp;tid=263</link>
      <description><![CDATA[在写这篇帖子的时候，我已基本掌握了线性代数的核心概念。与传统教材（如同济大学版《线性代数》）从行列式入手的方式不同，我选择了更具直观性的学习路径：首先观看了3Blue1Brown（以下简称3b1b）制作的《线性代数的本质》（Essence of Linear Algebra）系列视频，然后 ...]]></description>
      <category>泛技术讨论</category>
      <author>littleblackLB</author>
      <pubDate>Wed, 14 May 2025 07:41:06 +0000</pubDate>
    </item>
  </channel>
</rss>