<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>飞雪团队 - 计算机基础知识</title>
    <link>http://www.feixueteam.net/forum-85-1.html</link>
    <description>Latest 20 threads of 计算机基础知识</description>
    <copyright>Copyright(C) 飞雪团队</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Thu, 16 Apr 2026 13:43:41 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.feixueteam.net/static/image/common/logo_88_31.gif</url>
      <title>飞雪团队</title>
      <link>http://www.feixueteam.net/</link>
    </image>
    <item>
      <title>一文搞懂Zookeeper原理</title>
      <link>http://www.feixueteam.net/thread-5521-1-1.html</link>
      <description><![CDATA[一.概述
&amp;nbsp;ZooKeeper 是什么？

是一个开源的分布式协调服务。使用分布式系统就无法避免对节点管理的问题(需要实时感知节点的状态、对节点进行统一管理等等)，而由于这些问题处理起来可能相对麻烦和提高了系统的复杂性，ZooKeeper作为一个能够通用解决这些问题的中 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 06:43:37 +0000</pubDate>
    </item>
    <item>
      <title>Page Lifecycle API 教程</title>
      <link>http://www.feixueteam.net/thread-5496-1-1.html</link>
      <description><![CDATA[两周前，我介绍了 Page Visibility API。有了它，就可以监听各种情况的网页卸载。
                                                                                                                但是，它没有解决一个问题。Android、iOS 和最新的 Windows 系统 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:46 +0000</pubDate>
    </item>
    <item>
      <title>Page Visibility API 教程</title>
      <link>http://www.feixueteam.net/thread-5497-1-1.html</link>
      <description><![CDATA[一、简介

有时候，开发者需要知道，用户正在离开页面。常用的方法是监听下面三个事件。
                                                                                                                  

[*]pagehide
[*]beforeunload
[*]unload
但是，这些事 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:46 +0000</pubDate>
    </item>
    <item>
      <title>Flexbox 布局的最简单表单</title>
      <link>http://www.feixueteam.net/thread-5498-1-1.html</link>
      <description><![CDATA[弹性布局（Flexbox）逐渐流行，越来越多人使用，因为它写 CSS 布局真是太方便了。
                                                                                                                三年前，我写过 Flexbox 的介绍（上，下），但是有些地方写得不清 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:46 +0000</pubDate>
    </item>
    <item>
      <title>Git 原理入门</title>
      <link>http://www.feixueteam.net/thread-5499-1-1.html</link>
      <description><![CDATA[Git 是最流行的版本管理工具，也是程序员的必备技能之一。
                                                                                                                即使天天使用它，很多人也未必了解它的原理。Git 为什么可以管理版本？git add、git comm ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:46 +0000</pubDate>
    </item>
    <item>
      <title>RESTful API 最佳实践</title>
      <link>http://www.feixueteam.net/thread-5500-1-1.html</link>
      <description><![CDATA[RESTful 是目前最流行的 API 设计规范，用于 Web 数据接口的设计。
                                                                                                                它的大原则容易把握，但是细节不容易做对。本文总结 RESTful 的设计细节，介绍如 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:46 +0000</pubDate>
    </item>
    <item>
      <title>ORM 实例教程</title>
      <link>http://www.feixueteam.net/thread-5490-1-1.html</link>
      <description><![CDATA[一、概述

面向对象编程和关系型数据库，都是目前最流行的技术，但是它们的模型是不一样的。
                                                                                                                面向对象编程把所有实体看成对象（object），关系型数 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:45 +0000</pubDate>
    </item>
    <item>
      <title>找回密码的功能设计</title>
      <link>http://www.feixueteam.net/thread-5491-1-1.html</link>
      <description><![CDATA[所有需要登录的网站，都会提供\&quot;找回密码\&quot;的功能，防止用户忘记密码。
                                                                                                                
正确设计这个功能，保证安全可靠，并不简单。下面就是安全专家 Troy Hunt 给 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:45 +0000</pubDate>
    </item>
    <item>
      <title>数据库表连接的简单解释</title>
      <link>http://www.feixueteam.net/thread-5492-1-1.html</link>
      <description><![CDATA[关系型数据库最难的地方，就是建模（model）。
                                                                                                                错综复杂的数据，需要建立模型，才能储存在数据库。所谓\&quot;模型\&quot;就是两样东西：实体（entity）+ 关系（ ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:45 +0000</pubDate>
    </item>
    <item>
      <title>git bisect 命令教程</title>
      <link>http://www.feixueteam.net/thread-5493-1-1.html</link>
      <description><![CDATA[git bisect是一个很有用的命令，用来查找哪一次代码提交引入了错误。
                                                                                                                
它的原理很简单，就是将代码提交的历史，按照两分法不断缩小定位。所谓\&quot;两分 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:45 +0000</pubDate>
    </item>
    <item>
      <title>异步 API 的设计</title>
      <link>http://www.feixueteam.net/thread-5494-1-1.html</link>
      <description><![CDATA[网站的前后端通信，往往会有异步请求，这时应该怎么设计 API？
                                                                                                                我最近读到一篇文章，作者介绍了他的做法，设计得很精细，我觉得值得借鉴，可以当作 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:45 +0000</pubDate>
    </item>
    <item>
      <title>awk 入门教程</title>
      <link>http://www.feixueteam.net/thread-5495-1-1.html</link>
      <description><![CDATA[awk是处理文本文件的一个应用程序，几乎所有 Linux 系统都自带这个程序。
                                                                                                                它依次处理文件的每一行，并读取里面的每一个字段。对于日志、CSV 那样的 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:45 +0000</pubDate>
    </item>
    <item>
      <title>OAuth 2.0 的四种方式</title>
      <link>http://www.feixueteam.net/thread-5485-1-1.html</link>
      <description><![CDATA[上一篇文章介绍了 OAuth 2.0 是一种授权机制，主要用来颁发令牌（token）。本文接着介绍颁发令牌的实务操作。
                                                                                                                
下面我假定，你已经理解了 OAuth 2.0 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:44 +0000</pubDate>
    </item>
    <item>
      <title>OAuth 2.0 的一个简单解释</title>
      <link>http://www.feixueteam.net/thread-5486-1-1.html</link>
      <description><![CDATA[OAuth 2.0 是目前最流行的授权机制，用来授权第三方应用，获取用户数据。
                                                                                                                这个标准比较抽象，使用了很多术语，初学者不容易理解。其实说起来并不复 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:44 +0000</pubDate>
    </item>
    <item>
      <title>普通人的网页配色方案</title>
      <link>http://www.feixueteam.net/thread-5487-1-1.html</link>
      <description><![CDATA[网页需要配色。一种好看、易用、符合心意的配色，是很不容易的，尤其在没有设计师时。
                                                                                                                一、Flat UI 色表

最简单的方法是，从一个给定的色表选择颜 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:44 +0000</pubDate>
    </item>
    <item>
      <title>CSS Grid 网格布局教程</title>
      <link>http://www.feixueteam.net/thread-5488-1-1.html</link>
      <description><![CDATA[一、概述

网格布局（Grid）是最强大的 CSS 布局方案。
                                                                                                                它将网页划分成一个个网格，可以任意组合不同的网格，做出各种各样的布局。以前，只能通过复 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:44 +0000</pubDate>
    </item>
    <item>
      <title>敏捷开发入门教程</title>
      <link>http://www.feixueteam.net/thread-5489-1-1.html</link>
      <description><![CDATA[敏捷开发（agile development）是非常流行的软件开发方法。据统计，2018年90%的软件开发采用敏捷开发。
                                                                                                                但是，到底什么是敏捷开发，能说清的人却不 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:44 +0000</pubDate>
    </item>
    <item>
      <title>响应式图像教程</title>
      <link>http://www.feixueteam.net/thread-5482-1-1.html</link>
      <description><![CDATA[网页在不同尺寸的设备上，都有良好的显示效果，叫做\&quot;响应式设计\&quot;（responsive web design）。
                                                                                                                响应式设计的网页图像，就是\&quot;响应式图像\&quot;（responsive ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:43 +0000</pubDate>
    </item>
    <item>
      <title>HTTP Referer 教程</title>
      <link>http://www.feixueteam.net/thread-5483-1-1.html</link>
      <description><![CDATA[HTTP 请求的头信息里面，Referer 是一个常见字段，提供访问来源的信息。
                                                                                                                很多开发者知道这个字段，但是说不清它的具体细节。本文详细介绍该字段。
 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:43 +0000</pubDate>
    </item>
    <item>
      <title>GitHub OAuth 第三方登录示例教程</title>
      <link>http://www.feixueteam.net/thread-5484-1-1.html</link>
      <description><![CDATA[这组 OAuth 系列教程，第一篇介绍了基本概念，第二篇介绍了获取令牌的四种方式，今天演示一个实例，如何通过 OAuth 获取 API 数据。
                                                                                                                很多网站登录时 ...]]></description>
      <category>计算机基础知识</category>
      <author>admin</author>
      <pubDate>Sat, 12 Feb 2022 02:44:43 +0000</pubDate>
    </item>
  </channel>
</rss>