<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>已经是强叔了-_-!</title><link>http://www.jinyq.net/</link><description>想想怎么预防老年痴呆</description><item><title>2025年&amp;quot;睿烯杯&amp;quot;第四届全国校友足球联赛</title><link>http://www.jinyq.net/?id=18</link><description>&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;meta charset=&quot;UTF-8&quot;/&gt;&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;/&gt;&lt;title&gt;2025年&amp;quot;睿烯杯&amp;quot;西工大校友足球联赛战报&lt;/title&gt;&lt;style&gt;* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: &quot;Microsoft YaHei&quot;, Arial, sans-serif;
        }

        body {
            background-color: #f5f7f5;
            color: #333;
            line-height: 1.6;
        }

        /* 顶部横幅 */
        .header-banner {
            background: linear-gradient(135deg, #2d8659 0%, #1a5a37 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header-banner::before {
            content: &quot;&quot;;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 100 100&quot; fill=&quot;rgba(255,255,255,0.05)&quot;&gt;&lt;circle cx=&quot;50&quot; cy=&quot;50&quot; r=&quot;40&quot;/&gt;&lt;/svg&gt;') repeat;
            opacity: 0.3;
        }

        .header-banner h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .header-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .tag {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 10px;
            position: relative;
            z-index: 1;
        }

        /* 容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* 赛事概况 */
        .overview-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }

        .overview-card h2 {
            color: #2d8659;
            margin-bottom: 15px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .overview-card p {
            color: #555;
            font-size: 1rem;
        }

        /* Tab切换 */
        .tab-container {
            margin-bottom: 25px;
        }

        .tab-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .tab-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            background: #e8f0e8;
            color: #2d8659;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tab-btn.active {
            background: #2d8659;
            color: white;
        }

        .tab-btn:hover:not(.active) {
            background: #d8e8d8;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* 比赛卡片网格 */
        .matches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 25px;
        }

        @media (max-width: 768px) {
            .matches-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 比赛卡片 */
        .match-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .match-header {
            background: #f8faf8;
            padding: 20px;
            border-bottom: 1px solid #eee;
        }

        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .team {
            text-align: center;
            flex: 1;
        }

        .team-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #222;
        }

        .match-score {
            font-size: 2rem;
            font-weight: 700;
            color: #2d8659;
            padding: 0 20px;
        }

        .penalty-score {
            font-size: 0.9rem;
            color: #888;
            margin-top: 5px;
        }

        /* 进球事件 */
        .match-events {
            padding: 20px;
        }

        .events-title {
            font-size: 1rem;
            font-weight: 600;
            color: #555;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }

        .event-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            padding-left: 5px;
        }

        .event-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #2d8659;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .event-icon.penalty {
            background: #e6a23c;
        }

        .event-icon.freekick {
            background: #f56c6c;
        }

        .event-icon.worldcup {
            background: #67c23a;
        }

        .event-text {
            flex: 1;
            font-size: 0.95rem;
            color: #444;
        }

        .event-team {
            font-weight: 600;
            color: #2d8659;
        }

        /* 排名区域 */
        .ranking-section {
            margin-top: 40px;
        }

        .ranking-section h2 {
            color: #2d8659;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ranking-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .rank-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .rank-card.champion {
            border: 2px solid #e6a23c;
        }

        .rank-card.champion::before {
            content: &quot;🏆&quot;;
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
        }

        .rank-card.second {
            border: 2px solid #909399;
        }

        .rank-card.second::before {
            content: &quot;🥈&quot;;
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
        }

        .rank-card.third {
            border: 2px solid #c0c4cc;
        }

        .rank-card.third::before {
            content: &quot;🥉&quot;;
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
        }

        .rank-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #555;
        }

        .rank-teams {
            font-size: 1.2rem;
            font-weight: 700;
            color: #222;
        }

        /* 底部总结 */
        .footer-summary {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-top: 30px;
            text-align: center;
            color: #555;
        }&lt;/style&gt;&lt;!-- 顶部横幅 --&gt;&lt;div class=&quot;header-banner&quot;&gt;&lt;h1&gt;2025年&amp;quot;睿烯杯&amp;quot;第四届全国校友足球联赛&lt;/h1&gt;&lt;p&gt;金秋绿茵，以球会友 | 西工大建校87周年校庆特别赛事&lt;/p&gt;&lt;div class=&quot;tag&quot;&gt;2025.10.7 - 2025.10.8&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;container&quot;&gt;&lt;!-- 赛事概况 --&gt;&lt;div class=&quot;overview-card&quot;&gt;&lt;h2&gt;&lt;svg width=&quot;24&quot; height=&quot;24&quot; viewbox=&quot;0 0 24 24&quot; fill=&quot;none&quot; stroke=&quot;#2d8659&quot; stroke-width=&quot;2&quot;&gt;&lt;circle cx=&quot;12&quot; cy=&quot;12&quot; r=&quot;10&quot;&gt;&lt;/circle&gt;&lt;path d=&quot;M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3&quot;&gt;&lt;/path&gt;&lt;line x1=&quot;12&quot; y1=&quot;17&quot; x2=&quot;12.01&quot; y2=&quot;17&quot;&gt;&lt;/line&gt;&lt;/svg&gt;赛事概况&lt;/h2&gt;&lt;p&gt;金秋送爽，丹桂飘香。在国庆中秋双节与母校建校87周年校庆的喜庆氛围中，各地西工大校友球员们以球会友，奋勇拼搏，为观众奉献了一场场精彩绝伦的足球盛宴，充分展现了西工大学子昂扬向上的精神风貌。&lt;/p&gt;&lt;/div&gt;&lt;!-- Tab切换 --&gt;&lt;div class=&quot;tab-container&quot;&gt;&lt;div class=&quot;tab-buttons&quot;&gt;&lt;button class=&quot;tab-btn active&quot; onclick=&quot;switchTab(&amp;#39;day1&amp;#39;)&quot;&gt;10月7日 比赛日&lt;/button&gt;&lt;button class=&quot;tab-btn&quot; onclick=&quot;switchTab(&amp;#39;day2&amp;#39;)&quot;&gt;10月8日 比赛日&lt;/button&gt;&lt;/div&gt;&lt;!-- 10.7 比赛内容 --&gt;&lt;div id=&quot;day1&quot; class=&quot;tab-content active&quot;&gt;&lt;div class=&quot;matches-grid&quot;&gt;&lt;!-- 海南2:1成都 --&gt;&lt;div class=&quot;match-card&quot;&gt;&lt;div class=&quot;match-header&quot;&gt;&lt;div class=&quot;match-teams&quot;&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;海南&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-score&quot;&gt;2:1&lt;/div&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;成都&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-events&quot;&gt;&lt;div class=&quot;events-title&quot;&gt;进球事件&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon penalty&quot;&gt;点&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;海南&lt;/span&gt; 倪敏化造点，高荣隆主罚命中，打破僵局&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;海南&lt;/span&gt; 马浩然分球，王昕航直塞，倪敏化突施冷箭扩大比分&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;成都&lt;/span&gt; 秦治平传中，杜轶临空垫射扳回一球&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 山东3:1上海 --&gt;&lt;div class=&quot;match-card&quot;&gt;&lt;div class=&quot;match-header&quot;&gt;&lt;div class=&quot;match-teams&quot;&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;山东&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-score&quot;&gt;3:1&lt;/div&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;上海&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-events&quot;&gt;&lt;div class=&quot;events-title&quot;&gt;进球事件&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;上海&lt;/span&gt; 屠超宇左路一条龙突破，开场3分钟首开纪录&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon worldcup&quot;&gt;波&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;山东&lt;/span&gt; 国宏锴超远距离世界波破门，扳平比分&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;山东&lt;/span&gt; 姜岩接直塞单刀挑射，反超比分&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon freekick&quot;&gt;任&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;山东&lt;/span&gt; 王巍显超远距离任意球破门，锁定胜局&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 西安青年1:1(3:1)北京 --&gt;&lt;div class=&quot;match-card&quot;&gt;&lt;div class=&quot;match-header&quot;&gt;&lt;div class=&quot;match-teams&quot;&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;西安青年&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-score&quot;&gt;1:1&lt;/div&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;北京&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;penalty-score&quot;&gt;点球大战 西安青年 3:1 北京&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-events&quot;&gt;&lt;div class=&quot;events-title&quot;&gt;进球事件&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;西安青年&lt;/span&gt; 苏原抢断门将解围失误，推射空门首开纪录&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;北京&lt;/span&gt; 王洋洋手术刀直塞，顾睿冷静捅射扳平&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon penalty&quot;&gt;神&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;西安青年&lt;/span&gt; 门将兰石连续扑出3粒点球，点球大战封神&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 西安老将0:4深圳 --&gt;&lt;div class=&quot;match-card&quot;&gt;&lt;div class=&quot;match-header&quot;&gt;&lt;div class=&quot;match-teams&quot;&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;西安老将&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-score&quot;&gt;0:4&lt;/div&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;深圳&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-events&quot;&gt;&lt;div class=&quot;events-title&quot;&gt;进球事件&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;深圳&lt;/span&gt; 亚克甫江斜传，王敏后点插上破门&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;深圳&lt;/span&gt; 左边路传中，刘德柱破门扩大比分&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;深圳&lt;/span&gt; 王敏角球，门将脱手，球过线进球有效&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;深圳&lt;/span&gt; 杨坤接抢断直塞，推射死角再进一球&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 10.8 比赛内容 --&gt;&lt;div id=&quot;day2&quot; class=&quot;tab-content&quot;&gt;&lt;div class=&quot;matches-grid&quot;&gt;&lt;!-- 海南1:1(5:4)北京 --&gt;&lt;div class=&quot;match-card&quot;&gt;&lt;div class=&quot;match-header&quot;&gt;&lt;div class=&quot;match-teams&quot;&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;海南&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-score&quot;&gt;1:1&lt;/div&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;北京&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;penalty-score&quot;&gt;点球大战 海南 5:4 北京&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-events&quot;&gt;&lt;div class=&quot;events-title&quot;&gt;进球事件&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;北京&lt;/span&gt; 彭景禁区贴地斩，客串门将判断失误，北京领先&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;海南&lt;/span&gt; 马浩然撞墙配合，王欣航横突推射远角扳平&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon penalty&quot;&gt;点&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;点球大战五轮决胜，北京罚失最后一球，海南险胜&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 西安老将1:2上海 --&gt;&lt;div class=&quot;match-card&quot;&gt;&lt;div class=&quot;match-header&quot;&gt;&lt;div class=&quot;match-teams&quot;&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;西安老将&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-score&quot;&gt;1:2&lt;/div&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;上海&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-events&quot;&gt;&lt;div class=&quot;events-title&quot;&gt;进球事件&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon freekick&quot;&gt;任&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;西安老将&lt;/span&gt; 姜四虎任意球，耿明涛头球摆渡首开纪录&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;上海&lt;/span&gt; 杭宇奇挑传，孙志强单刀挑射扳平比分&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;上海&lt;/span&gt; 郁宏伟晃过门将推射空门，逆转比分&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 西安青年2:1成都 --&gt;&lt;div class=&quot;match-card&quot;&gt;&lt;div class=&quot;match-header&quot;&gt;&lt;div class=&quot;match-teams&quot;&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;西安青年&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-score&quot;&gt;2:1&lt;/div&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;成都&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-events&quot;&gt;&lt;div class=&quot;events-title&quot;&gt;进球事件&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;西安青年&lt;/span&gt; 苏原前场抢断，人球分过后与门将对脚，球弹入网&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;成都&lt;/span&gt; 曹阳扣球过人，冷静推射扳平比分&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon freekick&quot;&gt;任&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;西安青年&lt;/span&gt; 冯杰任意球破门，反超比分&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 山东1:0深圳 --&gt;&lt;div class=&quot;match-card&quot;&gt;&lt;div class=&quot;match-header&quot;&gt;&lt;div class=&quot;match-teams&quot;&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;山东&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-score&quot;&gt;1:0&lt;/div&gt;&lt;div class=&quot;team&quot;&gt;&lt;div class=&quot;team-name&quot;&gt;深圳&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;match-events&quot;&gt;&lt;div class=&quot;events-title&quot;&gt;进球事件&lt;/div&gt;&lt;div class=&quot;event-item&quot;&gt;&lt;div class=&quot;event-icon&quot;&gt;⚽&lt;/div&gt;&lt;div class=&quot;event-text&quot;&gt;&lt;span class=&quot;event-team&quot;&gt;山东&lt;/span&gt; 王巍显长传，阿不来孜后脚跟磕传，国宏锴头球绝杀&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 最终排名 --&gt;&lt;div class=&quot;ranking-section&quot;&gt;&lt;h2&gt;&lt;svg width=&quot;24&quot; height=&quot;24&quot; viewbox=&quot;0 0 24 24&quot; fill=&quot;none&quot; stroke=&quot;#2d8659&quot; stroke-width=&quot;2&quot;&gt;&lt;line x1=&quot;12&quot; y1=&quot;1&quot; x2=&quot;12&quot; y2=&quot;23&quot;&gt;&lt;/line&gt;&lt;path d=&quot;M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6&quot;&gt;&lt;/path&gt;&lt;/svg&gt;最终排名&lt;/h2&gt;&lt;div class=&quot;ranking-grid&quot;&gt;&lt;div class=&quot;rank-card champion&quot;&gt;&lt;div class=&quot;rank-title&quot;&gt;组冠军&lt;/div&gt;&lt;div class=&quot;rank-teams&quot;&gt;西安青年、山东&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;rank-card second&quot;&gt;&lt;div class=&quot;rank-title&quot;&gt;组亚军&lt;/div&gt;&lt;div class=&quot;rank-teams&quot;&gt;成都、深圳&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;rank-card third&quot;&gt;&lt;div class=&quot;rank-title&quot;&gt;组季军&lt;/div&gt;&lt;div class=&quot;rank-teams&quot;&gt;海南、上海&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;rank-card&quot;&gt;&lt;div class=&quot;rank-title&quot;&gt;优胜奖&lt;/div&gt;&lt;div class=&quot;rank-teams&quot;&gt;北京、西安老将&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 底部总结 --&gt;&lt;div class=&quot;footer-summary&quot;&gt;&lt;p&gt;本届联赛不仅是一场足球竞技的盛会，更是各地西工大校友联络感情、凝聚力量的平台。各支队伍为荣誉而战，更多精彩对决值得期待！&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;script&gt;// Tab切换功能
        function switchTab(tabId) {
            // 切换按钮状态
            document.querySelectorAll('.tab-btn').forEach(btn =&gt; {
                btn.classList.remove('active');
            });
            document.querySelector(`.tab-btn[onclick=&quot;switchTab('${tabId}')&quot;]`).classList.add('active');

            // 切换内容状态
            document.querySelectorAll('.tab-content').forEach(content =&gt; {
                content.classList.remove('active');
            });
            document.getElementById(tabId).classList.add('active');
        }&lt;/script&gt;&lt;!--!doctype--&gt;</description><pubDate>Wed, 01 Apr 2026 20:15:24 +0800</pubDate></item><item><title>艾跃进教授（艾公）核心思想与经典言论</title><link>http://www.jinyq.net/?id=16</link><description>&lt;meta charset=&quot;UTF-8&quot;/&gt;&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;/&gt;&lt;title&gt;艾跃进教授（艾公）核心思想与经典言论 | 瞻仰学习&lt;/title&gt;&lt;style&gt;* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: &quot;Microsoft YaHei&quot;, &quot;SimHei&quot;, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding: 20px;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #d62828;
        }
        h1 {
            color: #d62828;
            font-size: 28px;
            margin-bottom: 10px;
        }
        h2 {
            color: #003049;
            font-size: 22px;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: &quot;&quot;;
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 20px;
            background: #d62828;
            border-radius: 3px;
        }
        h3 {
            color: #003049;
            font-size: 18px;
            margin: 20px 0 10px;
        }
        .identity {
            text-align: center;
            margin: 20px 0;
            font-size: 16px;
            color: #555;
        }
        .identity span {
            display: inline-block;
            margin: 0 10px;
            padding: 5px 10px;
            background: #f8f8f8;
            border-radius: 5px;
        }
        .famous-quotes {
            background: #fef2f2;
            padding: 20px;
            border-radius: 8px;
            margin: 15px 0;
        }
        .famous-quotes li {
            margin: 10px 0;
            padding-left: 10px;
            list-style: none;
            position: relative;
        }
        .famous-quotes li::before {
            content: &quot;✦&quot;;
            color: #d62828;
            position: absolute;
            left: -15px;
        }
        .core-ideas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 15px 0;
        }
        .core-ideas .card {
            background: #eae2b7;
            padding: 15px;
            border-radius: 8px;
        }
        .core-ideas .card h4 {
            color: #003049;
            margin-bottom: 8px;
            font-size: 16px;
        }
        .speech-topics li {
            margin: 8px 0;
            list-style: decimal;
            margin-left: 20px;
        }
        .memorial {
            background: #f1faee;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            border-left: 4px solid #06d6a0;
        }
        /* Quote 样式 */
        blockquote {
            border-left: 4px solid #d62828;
            padding: 15px 20px;
            margin: 20px 0;
            background: #f8f8f8;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #222;
        }
        .quote-source {
            text-align: right;
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }
        footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: #777;
            font-size: 14px;
        }&lt;/style&gt;&lt;div class=&quot;container&quot;&gt;&lt;header&gt;&lt;h1&gt;艾跃进教授（艾公）核心思想与经典言论&lt;/h1&gt;&lt;p&gt;瞻仰学习 · 铭记传承&lt;/p&gt;&lt;/header&gt;&lt;section&gt;&lt;h2&gt;一、艾公核心身份&lt;/h2&gt;&lt;div class=&quot;identity&quot;&gt;南开大学马克思主义学院教授 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;南开大学军事学科创始人 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;知名爱国主义演讲家 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1958.06 - 2016.04.21&lt;/div&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;二、经典名言（流传最广）&lt;/h2&gt;&lt;div class=&quot;famous-quotes&quot;&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;尊严只在剑锋之上，真理只在大炮射程之内。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;领土问题没有谈判，只有战争。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;能战方能止战，敢战方能言和。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;落后就要挨打，软弱就要受欺。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;军人的价值，不在于战争来临时多么勇敢，而在于让敌人不敢发动战争。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;国与国之间，实力就是真理，拳头就是硬道理。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;我们不惹事，但我们绝不怕事。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;一个没有精神力量的民族，难以自立自强。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;爱国，是人世间最深层、最持久的情感。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;为天地立心，为生民立命，为往圣继绝学，为万世开太平。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;三、经典演讲片段&lt;/h2&gt;&lt;blockquote&gt;我经常说，在国际交往中，实力永远是维护正义的基础，国防才是外交真正的后盾。尊严只在剑锋之上，真理只在大炮射程之内。&lt;div class=&quot;quote-source&quot;&gt;—— 艾跃进《军事思想与国家安全》主题演讲&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote&gt;我们青年人，要做有骨气的中国人，要做有血性的中国人。我们不惹事，但我们绝不怕事。国家的未来，民族的希望，就在我们青年人身上。&lt;div class=&quot;quote-source&quot;&gt;—— 艾跃进《青年的责任与担当》主题演讲&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote&gt;毛泽东思想是什么？是我们中华民族的精神脊梁，是我们战胜一切敌人的法宝。忘记历史就意味着背叛，我们要永远铭记毛主席的教导。&lt;div class=&quot;quote-source&quot;&gt;—— 艾跃进《毛泽东思想的当代价值》主题演讲&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote&gt;领土问题，没有谈判，只有战争。为什么？因为领土是我们的祖宗留给我们的，我们没有权利去谈判，我们只有责任去守护。&lt;div class=&quot;quote-source&quot;&gt;—— 艾跃进《尊严与大国博弈》主题演讲&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote&gt;一个人，要有骨气；一个民族，要有气节。我们中国人，从来就不缺骨气，从来就不缺气节。我们要挺直腰杆，做堂堂正正的中国人。&lt;div class=&quot;quote-source&quot;&gt;—— 艾跃进《爱国主义与民族精神》主题演讲&lt;/div&gt;&lt;/blockquote&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;四、核心思想与立场&lt;/h2&gt;&lt;div class=&quot;core-ideas&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;强烈爱国主义&lt;/h4&gt;&lt;p&gt;把国家主权、民族尊严放在第一位。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;强军思想&lt;/h4&gt;&lt;p&gt;强调国防、军队、硬实力的重要性，反对软弱绥靖。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;红色信仰&lt;/h4&gt;&lt;p&gt;坚定信仰马克思主义、毛泽东思想，推崇革命精神。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;民族气节&lt;/h4&gt;&lt;p&gt;提倡骨气、正气、家国情怀，反对崇洋媚外。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;青年责任&lt;/h4&gt;&lt;p&gt;鼓励年轻人有担当、有血性、有理想。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;五、经典演讲主题&lt;/h2&gt;&lt;ul class=&quot;speech-topics list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;《中华复兴与大国崛起》&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;《军事思想与国家安全》&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;《青年的责任与担当》&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;《毛泽东思想的当代价值》&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;《尊严与大国博弈》&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;六、为何怀念艾公&lt;/h2&gt;&lt;div class=&quot;memorial&quot;&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;说话直白、敢讲、不绕弯，直击问题本质；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;充满血性、骨气、正气，彰显民族气节；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;立场坚定，始终维护国家与民族核心利益；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;语言极具感染力，唤醒国人的家国情怀；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;精神永存，成为一代人的红色信仰符号。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/section&gt;&lt;footer&gt;&lt;p&gt;谨以此页，缅怀艾跃进教授 · 2026&lt;/p&gt;&lt;/footer&gt;&lt;/div&gt;&lt;!--!doctype--&gt;</description><pubDate>Mon, 02 Mar 2026 04:26:15 +0800</pubDate></item><item><title>船舶行业的基础应用</title><link>http://www.jinyq.net/?id=15</link><description>&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;meta charset=&quot;UTF-8&quot;/&gt;&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;/&gt;&lt;title&gt;船舶行业变频器应用场景分析&lt;/title&gt;&lt;script src=&quot;https://cdn.tailwindcss.com&quot;&gt;&lt;/script&gt;&lt;script src=&quot;https://cdn.jsdelivr.net/npm/chart.js&quot;&gt;&lt;/script&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css&quot;/&gt;&lt;style&gt;
		body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #FFFFFF;
        }
        .card {
            background-color: white;
            border: 1px solid #E5E7EB;
            border-radius: 1.25rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            overflow: hidden;
            position: relative;
        }
        .highlight-gradient-blue { background: linear-gradient(135deg, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.05)); }
        .highlight-gradient-teal { background: linear-gradient(135deg, rgba(20, 184, 166, 0), rgba(20, 184, 166, 0.05)); }
        .highlight-gradient-purple { background: linear-gradient(135deg, rgba(168, 85, 247, 0), rgba(168, 85, 247, 0.05)); }
        .highlight-gradient-orange { background: linear-gradient(135deg, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0.05)); }
        .highlight-gradient-red { background: linear-gradient(135deg, rgba(239, 68, 68, 0), rgba(239, 68, 68, 0.05)); }
        .highlight-gradient-indigo { background: linear-gradient(135deg, rgba(99, 102, 241, 0), rgba(99, 102, 241, 0.05)); }
        .highlight-gradient-green { background: linear-gradient(135deg, rgba(34, 197, 94, 0), rgba(34, 197, 94, 0.05)); }
        .highlight-gradient-pink { background: linear-gradient(135deg, rgba(236, 72, 153, 0), rgba(236, 72, 153, 0.05)); }&lt;/style&gt;&lt;div class=&quot;max-w-7xl mx-auto p-4 md:p-8&quot;&gt;&lt;div class=&quot;grid grid-cols-1 md:grid-cols-4 gap-4 md:gap-6&quot;&gt;&lt;!-- 标题卡片 --&gt;&lt;div class=&quot;card md:col-span-4 p-8 flex flex-col justify-center items-center text-center relative&quot;&gt;&lt;div class=&quot;absolute top-0 left-0 w-full h-full highlight-gradient-blue&quot;&gt;&lt;/div&gt;&lt;div class=&quot;relative w-full&quot;&gt;&lt;div class=&quot;text-3xl md:text-5xl font-bold text-gray-800 mb-2&quot;&gt;船舶行业变频器应用场景分析&lt;/div&gt;&lt;div class=&quot;text-lg md:text-xl text-gray-500&quot;&gt;Application Scenarios of Frequency Converters in Marine Industry&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 主推进系统 --&gt;&lt;div class=&quot;card md:col-span-2 p-6 flex flex-col relative&quot;&gt;&lt;div class=&quot;absolute top-0 left-0 w-full h-full highlight-gradient-blue&quot;&gt;&lt;/div&gt;&lt;div class=&quot;relative flex-grow&quot;&gt;&lt;div class=&quot;flex items-center mb-4&quot;&gt;&lt;em class=&quot;fas fa-ship text-2xl text-blue-500 mr-3&quot;&gt;&lt;/em&gt;&lt;div class=&quot;text-2xl font-bold text-gray-800&quot;&gt;主推进系统&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;text-gray-600 mb-4&quot;&gt;船舶动力核心，分为纯电力、混合动力和传统机械推进三大类。&lt;/div&gt;&lt;div class=&quot;space-y-2 text-sm text-gray-600&quot;&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-bolt text-blue-400 mr-2&quot;&gt;&lt;/em&gt;纯电力推进：精确控制速度与转矩&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-gas-pump text-blue-400 mr-2&quot;&gt;&lt;/em&gt;混合动力推进：结合燃料发电与电池储能&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-cogs text-blue-400 mr-2&quot;&gt;&lt;/em&gt;传统机械推进：轴带发电系统应用&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;mt-4 p-3 bg-blue-50 rounded-lg&quot;&gt;&lt;div class=&quot;text-xs text-blue-600 font-medium&quot;&gt;功率范围&lt;/div&gt;&lt;div class=&quot;text-2xl font-bold text-blue-800&quot;&gt;0.5 - 80 MW&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 泵类设备 --&gt;&lt;div class=&quot;card md:col-span-2 p-6 flex flex-col relative&quot;&gt;&lt;div class=&quot;absolute top-0 left-0 w-full h-full highlight-gradient-teal&quot;&gt;&lt;/div&gt;&lt;div class=&quot;relative flex-grow&quot;&gt;&lt;div class=&quot;flex items-center mb-4&quot;&gt;&lt;em class=&quot;fas fa-faucet text-2xl text-teal-500 mr-3&quot;&gt;&lt;/em&gt;&lt;div class=&quot;text-2xl font-bold text-gray-800&quot;&gt;泵类设备&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;text-gray-600 mb-4&quot;&gt;应用最广泛领域，包括压载泵、冷却泵、消防泵等关键设备。&lt;/div&gt;&lt;div class=&quot;space-y-2 text-sm text-gray-600&quot;&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-water text-teal-400 mr-2&quot;&gt;&lt;/em&gt;压载泵：调节船舶吃水深度&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-thermometer-half text-teal-400 mr-2&quot;&gt;&lt;/em&gt;冷却泵：维持设备工作温度&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-fire-extinguisher text-teal-400 mr-2&quot;&gt;&lt;/em&gt;消防泵：保障船舶消防安全&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;mt-4 p-3 bg-teal-50 rounded-lg&quot;&gt;&lt;div class=&quot;text-xs text-teal-600 font-medium&quot;&gt;节能效果&lt;/div&gt;&lt;div class=&quot;text-2xl font-bold text-teal-800&quot;&gt;30% - 50%&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 风机系统 --&gt;&lt;div class=&quot;card md:col-span-2 p-6 flex flex-col relative&quot;&gt;&lt;div class=&quot;absolute top-0 left-0 w-full h-full highlight-gradient-purple&quot;&gt;&lt;/div&gt;&lt;div class=&quot;relative flex-grow&quot;&gt;&lt;div class=&quot;flex items-center mb-4&quot;&gt;&lt;em class=&quot;fas fa-wind text-2xl text-purple-500 mr-3&quot;&gt;&lt;/em&gt;&lt;div class=&quot;text-2xl font-bold text-gray-800&quot;&gt;风机系统&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;text-gray-600 mb-4&quot;&gt;控制空气质量与温度，包括货舱通风、HVAC系统等。&lt;/div&gt;&lt;div class=&quot;space-y-2 text-sm text-gray-600&quot;&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-cube text-purple-400 mr-2&quot;&gt;&lt;/em&gt;货舱风机：保障货物运输安全&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-home text-purple-400 mr-2&quot;&gt;&lt;/em&gt;HVAC系统：维持居住环境舒适&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-industry text-purple-400 mr-2&quot;&gt;&lt;/em&gt;机舱通风：设备散热与空气流通&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;mt-4 p-3 bg-purple-50 rounded-lg&quot;&gt;&lt;div class=&quot;text-xs text-purple-600 font-medium&quot;&gt;节能效果&lt;/div&gt;&lt;div class=&quot;text-2xl font-bold text-purple-800&quot;&gt;25% - 40%&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 甲板机械 --&gt;&lt;div class=&quot;card md:col-span-2 p-6 flex flex-col relative&quot;&gt;&lt;div class=&quot;absolute top-0 left-0 w-full h-full highlight-gradient-orange&quot;&gt;&lt;/div&gt;&lt;div class=&quot;relative flex-grow&quot;&gt;&lt;div class=&quot;flex items-center mb-4&quot;&gt;&lt;em class=&quot;fas fa-crane text-2xl text-orange-500 mr-3&quot;&gt;&lt;/em&gt;&lt;div class=&quot;text-2xl font-bold text-gray-800&quot;&gt;甲板机械&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;text-gray-600 mb-4&quot;&gt;负责装卸作业与系泊操作，从液压驱动向电动变频驱动转变。&lt;/div&gt;&lt;div class=&quot;space-y-2 text-sm text-gray-600&quot;&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-anchor text-orange-400 mr-2&quot;&gt;&lt;/em&gt;锚机与绞缆机：系泊与定位&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-elevator text-orange-400 mr-2&quot;&gt;&lt;/em&gt;起货机与起重机：货物装卸&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-stairs text-orange-400 mr-2&quot;&gt;&lt;/em&gt;舷梯升降机：人员上下船&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;mt-4 p-3 bg-orange-50 rounded-lg&quot;&gt;&lt;div class=&quot;text-xs text-orange-600 font-medium&quot;&gt;控制精度&lt;/div&gt;&lt;div class=&quot;text-2xl font-bold text-orange-800&quot;&gt;±0.1%&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 制冷系统 --&gt;&lt;div class=&quot;card md:col-span-2 p-6 flex flex-col relative&quot;&gt;&lt;div class=&quot;absolute top-0 left-0 w-full h-full highlight-gradient-blue&quot;&gt;&lt;/div&gt;&lt;div class=&quot;relative flex-grow&quot;&gt;&lt;div class=&quot;flex items-center mb-4&quot;&gt;&lt;em class=&quot;fas fa-snowflake text-2xl text-blue-500 mr-3&quot;&gt;&lt;/em&gt;&lt;div class=&quot;text-2xl font-bold text-gray-800&quot;&gt;制冷系统&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;text-gray-600 mb-4&quot;&gt;确保易腐货物与船员生活质量，包括制冷压缩机与冷藏集装箱。&lt;/div&gt;&lt;div class=&quot;space-y-2 text-sm text-gray-600&quot;&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-temperature-low text-blue-400 mr-2&quot;&gt;&lt;/em&gt;制冷压缩机：精确控制制冷量&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-boxes text-blue-400 mr-2&quot;&gt;&lt;/em&gt;冷藏集装箱：独立温度控制&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-snowman text-blue-400 mr-2&quot;&gt;&lt;/em&gt;空调系统：环境温度调节&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;mt-4 p-3 bg-blue-50 rounded-lg&quot;&gt;&lt;div class=&quot;text-xs text-blue-600 font-medium&quot;&gt;节能效果&lt;/div&gt;&lt;div class=&quot;text-2xl font-bold text-blue-800&quot;&gt;15% - 30%&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- 船舶电站 --&gt;&lt;div class=&quot;card md:col-span-2 p-6 flex flex-col relative&quot;&gt;&lt;div class=&quot;absolute top-0 left-0 w-full h-full highlight-gradient-teal&quot;&gt;&lt;/div&gt;&lt;div class=&quot;relative flex-grow&quot;&gt;&lt;div class=&quot;flex items-center mb-4&quot;&gt;&lt;em class=&quot;fas fa-bolt text-2xl text-teal-500 mr-3&quot;&gt;&lt;/em&gt;&lt;div class=&quot;text-2xl font-bold text-gray-800&quot;&gt;船舶电站&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;text-gray-600 mb-4&quot;&gt;电力供应核心，应用于轴带发电机、岸电和储能系统。&lt;/div&gt;&lt;div class=&quot;space-y-2 text-sm text-gray-600&quot;&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-plug-circle-bolt text-teal-400 mr-2&quot;&gt;&lt;/em&gt;轴带发电机：主机富裕功率发电&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-charging-station text-teal-400 mr-2&quot;&gt;&lt;/em&gt;岸电系统：港口零排放供电&lt;/div&gt;&lt;div class=&quot;flex items-center&quot;&gt;&lt;em class=&quot;fas fa-battery-full text-teal-400 mr-2&quot;&gt;&lt;/em&gt;储能系统：双向能量转换&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;mt-4 p-3 bg-teal-50 rounded-lg&quot;&gt;&lt;div class=&quot;text-xs text-teal-600 font-medium&quot;&gt;系统效率&lt;/div&gt;&lt;div class=&quot;text-2xl font-bold text-teal-800&quot;&gt;≥ 97%&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;script&gt;// 各类船型应用分布图表
    const shipTypeCtx = document.getElementById('shipTypeChart').getContext('2d');
    const shipTypeChart = new Chart(shipTypeCtx, {
        type: 'bar',
        data: {
            labels: ['集装箱船', '散货船', '油轮', 'LNG船', '邮轮', '军用舰艇', '特种船舶', '游艇'],
            datasets: [
                {
                    label: '主推进系统',
                    data: [85, 45, 60, 90, 100, 75, 65, 30],
                    backgroundColor: 'rgba(59, 130, 246, 0.7)',
                    borderColor: 'rgba(59, 130, 246, 1)',
                    borderWidth: 1
                },
                {
                    label: '泵类设备',
                    data: [95, 90, 85, 90, 95, 80, 85, 70],
                    backgroundColor: 'rgba(20, 184, 166, 0.7)',
                    borderColor: 'rgba(20, 184, 166, 1)',
                    borderWidth: 1
                },
                {
                    label: '风机系统',
                    data: [90, 75, 80, 85, 100, 85, 80, 75],
                    backgroundColor: 'rgba(168, 85, 247, 0.7)',
                    borderColor: 'rgba(168, 85, 247, 1)',
                    borderWidth: 1
                },
                {
                    label: '甲板机械',
                    data: [80, 70, 60, 70, 90, 85, 90, 60],
                    backgroundColor: 'rgba(249, 115, 22, 0.7)',
                    borderColor: 'rgba(249, 115, 22, 1)',
                    borderWidth: 1
                }
            ]
        },
        options: {
            maintainAspectRatio: false,
            scales: {
                y: {
                    beginAtZero: true,
                    max: 100,
                    title: {
                        display: true,
                        text: '应用普及率 (%)'
                    }
                }
            },
            plugins: {
                title: {
                    display: true,
                    text: '变频器在各类船型中的应用普及率 (%)'
                },
                legend: {
                    position: 'bottom'
                }
            }
        }
    });

    // 节能效果对比图表
    const energySavingCtx = document.getElementById('energySavingChart').getContext('2d');
    const energySavingChart = new Chart(energySavingCtx, {
        type: 'radar',
        data: {
            labels: ['主推进系统', '泵类设备', '风机系统', '甲板机械', '制冷系统', '船舶电站'],
            datasets: [
                {
                    label: '变频控制节能率 (%)',
                    data: [35, 40, 30, 35, 25, 30],
                    backgroundColor: 'rgba(34, 197, 94, 0.2)',
                    borderColor: 'rgba(34, 197, 94, 1)',
                    pointBackgroundColor: 'rgba(34, 197, 94, 1)',
                    pointBorderColor: '#fff',
                    pointHoverBackgroundColor: '#fff',
                    pointHoverBorderColor: 'rgba(34, 197, 94, 1)'
                }
            ]
        },
        options: {
            maintainAspectRatio: false,
            scales: {
                r: {
                    angleLines: {
                        display: true
                    },
                    suggestedMin: 0,
                    suggestedMax: 50
                }
            },
            plugins: {
                legend: {
                    display: false
                }
            }
        }
    });&lt;/script&gt;&lt;!--!doctype--&gt;</description><pubDate>Tue, 10 Feb 2026 15:07:52 +0800</pubDate></item><item><title>工作太忙（其实是自己太懒），一直没有更新过</title><link>http://www.jinyq.net/?id=14</link><description>&lt;p&gt;距离上一次发布一些东西，已经3年了，我遇到了事业（其实就是打工）和生活（其实就是家庭琐事）的牵绊，接下来在不泄密（其实是不想说）的前提下，保证每周更新点东西吧，作为我老了以后的念想，毕竟这个网站花了钱的&lt;/p&gt;</description><pubDate>Thu, 01 May 2025 16:13:03 +0800</pubDate></item><item><title>find( )和find_all( )到底有区别在哪里</title><link>http://www.jinyq.net/?id=13</link><description>&lt;div style=&quot;color: rgb(212, 212, 212);  background-color: rgb(30, 30, 30);font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; line-height: 22px; white-space: pre;&quot;&gt;&lt;div&gt;&lt;span style=&quot;color: #DB7093;&quot;&gt;from&lt;/span&gt; &lt;span style=&quot;color: #00FFFF;&quot;&gt;bs4&lt;/span&gt; &lt;span style=&quot;color: #DB7093;&quot;&gt;import&lt;/span&gt; &lt;span style=&quot;color: #F7CEBE;&quot;&gt;BeautifulSoup&lt;/span&gt;&lt;br/&gt;&lt;/div&gt;&lt;br/&gt;&lt;div&gt;&lt;span style=&quot;color: #70DBDB;&quot;&gt;html&lt;/span&gt;=&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;#39;&amp;#39;&amp;#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;lt;ul&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;1&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;2&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;3&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;4&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;lt;ul&amp;gt;&lt;/span&gt;&lt;div style=&quot;color: rgb(212, 212, 212); font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; white-space: pre;&quot;&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;5&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;color: rgb(212, 212, 212); font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; white-space: pre;&quot;&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;6&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;color: rgb(212, 212, 212); font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; white-space: pre;&quot;&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;7&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;color: rgb(212, 212, 212); font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; white-space: pre;&quot;&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;8&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;color: rgb(212, 212, 212); font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; white-space: pre;&quot;&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;color: rgb(212, 212, 212); font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; white-space: pre;&quot;&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;lt;ul&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;color: rgb(212, 212, 212); font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; white-space: pre;&quot;&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;a&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;color: rgb(212, 212, 212); font-family: &amp;quot;YaHei Consolas Hybrid&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 16px; white-space: pre;&quot;&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;b&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;color: #F08D49;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;c&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;d&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;&amp;#39;&amp;#39;&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;&lt;p&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;n&lt;/span&gt; = &lt;span style=&quot;color: #e5ff00;&quot;&gt;30&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; 设置-----的长度值, 没意义就是为了清晰一点&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;res&lt;/span&gt; = &lt;span style=&quot;color: #f7cebe;&quot;&gt;BeautifulSoup&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;html&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;html.parser&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;ul_1_li&lt;/span&gt; = &lt;span style=&quot;color: #70dbdb;&quot;&gt;res&lt;/span&gt;.&lt;span style=&quot;color: #ffffff;&quot;&gt;find&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;ul&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;.&lt;span style=&quot;color: #ffffff;&quot;&gt;find_all&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;li&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; 找到第一个ul标签下的所有li标签&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;--&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;*&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;n&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;打印第一个UL标签下的LI内容&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;span style=&quot;color: #ff6ec7;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #70dbdb;&quot;&gt;i&lt;/span&gt; &lt;span style=&quot;color: #ff6ec7;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #70dbdb;&quot;&gt;ul_1_li&lt;/span&gt;:&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; 遍历这个ulli, 把内容提取出来&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #ff0000;&quot;&gt;text&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;--&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;*&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;n&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;&lt;p&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;ul_all&lt;/span&gt; = &lt;span style=&quot;color: #70dbdb;&quot;&gt;res&lt;/span&gt;.&lt;span style=&quot;color: #ffffff;&quot;&gt;find_all&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;ul&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; 找到所有的ul标签, 形成一个列表&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;--&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;*&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;n&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;打印UL下的原样文本, 相当于UL标签以及下级对应的HTML源码&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;span style=&quot;color: #ff6ec7;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #70dbdb;&quot;&gt;i&lt;/span&gt; &lt;span style=&quot;color: #ff6ec7;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #70dbdb;&quot;&gt;ul_all&lt;/span&gt;:&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; ul_all形成一个TAG的列表, 遍历列表, 打印列表内字符串&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; 这样可以打印出所有ul标签下的文本, 相当于对应的html源码&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;--&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;*&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;n&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;--&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;*&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;n&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;打印所有UL标签下的所有LI内容&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;span style=&quot;color: #ff6ec7;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #70dbdb;&quot;&gt;i&lt;/span&gt; &lt;span style=&quot;color: #ff6ec7;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #70dbdb;&quot;&gt;ul_all&lt;/span&gt;:&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; ul_all形成一个TAG的列表, 遍历列表, 相当于3个ul标签包含的内容&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: #70dbdb;&quot;&gt;li_all&lt;/span&gt; = &lt;span style=&quot;color: #70dbdb;&quot;&gt;i&lt;/span&gt;.&lt;span style=&quot;color: #f7cebe;&quot;&gt;find_all&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;li&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt; &lt;br/&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; 遍历这个列表以后, 相当于每个ul下的所有li再形成一个包括li的TAG的列表&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: #ff6ec7;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #70dbdb;&quot;&gt;j&lt;/span&gt; &lt;span style=&quot;color: #ff6ec7;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #70dbdb;&quot;&gt;li_all&lt;/span&gt;:&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00ff7f;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;span style=&quot;color: #575757;&quot;&gt; 遍历li的TAG的列表, 把内容提取出来&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;j&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #ff0000;&quot;&gt;text&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #32cd32;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #f08d49;&quot;&gt;&amp;#39;--&amp;#39;&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;*&lt;span style=&quot;color: #ffffff;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: #70dbdb;&quot;&gt;n&lt;/span&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;)&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 03 Jan 2023 16:04:08 +0800</pubDate></item><item><title>程序猿能看得懂的冷笑话</title><link>http://www.jinyq.net/?id=12</link><description>&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454; visibility: visible;&quot;&gt;假设你是个妹子，你有一位男朋友，于此同时你和另外一位男生暧昧不清，比朋友好，又不是恋人。你随时可以甩了现任男友，另外一位马上就能补上。这是&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; letter-spacing: 0.5px; font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; color: rgb(84, 84, 84); font-size: 14px; visibility: visible;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 16px; color: #000000; visibility: visible;&quot;&gt;冷备份&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454; visibility: visible;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;p&gt;&lt;/p&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible;&quot;&gt;假设你是个妹子，同时和两位男性在交往，两位都是&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible;&quot;&gt;你男朋友。并且他们还互不干涉，独立运行。这就是&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000; visibility: visible;&quot;&gt;双机热备份&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible;&quot;&gt;假设你是个妹子，不安于男朋友给你的安全感。在遥远的男友未知的地方，和一位男生保持着联系，你告诉他你没有男朋友，你现在处于纠结期，一旦你和你男朋友分开了，你马上可以把自己感情转移到异地男人那里去。这是&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000; visibility: visible;&quot;&gt;异地容灾备份&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，有一位男朋友，你又付了钱给一家婚姻介绍所，让他帮你留意好的资源，一旦你和你这位男朋友分开，婚姻介绍所马上给你安排资源，你感情不间断运行，这是&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000; visibility: visible;&quot;&gt;云备份&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。。。。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你怀疑男朋友对你的忠诚，在某宝购买了一个测试忠诚度的服务。这是&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000; visibility: visible;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; visibility: visible;&quot;&gt;灾难演练&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。友情提醒，在没有备份的情况下，切忌进行灾难演练，说不好会让你数据血本无归。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454; visibility: visible;&quot;&gt;假设你是个妹子，你和男友异地恋，你每天晚上都打电话查岗，问他还爱不爱你了，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible;&quot;&gt;ping&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454; visibility: visible;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你的男友经常玩失踪，所以你希望时刻掌握他的行踪，你先打电话给他的好基友A，A说好基友B知道，B说好基友C知道，C说好基友D知道，D说你男朋友正在网吧打游戏，你终于知道了男友在哪儿，这叫&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000; visibility: visible;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; visibility: visible;&quot;&gt;TraceRoute&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你的男友沉迷游戏经常不接电话无故宕机，所以当你们约好下午逛街以后你要时不时的打个电话询问，看看他是不是还能正常提供服务，这叫&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000; visibility: visible;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; visibility: visible;&quot;&gt;心跳监测&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454; visibility: visible;&quot;&gt;假设你是个妹子，你想去逛街而你的男友A在打游戏不接电话，于是乎你把逛街的请求发给了替补男友B，从而保障服务不间断运行，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; letter-spacing: 0.5px; color: rgb(84, 84, 84); font-size: 14px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 16px; visibility: visible; color: #000000;&quot;&gt;故障切换&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; visibility: visible; color: #545454;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454;&quot;&gt;假设你是个妹子，你有很多需要男朋友完成的事情，于是乎你跟A逛街旅游吃饭不可描述，而B只能陪你逛街，不能拥有全部男朋友的权利，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; letter-spacing: 0.5px; color: rgb(84, 84, 84); font-size: 14px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 16px; color: #000000;&quot;&gt;主从配置 master-slave&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454;&quot;&gt;假设你是个妹子，你败家太厉害，以至于你的男友根本吃不消，于是呼你找了两个男朋友，一三五单号，二四六双号限行，从而减少一个男朋友所面临的压力，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; letter-spacing: 0.5px; color: rgb(84, 84, 84); font-size: 14px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 16px; color: #000000;&quot;&gt;负载均衡&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; letter-spacing: 0.5px; color: rgb(84, 84, 84); font-size: 14px;&quot;&gt;&lt;/strong&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; letter-spacing: 0.5px; color: rgb(84, 84, 84); font-size: 14px;&quot;&gt;&lt;/strong&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; letter-spacing: 0.5px; color: rgb(84, 84, 84); font-size: 14px;&quot;&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454;&quot;&gt;假设你是个妹子并且有多个男朋友，配合心跳检测与故障切换和负载均衡将会达到极致的体验，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; letter-spacing: 0.5px; color: rgb(84, 84, 84); font-size: 14px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 16px; color: #000000;&quot;&gt;集群LVS&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454;&quot;&gt;，注意，当需求单机可以处理的情况下不建议启用集群，会造成大量资源闲置，提高维护成本。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你的需求越来越高导致一个男朋友集群已经处理不了了，于是乎你又新增了另外几个，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;多集群横向扩容&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;，简称&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;multi-cluster grid&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你的男朋友身体瘦弱从而无法满足需求，于是乎你买了很多大补产品帮你男朋友升级，从而提高单机容量，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;纵向扩容，Scale up&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。切记，纵向扩容的成本会越来越高而效果越来越不明显。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;br style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你跟男友经常出去游玩，情到深处想做点什么的时候却苦于没有tt，要去超市购买，于是乎你在你们经常去的地方都放置了tt，从而大幅度降低等待时间，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;CDN&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子,你的男朋友英俊潇洒风流倜傥财大气粗对你唯一,于是乎你遭到了女性B的敌视，B会以朋友名义在周末请求你男朋友修电脑,修冰箱,占用男朋友大量时间,造成男朋友无法为你服务,这叫&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;拒绝服务攻击,简称DOS&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子,你因男朋友被一位女性敌视,但是你男朋友的处理能力十分强大,处理速度已经高于她的请求速度,于是她雇佣了一票女性来轮流麻烦你的男朋友,这叫&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;分布式拒绝服务攻击&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;,简称&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;DDOS&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你发现男朋友总是在处理一些无关紧要的其它请求，于是乎你给男朋友了一个白名单,要求他只处理白名单内的请求，而拒绝其它身份不明的人的要求,这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;访问控制&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你男朋友风流倜傥，你总担心他出轨，于是你在他身上安装了一个窃听器，里面内置了一些可疑女生勾搭行为的特征库，只要出现疑似被勾搭的情况，就会立刻向你报警，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;入侵检测系统（IDS）&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你改良了上面的窃听器，当可疑女性对你男朋友做出勾搭行为的时候，立刻释放1万伏电压，把可疑人击昏，终止这次勾搭。这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;入侵防御系统（IPS）&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，虽然你装了各种窃听器、报警器，可是你蓝朋友处处留情，报警器响个不停，让你应接不暇，疲于奔命，于是你搞了个装置集中收集这些出轨告警，进行综合分析，生成你男朋友的出轨报告。这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;SIEM&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;或者&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;SOC&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你把男朋友的出轨报告提交给他父母，得到了他们的大力支持，男友父母开始对他严加管教、限期整改，为你们的爱情保驾护航，做到合情合理、合法合规，这叫&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;等级保护&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你离男朋友家有点远，你开车去，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;自建专线&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;，你打车过去，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;租用专线&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;，你骑摩拜单车过去，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;SDWAN&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你和男朋友的恋爱遭到了双方家长的反对，不准双方往来，你们偷偷挖了一条隧道，便于进行幽会，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; letter-spacing: 0.5px; font-size: 14px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 16px; color: #000000;&quot;&gt;VPN&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你的男朋友太优秀而造人窥视，于是乎它们研究了一下你的男朋友，稍微修改了一点点生产出一个男朋友B，与你的男朋友百分制99相似，&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;不叫剽窃，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;逆向工程&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;,比如男朋友外挂。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你要求你的男朋友坚持十分钟，然后十五分钟继而二十分钟，以测试你男朋友的极限在哪里，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;压力测试&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，为了保证你男朋友的正常运行，于是乎你每天查看他的微信微博等社交资料来寻找可能产生问题的线索，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;数据分析&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你的男朋友属于社交活跃选手，每天的微博知乎微信生产了大量信息，你发现自己的分析速度远远低于他生的速度，于是乎你找来你的闺蜜一起分析，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;并行计算&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你的男朋友太能折腾处处留情产生了天量的待处理信息，你和你的闺蜜们已经累趴也没赶上他创造的速度，于是你付费在知乎上找了20个小伙伴帮你一起分析，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;云计算&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，你在得到男朋友经常出没的地点后，根据酒店，敏感时间段等信息确定男朋友因该是出轨了，这叫&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;数据挖掘&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假设你是个妹子，在分析男友的数据后，得知他下午又要出去开房，于是乎你在他准备出门前给他发了个短信，问他有没有带tt，没有的话可以在我这里买，这叫&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #000000;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;精准推送&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;，需要配合数据挖掘。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;假如你是个妹子，你的男朋友总该出去浪而各种出问题，于是乎你租了间屋子并准备好了所有需要的东西并告诉他，以后不用找酒店了，直接来我这屋子吧，什么都准备好了，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: rgb(84, 84, 84); font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;容器&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #545454; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;margin: 0px 0px 16px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-size: 17px; letter-spacing: 0.544px; white-space: normal; font-family: system-ui, -apple-system, system-ui, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; background-color: rgb(255, 255, 255); visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454;&quot;&gt;假如你是个妹子，你每天都要和男朋友打通一次接口，&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;采集数据&lt;/span&gt;&lt;/strong&gt;。你一天24小时不停地采，这叫&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;实时数据采集&lt;/span&gt;&lt;/strong&gt;。你决定开发新的接口来和男朋友交流，这叫&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;虚拟化&lt;/span&gt;&lt;/strong&gt;。你决定从不同的男友身上采集数据，你就是&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;大数据中心&lt;/span&gt;&lt;/strong&gt;。有一天你决定生一个宝宝，这叫&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;大数据应用&lt;/span&gt;&lt;/strong&gt;。宝宝生下来不知道是谁的，这叫&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;大数据脱敏&lt;/span&gt;&lt;/strong&gt;。但是从宝宝外观来看，黑色皮肤金色头发，这叫&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #000000;&quot;&gt;数据融合跨域建模&lt;/span&gt;&lt;/strong&gt;。你决定把这个宝宝拿来展览收点门票，这叫&lt;/span&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px;&quot;&gt;大数据变现&lt;/strong&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-family: Optima-Regular, PingFangTC-light; font-size: 16px; letter-spacing: 0.5px; color: #545454;&quot;&gt;。&lt;/span&gt;&lt;/section&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 05 Dec 2022 14:35:50 +0800</pubDate></item><item><title>听说现在流行测试MBTI？</title><link>http://www.jinyq.net/?id=11</link><description>&lt;p&gt;
    &lt;iframe noresize=&quot;noresize&quot; src=&quot;http://www.jinyq.net/zb_users/upload/Myreport.Html&quot; width=&quot;100%&quot; height=&quot;12500&quot; frameborder=&quot;0&quot; name=&quot;MyReport&quot;&gt;
 	&lt;/iframe&gt;
&lt;/p&gt;</description><pubDate>Sun, 17 Apr 2022 02:36:48 +0800</pubDate></item><item><title>SymPy符号数学Python库</title><link>http://www.jinyq.net/?id=10</link><description>&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;SymPy&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #0070C0;font-size: 14px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;是符号数学的&lt;/span&gt;Python库。它的目标是成为一个全功能的计算机代数系统，同时保持代码简洁、易于理解和扩展。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;&quot;&gt;符号表示&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;from sympy import *&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;x = Symbol(&amp;#39;x&amp;#39;)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;y = Symbol(&amp;#39;y&amp;#39;)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;&quot;&gt;展开与折叠&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;expand( )展开方程&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;((x+y)**2).expand()&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;x**2 + 2*x*y + y**2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;factor( )折叠方程&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;factor(x**2 + 2*x*y + y**2)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;(x + y)**2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;&quot;&gt;分离与合并&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;apart( )分离整式&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;together(1 + 2/(x - 1))&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;(x + 1)/(x - 1)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;together( )合并整式&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;together(1/x+1/y+1/z)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;(x*y + x*z + y*z)/(x*y*z)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;&quot;&gt;简化表达式&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;simplify( )普通的化简&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;simplify((x**3 + x**2 - x - 1)/(x**2 + 2*x + 1))&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;x - 1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;trigsimp( )三角化简&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;trigsimp(sin(x)/cos(x))&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;tan(x)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;powsimp( )指数化简&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;powsimp(x**a*x**b)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;x**(a + b)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;solve( )解方程&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;第一个参数为要解的方程，要求右端等于&lt;/span&gt;0，第二个参数为要解的未知数&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;&quot;&gt;一元一次方程&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;solve(x * 3 - 6, x)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;&quot;&gt;二元一次方程&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;solve([2 * x - y - 3, 3 * x + y - 7],[x, y])&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;{x: 2, y: 1}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #FF0000;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑; font-size: 14px;&quot;&gt;limit( )求极限&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;dir=’+’表示求解右极限，dir=’-‘表示求解左极限&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;limit(1/x,x,oo,dir=&amp;#39;+&amp;#39;)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;0&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;limit(1/x,x,oo,dir=&amp;#39;-&amp;#39;)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;0&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;integrate( )求积分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00B050;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑; font-size: 14px;&quot;&gt;不定积分&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;integrate(sin(x),x)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;-cos(x)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #00B050;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑; font-size: 14px;&quot;&gt;定积分&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;integrate(sin(x),(x,0,pi/2))&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;diff( )求导&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;diff(x**3,x)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;3*x**2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;diff(x**3,x,2)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;6*x&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;color: #FF0000;font-size: 14px&quot;&gt;dsolve( )解微分方程&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;以&lt;/span&gt; y′=2xyy′=2xy 为例&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;f =Function(&amp;#39;f&amp;#39;)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;dsolve(diff(f(x),x) - 2*f(x)*x,f(x))&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;Eq(f(x), C1*exp(x**2))&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;&quot;&gt;矩阵化简&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;x1,x2,x3 = symbols(&amp;#39;x1 x2 x3&amp;#39;)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;a11,a12,a13,a22,a23,a33 = symbols(&amp;#39;a11 a12 a13 a22 a23 a33&amp;#39;)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;m = Matrix([[x1, x2, x3]])&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;n = Matrix([[a11, a12, a13], [a12, a22, a23], [a13, a23, a33]])&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;v = Matrix([[x1], [x2], [x3]])&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;f = m * n * v&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;f[0].subs({x1:1, x2:1, x3:1})&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;Matrix([[x1*(a11*x1 + a12*x2 + a13*x3) + x2*(a12*x1 + a22*x2 + a23*x3) + x3*(a13*x1 + a23*x2 + a33*x3)]])&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;a11 + 2*a12 + 2*a13 + a22 + 2*a23 + a33&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;;font-family:微软雅黑;font-size:14px&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 06 Apr 2022 15:49:53 +0800</pubDate></item><item><title>突然想起一个斗地主的段子，希望不会被和谐</title><link>http://www.jinyq.net/?id=9</link><description>&lt;p&gt;俄罗斯：叫地主&lt;/p&gt;&lt;p&gt;美国：抢地主&lt;/p&gt;&lt;p&gt;中国：不抢&lt;/p&gt;&lt;p&gt;俄罗斯：我抢&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;开始出牌&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;俄罗斯：34567&lt;/p&gt;&lt;p&gt;美国：45678&lt;/p&gt;&lt;p&gt;中国：过……&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;俄罗斯：6789J&lt;/p&gt;&lt;p&gt;美国：你他妈这能连么&lt;/p&gt;&lt;p&gt;俄罗斯：我他妈想怎么打就怎么打&lt;/p&gt;&lt;p&gt;美国：四个10炸弹&lt;/p&gt;&lt;p&gt;俄罗斯：四个J炸弹&lt;/p&gt;&lt;p&gt;中国：要不起……&lt;/p&gt;&lt;p&gt;美国：NMB你刚才不出了一张J了，你他妈偷牌啊&lt;/p&gt;&lt;p&gt;俄罗斯：尼玛隔壁你打不打，不打算了&lt;/p&gt;&lt;p&gt;美国：中国你倒是说句话啊&lt;/p&gt;&lt;p&gt;中国：过……&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;俄哥出牌&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;俄罗斯：三个QQQ带6，报牌三张&lt;/p&gt;&lt;p&gt;美国：不要&lt;/p&gt;&lt;p&gt;中国：过…………&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;俄哥出牌&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;俄罗斯：对2……报牌剩一张&lt;/p&gt;&lt;p&gt;美国：压不住……中国有炸，炸他！&lt;/p&gt;&lt;p&gt;中国：没炸，不炸。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;俄哥出牌&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;俄罗斯：3！我赢了！&lt;/p&gt;&lt;p&gt;美国气得大怒：“我操！中国你有双王不炸死它。”&lt;/p&gt;&lt;p&gt;中国：我跟俄罗斯是兄弟，和你跟英国一样，我不会炸！&lt;/p&gt;&lt;p&gt;俄罗斯：我打不过你，和中国合伙，弄死你&lt;/p&gt;&lt;p&gt;美国：算恁厉害，不给你们玩了。我去伊拉克、叙利亚、中东玩去。&lt;/p&gt;&lt;p&gt;中国：那你走吧&lt;/p&gt;&lt;p&gt;俄罗斯：赶紧滚远远，再给俺俩打，合伙打死你龟孙，滚！&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 01 Mar 2022 22:32:43 +0800</pubDate></item><item><title>2022年襄阳少儿春晚七天乐片段</title><link>http://www.jinyq.net/?id=8</link><description>&lt;p&gt;
    &lt;strong&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;2022年少儿春晚七天乐片段，有没有熟悉的面孔呢？&lt;/span&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;video src=&quot;http://www.jinyq.net/zb_users/upload/2022/02/202202181645122044661132.mp4&quot; controls=&quot;controls&quot; width=&quot;420&quot; height=&quot;280&quot; webkit-playsinline=&quot;true&quot; playsinline=&quot;true&quot;&gt;
        &amp;nbsp;	
    &lt;/video&gt;
&lt;/p&gt;</description><pubDate>Fri, 18 Feb 2022 02:14:17 +0800</pubDate></item></channel></rss>