生活记录
未读“我爸得了MVP”是近期在互联网上非常火爆的一个梗,起源于一位名为“小明剑魔”的《英雄联盟》(LOL)主播的直播间。这个梗的核心内容是通过一种幽默的方式,讽刺了游戏中评分系统的不合理性,同时也引发了大家对现实生活中“贡献与评价”的思考。
梗的来源
直播间事件:在一次直播中,主播“小明剑魔”因为排位连败心态崩溃,被弹幕调侃他的剑魔评分不如对手的奎桑提。主播随即开启“吐槽模式”,用家庭成员的比喻来讽刺评分系统的不合理。他说道:“你爸每天出门赚钱,月底结算得了MVP;你妈每天在家洗衣做饭,却被评分为躺赢狗。”这段对话因其幽默和讽刺意味迅速走红。
梗的传播:这段直播切片在B站获得了超过100万的播放量,并被网友广泛改编和二次创作,形成了“xx得了MVP,oo就是躺赢狗”的固定句式,成为了一种新的“联盟圣经”。
MVP的含义:MVP原本是“Most Valuable Player”(最有价值球员)的缩写,常用于体育赛事中表彰表现最出色的球员。但在这一梗中,MVP被赋予了新的含义,用来调侃那些在评分系统中“被高估”的角色或行为。
文化意义
讽刺评分系统:通过家庭成员的比喻,主播揭示了评分 ...
常规优化url优化
固定链接
简化链接,减少网站层级
安装插件
1npm install hexo-abbrlink --save
配置_config.yml
12345#permalink: :year/:month/:day/:title/permalink: article/:abbrlink.htmlabbrlink: alg: crc32 # 算法:crc16(default) and crc32 rep: hex # 进制:dec(default) and hex
启用https看你网站部署在什么平台,如果自建的服务器,那就自己配置了,我这里直接托管cloudflare,自动转https
sitemap
安装插件
1npm install hexo-generator-sitemap --save
后续hexo g会自动生成sitemap文件
robots.txt细节优化后续补充
Missing alt text原主题top_img代码:
12345678910111213141516171819202122232425262728293031 ...
Vim is a highly efficient and customizable text editor, but its steep learning curve can be intimidating for beginners. This guide provides a complete list of essential Vim commands, from basic navigation to advanced editing, to help you master Vim quickly.
Getting Started with VimOpening and Closing Files
Open a File: 1vim filename
Save and Quit:
:w: Save changes
:q: Quit (if no changes)
:wq: Save and quit
:q!: Quit without saving
Basic NavigationCursor Movement
Arrow Keys: U ...
BugHunter
未读How to Undo git reset: A Quick GuideAccidentally running git reset can be stressful, especially if you lose important changes. Fortunately, Git provides ways to recover from this. This guide explains how to undo git reset and restore your work.
Understanding git resetgit reset moves the HEAD pointer to a specific commit, affecting the working directory, staging area, and commit history depending on the mode used:
--soft: Only moves HEAD, leaving the staging area and working directory uncha ...
The “umount target is busy” error is a common issue in Linux when attempting to unmount a filesystem that is still in use. This guide provides quick and effective solutions to resolve the error, ensuring smooth system operations.
Why Does the Error Occur?The error occurs because the target filesystem or directory is actively being used by a process, preventing it from being unmounted. This is a safety mechanism to avoid data loss or corruption.
How to Fix the “Umount Target is Busy” Error1 ...
Managing users in MySQL is crucial for database security and organization. While MySQL doesn’t have a SHOW USERS command, you can use SQL queries to list and manage users effectively. This guide provides step-by-step instructions and essential commands for user management in MySQL.
Why Create Users in MySQL?The default root user has full access to the MySQL server, posing significant security risks. Creating individual users with specific permissions minimizes vulnerabilities and ensures cont ...
Nano is a lightweight and user-friendly text editor for Linux and Unix-based systems. Whether you’re editing configuration files or writing scripts, knowing how to save and exit Nano efficiently is essential. This guide covers the steps and shortcuts you need to master Nano.
How to Save and Exit Nano1. Save Changes and Exit
Press Ctrl + O to save the file.
Press Enter to confirm the filename.
Press Ctrl + X to exit Nano.
Note: If the file is new, you’ll be prompted to enter a filename be ...
How to Update Kali Linux: A Quick GuideKeeping your Kali Linux system updated is essential for security, performance, and access to the latest tools. This guide provides step-by-step instructions to update Kali Linux efficiently.
Why Update Kali Linux?
Security Patches: Fix vulnerabilities and protect your system.
New Features: Access the latest tools and improvements.
Bug Fixes: Resolve known issues for smoother performance.
Steps to Update Kali Linux1. Update Package ListRefresh the l ...
This guide provides a step-by-step process to install Zlib from source code on Ubuntu Linux. Follow the commands and their expected outputs for a successful installation.
1. Install Build DependenciesInstall the necessary tools for compiling Zlib:
12sudo apt updatesudo apt install build-essential checkinstall
Expected Output:The system updates the package list and installs build-essential (GCC, make, etc.) and checkinstall.
2. Download Zlib Source CodeDownload the latest Zlib source code:
1wg ...