博客主页
文章

Count:

计 60 篇
2
GitHub推送失败解决记录
GitHub推送失败解决记录
分类: 技术
简介:报错部分代码remote: Invalid username or token. Password authentication is not supported for Git operations.解决步骤生成GitHub专用密钥 ssh keygen t ed25519 C "你的GitHub邮箱" f ~/.ssh/id_ed25519_github查看并复制公钥 cat ~/.ssh/id_ed25519_github.pub在GitHub上面保存公钥测试连接 ssh T git@github.com其他错误SSH 服务未启动或端口被屏蔽Connection closed by...port 22解决步骤编辑 ~/.ssh/config 文件(如果没有,可以创建一个) nano ~/.ssh/config添加以下内容 Host github.com HostName ssh.github.com User git Port 443SSH 密钥未正确加载、GitHub 没有正确添加公钥、或者配置不正确等git@ssh.github.com: Permission denied (publickey)解决步骤先使用下面的命令查看 SSH 代理是否已加载你的私钥 ssh add l ssh add ~/.ssh/id_ed25519_github
192
cursor脚本
cursor脚本
分类: 技术
简介:Maccurl fsSL https://raw.githubusercontent.com/yeongpin/cursor free vip/main/scripts/install.sh o install.sh && chmod +x install.sh && ./install.shwindowsirm https://raw.githubusercontent.com/yeongpin/cursor free vip/main/scripts/install.ps1 | iex
185
【命令行】MD转DOCX
【命令行】MD转DOCX
分类: 技术
简介:安装pandoc brew install pandoc转换 pandoc s demo.md o demo.docx
167
【STM32】ST-Link驱动
【STM32】ST-Link驱动
分类: 技术
简介:arm架构 - 隐藏 - Intel架构 - 隐藏 -
295
你连错了投屏
你连错了投屏
分类: 娱乐
简介:代码 <!DOCTYPE html> <html lang="zh CN"> <head> <meta charset="UTF 8"> <meta name="viewport" content="width=device width, initial scale=1.0"> <title>投屏错误</title> <style> body { margin: 0; height: 100vh; display: flex; justify content: center; align items: center; background color: #f5f5f5; font family: "Microsoft YaHei", sans serif; } .error container { text align: center; animation: fadeIn 1s ease in; } .error icon { font size: 80px; color: #ff4d4d; margin bottom: 20px; animation: bounce 2s infinite; } .error message { font size: 24px; color: #333; margin bottom: 15px; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY( 30px); } 60% { transform: translateY( 15px); } } @keyframes fadeIn { from { opacity: 0; transform: translateY( 20px); } to { opacity: 1; transform: translateY(0); } } .retry button { padding: 10px 20px; font size: 16px; background color: #4CAF50; color: white; border: none; border radius: 5px; cursor: pointer; transition: background color 0.3s; } .retry button:hover { background color: #45a049; } </style> </head> <body> <div class="error container"> <div class="error icon">❌</div> <div class="error message">你连错了投屏</div> <button class="retry button" onclick="window.location.reload()">检查Wi Fi</button> </div> </body> </html>
博客主页 数据猫 漫游于星空的数据猫
技术支持 CC 数据猫. 2025
打赏图
打赏博主
欢迎
欢迎
欢迎访问数据猫
搜 索
足 迹
分 类
  • 简文
  • 技术
  • 娱乐