<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>龙网论坛 - 导读 - 最新回复</title>
    <link>https://bbs.nfer.net/forum.php?mod=guide&amp;view=new</link>
    <description>最新回复</description>
    <copyright>Copyright(C) 龙网论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sat, 13 Jun 2026 08:06:14 +0000</lastBuildDate>
    <ttl>30</ttl>
    <image>
      <url>https://bbs.nfer.net/static/image/common/logo_88_31.gif</url>
      <title>龙网论坛</title>
      <link>https://bbs.nfer.net/</link>
    </image>
    <item>
      <title>我老豆坐着openclaw回来了</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1304</link>
      <description><![CDATA[兄弟们我老豆回来了，先在超级灌水打个卡。今天主打一个轻松局：用 openclaw 折腾了一圈，感觉像请了个赛博副驾驶，查资料、改配置、跑测试都挺快。以前我发帖前要开一堆网页来回切，现在是想法先说出来，执行交给工具，人类主要负责拍板和快乐。

当然也不是百分百无脑 ...]]></description>
      <category>超级灌水</category>
      <author>老豆</author>
      <pubDate>Wed, 04 Mar 2026 15:55:59 +0000</pubDate>
    </item>
    <item>
      <title>李厚霖大规模无可奈何花落去</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1303</link>
      <description><![CDATA[李厚霖夺槈]]></description>
      <category>超级灌水</category>
      <author>老豆</author>
      <pubDate>Wed, 04 Mar 2026 15:50:25 +0000</pubDate>
    </item>
    <item>
      <title>零基本学英语</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1302</link>
      <description><![CDATA[您好！非常理解您的情况，四十多岁从零开始学英语，这份决心和行动力非常令人敬佩。您已经自学了《新概念1》并积累了一些词汇，这是非常扎实的第一步。

通过看美剧来练习听力和口语，是一个绝佳的选择，因为它能让你在真实场景中“活化”你背过的单词。针对您 **“零基 ...]]></description>
      <category>英语</category>
      <author>龙哥</author>
      <pubDate>Mon, 20 Oct 2025 08:32:41 +0000</pubDate>
    </item>
    <item>
      <title>天下3副本操作技巧——物理剑</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1301</link>
      <description><![CDATA[天下3副本操作技巧——物理剑天下3副本操作技巧——天机篇天下3副本操作技巧——念冰心篇天下3副本操作技巧——魍魉很多小伙伴可能刚入坑物理剑，对副本的输出手法不太熟悉，看到别人同样的属性比自己却高很多输出，总是免不了在深夜里叹息。副本一哥也要有一流的手法支 ...]]></description>
      <category>游戏竞技</category>
      <author>龙哥</author>
      <pubDate>Fri, 05 Sep 2025 01:36:01 +0000</pubDate>
    </item>
    <item>
      <title>天下3副本操作技巧——天机</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1300</link>
      <description><![CDATA[天下3副本操作技巧——天机天下3副本操作技巧——物理剑篇天下3副本操作技巧——念冰心篇天下3副本操作技巧——魍魉上一篇物理剑的输出手法攻略的评论区有小伙伴说想学一下天机的输出手法，满足你！今天来给大家详细介绍一下副本天机的输出思路和注意事项。手把手教你如 ...]]></description>
      <category>游戏竞技</category>
      <author>龙哥</author>
      <pubDate>Thu, 04 Sep 2025 15:07:36 +0000</pubDate>
    </item>
    <item>
      <title>四大名著原版txt电子书</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1295</link>
      <description><![CDATA[四大名著原版txt]]></description>
      <category>书海泛舟</category>
      <author>老豆</author>
      <pubDate>Wed, 31 Jul 2024 05:02:38 +0000</pubDate>
    </item>
    <item>
      <title>安装Debian后的操作记录</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1292</link>
      <description><![CDATA[安装Debian后的操作记录
    apt-get update -y &amp;&amp; apt-get install curl -y

    修改SSH端口:vi /etc/ssh/sshd_config 命令打开文件，修改其中的port后面的数字。
    DeBian重启SSH：service ssh restart 

    Debian下Vi编辑器在文本输入模式时，不能正确使用方向 ...]]></description>
      <category>web技术</category>
      <author>admin</author>
      <pubDate>Mon, 29 Apr 2024 15:00:41 +0000</pubDate>
    </item>
    <item>
      <title>Ubuntu 复制整个文件夹到另一个文件夹</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1291</link>
      <description><![CDATA[在Ubuntu中，你可以使用cp命令来复制整个文件夹到另一个文件夹。如果目标文件夹不存在，cp命令会自动创建它。

以下是一个命令行示例，它将把source_folder复制到destination_folder：
cp -r /path/to/source_folder /path/to/destination_folder
解释：
-r 或 -R 表示 ...]]></description>
      <category>web技术</category>
      <author>admin</author>
      <pubDate>Mon, 29 Apr 2024 14:29:45 +0000</pubDate>
    </item>
    <item>
      <title>负数同比增长怎么算？详细解读三种不同的计算方法</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1290</link>
      <description><![CDATA[负数同比增长是指在两个时间点之间，数据发生了减少但减少的幅度相对较小，导致负数值变得更小。当计算负数同比增长时，可以根据实际情况和需求选择不同的计算方法。
以下是三种不同的计算方法：


1.常规计算方法

首先，确定两个时间点的数值，其中一个为基准期的数值 ...]]></description>
      <category>财经实务</category>
      <author>龙哥</author>
      <pubDate>Fri, 26 Apr 2024 00:43:59 +0000</pubDate>
    </item>
    <item>
      <title>nginx反代出错http2</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1287</link>
      <description><![CDATA[一是 listen 443；，改成listen 443 http2 ssl;
二是协议  ssl_protocols SSLv3 TLSv1.2 TLSv1.1 TLSv1;
三是加密方式ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Fri, 03 Sep 2021 14:26:07 +0000</pubDate>
    </item>
    <item>
      <title>重新编译nginx增加模块（反代相关）</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1286</link>
      <description><![CDATA[1、find / -name nginx-1
        /usr/local/nginx-1.18/sbin/nginx
        /usr/local/nginx-generic-1.18/sbin/nginx

2、根据查出的目录查看编译参数并保存，注意去掉 “arguments:”
    如：/usr/local/nginx-1.18/sbin/nginx -V
3、下载nginx相应版本
        w ...]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Fri, 03 Sep 2021 14:21:46 +0000</pubDate>
    </item>
    <item>
      <title>中国城市地图</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1285</link>
      <description><![CDATA[]]></description>
      <category>影音美图</category>
      <author>admin</author>
<enclosure url="https://bbs.nfer.net/data/attachment/forum/202108/25/135738gbb01d18obisioti.jpg" length="2481636" type="image/jpeg" />      <pubDate>Wed, 25 Aug 2021 05:58:00 +0000</pubDate>
    </item>
    <item>
      <title>K3系统设置</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1284</link>
      <description><![CDATA[]]></description>
      <category>财经实务</category>
      <author>admin</author>
<enclosure url="https://bbs.nfer.net/data/attachment/forum/202108/25/094938owykp39wkf9f9wqt.png" length="32429" type="image/jpeg" />      <pubDate>Wed, 25 Aug 2021 01:49:49 +0000</pubDate>
    </item>
    <item>
      <title>Discuz can‘t find “pre_forum_rsscache“的解决方案</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1281</link>
      <description><![CDATA[网上很多代码最后一行有问题，其实应该在phpmyadmin里运行]]></description>
      <category>web技术</category>
      <author>admin</author>
      <pubDate>Thu, 22 Jul 2021 06:35:57 +0000</pubDate>
    </item>
    <item>
      <title>宝塔BT+55+v2插件nginx分流伪装</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1279</link>
      <description><![CDATA[]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Wed, 02 Jun 2021 06:17:30 +0000</pubDate>
    </item>
    <item>
      <title>宝塔BT面板+V2Ray：实现Websocket+TLS+Nginx分流</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1278</link>
      <description><![CDATA[]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Wed, 02 Jun 2021 06:16:48 +0000</pubDate>
    </item>
    <item>
      <title>一首打油诗巧记美国50州</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1277</link>
      <description><![CDATA[一首打油诗巧记美国50州
为帮助大家记住美国的50个州，以及它们相对应的位置，在你的脑海里绘制一张美国地图。
美阿姨画鹅，家内爱优雅；
梦怀多心客，被烂不堪荷；
名花疏色露，唯以饮还歇；
垦田觅拉夫，西风北南桥；
 ...]]></description>
      <category>超级灌水</category>
      <author>龙哥</author>
<enclosure url="https://bbs.nfer.net/data/attachment/forum/202104/25/113123ugfbhtrvifhvlmct.jpg" length="167305" type="image/jpeg" />      <pubDate>Sun, 25 Apr 2021 03:31:31 +0000</pubDate>
    </item>
    <item>
      <title>美国地图</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1276</link>
      <description><![CDATA[]]></description>
      <category>影音美图</category>
      <author>龙哥</author>
<enclosure url="https://bbs.nfer.net/data/attachment/forum/202104/25/111003bgv4vvfl7gelevg3.jpg" length="1474481" type="image/jpeg" />      <pubDate>Wed, 21 Apr 2021 13:23:47 +0000</pubDate>
    </item>
    <item>
      <title>pyCharm最新2018激活码</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1271</link>
      <description><![CDATA[1.修改hosts文件：
   添加下面一行到hosts文件，目的是屏蔽掉Pycharm对激活码的验证
   windwos系统hosts文件路径为：C:\\Windows\\System32\\drivers\\etc
   如果遇到权限问题，可将hosts文件先复制出来修改后再覆盖原来的即可。
   Linux和mac的hosts文件路径为：/etc

 ...]]></description>
      <category>Python</category>
      <author>龙哥</author>
      <pubDate>Wed, 21 Feb 2018 05:02:14 +0000</pubDate>
    </item>
    <item>
      <title>自己动手激活Windows 10和Office 2016</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1270</link>
      <description><![CDATA[其实波波用的电脑本身就是正版的windows系统，可是在一个不经意中系统损坏了，没办法只好从网上下载新的Win10进行安装。波波是有一点强迫症的人，所以从网上下载的系统也是微软官方的下载版，下载之后没有激活，只能手动激活了。下面是激活windows和激活office的过程。
 ...]]></description>
      <category>软件交流</category>
      <author>龙哥</author>
      <pubDate>Thu, 08 Feb 2018 01:08:58 +0000</pubDate>
    </item>
    <item>
      <title>用CentOS搭建KMS服务器激活win10教程</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1269</link>
      <description><![CDATA[Windows激活工具一直是病毒木马的高发地带，所以一直以来被人们所诟病。在这种情况下自己搭建一个KMS服务器去激活Windows无疑是最好的选择，所以菠菜园本着学习的精神经过对KMS服务器的研究，分享本篇教程。（本篇文章仅供学习交流，请勿用于商业用途，请支持正版！！！ ...]]></description>
      <category>软件交流</category>
      <author>龙哥</author>
      <pubDate>Thu, 08 Feb 2018 01:03:29 +0000</pubDate>
    </item>
    <item>
      <title>Python Excel操作——xlrd、xlwd</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1268</link>
      <description><![CDATA[读取1、导入模块      import xlrd2、打开Excel文件读取数据       data = xlrd.open_workbook(\'excel.xls\')3、获取一个工作表    1  table = data.sheets()[0]          #通过索引顺序获取    2  table = data.sheet_by_index(0) #通过索引顺序获取    3  table = data ...]]></description>
      <category>Python</category>
      <author>龙哥</author>
      <pubDate>Thu, 01 Feb 2018 09:57:27 +0000</pubDate>
    </item>
    <item>
      <title>Python3行代码之——截图工具</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1267</link>
      <description><![CDATA[from PIL import ImageGrab
im = ImageGrab.grab()
im.save(addr,\'jpeg\')

定时功能的话，加入time.sleep，做个while死循环完成。妥妥的！再能个gui界面生成exe，启动exe后台自动截图（gui需用多线程）。666]]></description>
      <category>Python</category>
      <author>龙哥</author>
      <pubDate>Thu, 01 Feb 2018 09:56:35 +0000</pubDate>
    </item>
    <item>
      <title>Python模拟登录的几种方法</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1265</link>
      <description><![CDATA[]]></description>
      <category>Python</category>
      <author>龙哥</author>
      <pubDate>Tue, 30 Jan 2018 11:39:15 +0000</pubDate>
    </item>
    <item>
      <title>杰奇、关关相关问题集锦</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1263</link>
      <description><![CDATA[]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Tue, 23 Jan 2018 14:11:18 +0000</pubDate>
    </item>
    <item>
      <title>Python3.0的新改动</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1262</link>
      <description><![CDATA[这篇文章主要介绍了相比于python2.6，python3.0的新特性。更详细的介绍请参见python3.0的文档。

Common Stumbling Blocks

本段简单的列出容易使人出错的变动（初学者应该注意）。


[*]print语句被print()函数取代了，可以使用关键字参数来替代老的print特殊语法。例 ...]]></description>
      <category>Python</category>
      <author>龙哥</author>
      <pubDate>Mon, 22 Jan 2018 14:10:54 +0000</pubDate>
    </item>
    <item>
      <title>python读取xlsx文件内容，插入到sqlite3数据库里面</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1261</link>
      <description><![CDATA[1. 代码功能：读取xlsx文件内容，插入到sqlite3数据库里面。2. 安装xlrd： pip install xlrd。 sqlite3已经有库了。。不用安装，直接使用。]]></description>
      <category>Python</category>
      <author>龙哥</author>
      <pubDate>Mon, 22 Jan 2018 14:08:41 +0000</pubDate>
    </item>
    <item>
      <title>Python读取Excel数据</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1260</link>
      <description><![CDATA[　　今天一同学给我发来一个Excel文件,让我帮他找一些信息,打开一开 8000多条数据。自己手工处理是不可能完成的的啦。作为一名程序员,当然要用程序来处理。处理生活中的问题当然是Python最为方便啦。利用万能的 Google 搜索 Python Excel,点击第一条结果http://www.pyth ...]]></description>
      <category>Python</category>
      <author>龙哥</author>
      <pubDate>Mon, 22 Jan 2018 14:03:58 +0000</pubDate>
    </item>
    <item>
      <title>Python错误集</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1259</link>
      <description><![CDATA[1、NameError:name ‘xrange’ is not defined
     原因是python版本为python 3，而xrange( )函数时在python 2.x中的一个函数，在Python 3中，range()的实现方式与xrange()函数相同，所以就不存在专用的xrange( )，因此，若你想在python 3中运行程序，将xrange( )函数 ...]]></description>
      <category>Python</category>
      <author>龙哥</author>
      <pubDate>Mon, 22 Jan 2018 14:02:58 +0000</pubDate>
    </item>
    <item>
      <title>全球3D打印格局</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1258</link>
      <description><![CDATA[]]></description>
      <category>超级灌水</category>
      <author>龙哥</author>
      <pubDate>Thu, 13 Jul 2017 06:43:59 +0000</pubDate>
    </item>
    <item>
      <title>全球金属3D打印格局（激光、电子束代表企业）</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1257</link>
      <description><![CDATA[目前的金属3D打印，主流有2种技术，根据能量源的不同，主要分为激光、电子束两大类（都可以熔化金属实现打印），还有其他一些不同的金属3D打印技术类型。
为什么做电子束金属3D打印的厂商这么少？
我们可以看到，激光金属3D打印厂商很多，而电子束的很少，全球范围内只 ...]]></description>
      <category>超级灌水</category>
      <author>龙哥</author>
      <pubDate>Thu, 13 Jul 2017 06:41:54 +0000</pubDate>
    </item>
    <item>
      <title>2016年中国3D打印格局</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1256</link>
      <description><![CDATA[]]></description>
      <category>超级灌水</category>
      <author>admin</author>
<enclosure url="https://bbs.nfer.net/data/attachment/forum/201704/05/101406msvlpvhl49s0zrr1.png" length="988948" type="image/jpeg" />      <pubDate>Wed, 05 Apr 2017 02:14:15 +0000</pubDate>
    </item>
    <item>
      <title>cmd</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1253</link>
      <description><![CDATA[]]></description>
      <category>软件交流</category>
      <author>龙哥</author>
      <pubDate>Thu, 08 Dec 2016 13:21:19 +0000</pubDate>
    </item>
    <item>
      <title>IT 圈里经常被读错的词</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1252</link>
      <description><![CDATA[()标相应英文单词
[]标音标

=====公司/产品名=====
Youtube (You-tube [tju:b]) 念 优tiu啵 不念优吐毙
Skype [ˈskaɪp] 念 死盖破 不念 死盖屁
Adobe [əˈdəʊbi] 念 阿兜笔 不念 阿斗伯
Chrome [krəʊm] 念 克肉姆
C# (C Sharp) 念 C煞破
GNU [(g)nuː] 念 哥怒
 ...]]></description>
      <category>编程综合</category>
      <author>龙哥</author>
      <pubDate>Tue, 29 Nov 2016 12:25:59 +0000</pubDate>
    </item>
    <item>
      <title>东莞市2016年普通高考各中学应届考生上线人数统计</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1248</link>
      <description><![CDATA[]]></description>
      <category>超级灌水</category>
      <author>龙哥</author>
<enclosure url="https://bbs.nfer.net/data/attachment/forum/201610/12/152129w0e76f873z876j36.png" length="24089" type="image/jpeg" />      <pubDate>Wed, 12 Oct 2016 07:21:36 +0000</pubDate>
    </item>
    <item>
      <title>麻将宝典手写版</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1245</link>
      <description><![CDATA[]]></description>
      <category>超级灌水</category>
      <author>龙哥</author>
<enclosure url="https://bbs.nfer.net/data/attachment/forum/201609/30/124205mtfouu0ult9raufb.jpg" length="221272" type="image/jpeg" />      <pubDate>Fri, 30 Sep 2016 04:42:42 +0000</pubDate>
    </item>
    <item>
      <title>有关认缴制下注册资本入账的探讨</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1239</link>
      <description><![CDATA[还记得之前在网校论坛上发起过关于认缴制下注册资本入账会计如何处理的讨论帖，这两天翻来看看，还真有不少财务人发表自己的意见。所谓认缴制是工商登记制度的一项改革措施。具体是指工商部门只登记公司认缴的注册资本总额，无需登记实收资本，不再收取验资证明文件。申 ...]]></description>
      <category>财经实务</category>
      <author>龙哥</author>
      <pubDate>Mon, 25 Jul 2016 08:43:06 +0000</pubDate>
    </item>
    <item>
      <title>资本公积转增股本的个税征免之争，税总有了结论</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1238</link>
      <description><![CDATA[根据国务院常务会议决定，财政部、国家税务总局发布了《关于将国家自主创新示范区有关税收试点政策推广到全国范围实施的通知》(财税〔2015〕116号)， 国家税务总局又于近日出台《关于股权奖励和转增股本个人所得税征管问题的公告》(国家税务总局公告2015年第80号，以下 ...]]></description>
      <category>财经实务</category>
      <author>admin</author>
      <pubDate>Wed, 20 Jul 2016 01:01:17 +0000</pubDate>
    </item>
    <item>
      <title>股改过程转增股本涉税深度分析</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1237</link>
      <description><![CDATA[]]></description>
      <category>财经实务</category>
      <author>admin</author>
      <pubDate>Wed, 20 Jul 2016 00:58:30 +0000</pubDate>
    </item>
    <item>
      <title>关于长期股权投资中一个顺流逆流交易的一个理解</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1234</link>
      <description><![CDATA[给你个理解方法：无论顺流还是逆流，都相当于“一家人自己卖东西给自己”，逆流是乙卖给了甲，虽然是一家人，但甲确实付了钱给乙，但事实上交易从整体是不存在，这时在合并报表中可以视为甲方继续追了加长期股权投资，同时贷方消除存货，也就从整体消除了这项交易。而甲 ...]]></description>
      <category>注册会计师</category>
      <author>龙哥</author>
      <pubDate>Tue, 05 Apr 2016 05:01:18 +0000</pubDate>
    </item>
    <item>
      <title>长期股权投资口决</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1233</link>
      <description><![CDATA[口决如下：1 N1 g+z% x+ G  x2 e) ~
投资种类多,先分初与续； （长期股权投资有很多种，但均要分别初始投资和后续计量来做账）
合并与投资,初始各不同； （分同一控制与非同一控制）
同一控制下,合并按份额； （同一控制下，不确认损益，按成本转账）) b, Y) o! q5 t9 N ...]]></description>
      <category>中级会计师</category>
      <author>龙哥</author>
      <pubDate>Sat, 02 Apr 2016 03:44:42 +0000</pubDate>
    </item>
    <item>
      <title>使用MySQL MySqldump命令导出数据时的注意事项</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1232</link>
      <description><![CDATA[今天使用mysqldump命令备份数据的时候出现了一个问题。
一开始迁移 Discuz 7 论坛的 mysql 数据库时,采用 mysqldump 命令的时候一切顺利，但导入的时候却遇到了
 ERROR 1062 (xxxxx) at line 1262: Duplicate entry \'XXX\' for key \'XXX‘ 错误，并停在原地。对于遇到相 ...]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Sat, 09 Jan 2016 05:20:04 +0000</pubDate>
    </item>
    <item>
      <title>详解MySQL大数据量的导入与导出迁移</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1231</link>
      <description><![CDATA[如果我们的数据比较小（比如2M或以下），我们可以很方便的使用phpMyAdmin的导入导出功能先说导出，我们在phpMyAdmin中导出SQL 脚本就相当于文件下载，如果PHP环境允许，脚本执行不会超时的情况也是可以导出大文件的，但是稳定性和速度不够。我们还可以使用MySQL提供给我 ...]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Sat, 09 Jan 2016 05:02:37 +0000</pubDate>
    </item>
    <item>
      <title>如何用俄语在麦当劳点餐</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1230</link>
      <description><![CDATA[相信很多去俄罗斯等俄语国家学习的同学来说，偶尔会去麦当劳换换口味吃些东西，既便宜又方便。那么问题就来了，如何不慌不乱地用俄语点东西呢？本期就助你淡定地在麦当劳点餐。



А:- Здра́вствуйте! 你好！В:- Здра́вствуйте! Я хот ...]]></description>
      <category>俄语</category>
      <author>龙哥</author>
      <pubDate>Wed, 06 Jan 2016 03:11:24 +0000</pubDate>
    </item>
    <item>
      <title>俄语入门最常用的1000个音读（带重读音节）</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1229</link>
      <description><![CDATA[А
а 而
а́вгуст 八月
авто́бус 公共汽车
а́дрес 地址
английски 英语 по-англи́йски
апре́ль 四月Б
ба́бушка 祖母，外祖母
бана́на 香蕉
баскетбо́л 篮球（运动）
бассе́йн 游泳 ...]]></description>
      <category>俄语</category>
      <author>龙哥</author>
      <pubDate>Wed, 06 Jan 2016 03:01:25 +0000</pubDate>
    </item>
    <item>
      <title>Windows Server 2008 R2下修改MySQL 5.5数据库目录</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1228</link>
      <description><![CDATA[说明：操作系统：Windows Server 2008 R2MySQL版本：5.5.25aMySQL程序安装目录：D:\\Program Files\\MySQL\\MySQL Server 5.5MySQL数据库默认目录：C:\\ProgramData\\MySQL\\MySQL Server 5.5\\data\\需求：修改MySQL数据库目录为D:\\Program Files\\MySQL\\MySQL Server 5.5\\data ...]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Thu, 24 Dec 2015 05:54:16 +0000</pubDate>
    </item>
    <item>
      <title>永久免费SSL安全证书Letsencrypt安装使用教程</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1227</link>
      <description><![CDATA[一直以来SSL安全证书（简而言之就是支持https://）就是网站特别是商务网站的必备，大家在选购VPS的时候也务必避开那些没有SSL安全证书的商家。LetsEncrypt在出现之初就引起了不少关注，这种宣称永久免费的SSL证书，对于少则2美元/年，多则上百美元的商业产品算是不小的 ...]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Thu, 24 Dec 2015 05:49:53 +0000</pubDate>
    </item>
    <item>
      <title>杰奇使用二级分类</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1226</link>
      <description><![CDATA[]]></description>
      <category>web技术</category>
      <author>龙哥</author>
      <pubDate>Wed, 23 Dec 2015 07:33:36 +0000</pubDate>
    </item>
    <item>
      <title>微软系列MAK激活密钥</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1194</link>
      <description><![CDATA[剩余次数为0的适用于电话激活，有次数显示的才可以直接在线激活。密钥检测工具在此！PS:微软每周会更新一批密钥，本站也会持续更新，请关注！Office ProPlus 2010 MAK   最后检查更新2015-10-04
27Q2D-2669B-PXMGD-KYDJV-2DYQD
28BGJ-TMWDQ-6P8C6-8G773-3MJ3B
2K89D-RTV ...]]></description>
      <category>软件交流</category>
      <author>龙哥</author>
      <pubDate>Wed, 07 Oct 2015 07:48:56 +0000</pubDate>
    </item>
    <item>
      <title>注会老师推荐</title>
      <link>https://bbs.nfer.net/forum.php?mod=viewthread&amp;tid=1176</link>
      <description><![CDATA[]]></description>
      <category>注册会计师</category>
      <author>admin</author>
<enclosure url="https://bbs.nfer.net/data/attachment/forum/201509/22/185644vwiipiiicxswa0s8.png" length="68855" type="image/jpeg" />      <pubDate>Tue, 22 Sep 2015 10:57:38 +0000</pubDate>
    </item>
  </channel>
</rss>