会员
周边
新闻
博问
闪存
众包
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
clark1990
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
17
下一页
2025年10月21日
英语的基本句型
摘要: ✅ 很多人学英语最容易**“记不住”的原因是——学得太零碎。 其实你只要把英语的句型结构(主干)和句子成分(修饰)分开记,就会一目了然、终生不忘**。我给你整理了一个最全但超级清晰的总结👇: 🧱 一、英语只有 5 种基本句型(主干结构) 这是所有句子的“骨架”,记住这 5 种,其他都是扩展: 编
阅读全文
posted @ 2025-10-21 11:42 Python喵
阅读(118)
评论(0)
推荐(0)
2025年10月14日
IELTS
摘要: Introducing dung beetles into a pasture is a simple process: approximately 1,500 beetles are released, a handful at a time, into fresh cow pats2 in th
阅读全文
posted @ 2025-10-14 16:34 Python喵
阅读(30)
评论(0)
推荐(0)
2025年10月9日
Vue的nextTick函数作用
摘要: 在 Vue 中,nextTick 是一个非常重要的异步工具函数,用于在 DOM 更新完成后执行回调逻辑。它常用于你想在 Vue 更新数据后立即操作最新的 DOM 元素时。 ✅ 简单定义 js复制代码Vue.nextTick(callback) 或在 Vue 3 中(使用 Composition AP
阅读全文
posted @ 2025-10-09 16:56 Python喵
阅读(37)
评论(0)
推荐(0)
2025年9月5日
GIT本地分支落后于远程分支
摘要: 方案 A|合并(merge,最稳妥) 如果有未提交改动,先保存 git stash -u # 可选 git pull --no-rebase origin main # 或 master 解决冲突 -> 编辑冲突文件 git add . git commit # 完成合并提交 git push or
阅读全文
posted @ 2025-09-05 10:36 Python喵
阅读(30)
评论(0)
推荐(0)
2025年6月11日
git 备忘
摘要: 安装git sudo apt update sudo apt install git git config --global user.name "x" git config --global user.email "x@qq.com" 替换你的邮箱账号 ssh-keygen -t rsa -b 4
阅读全文
posted @ 2025-06-11 10:10 Python喵
阅读(7)
评论(0)
推荐(0)
2025年6月5日
rabbitMQ subscriber
摘要: # subscriber.py import pika import json def start_subscriber(): connection = pika.BlockingConnection( pika.ConnectionParameters("host", 5672, "/", pik
阅读全文
posted @ 2025-06-05 16:51 Python喵
阅读(17)
评论(0)
推荐(0)
2025年6月4日
rabbitMQ demo
摘要: worker.py ` import pika import time import json import signal import sys def callback(ch, method, properties, body): data = json.loads(body) print(f"R
阅读全文
posted @ 2025-06-04 09:54 Python喵
阅读(22)
评论(0)
推荐(0)
2025年3月14日
inux apt-get update提醒由于没有公钥 无法验证以下签名
摘要: 方法 1:手动添加丢失的 GPG 公钥 1️⃣ 找出缺少的公钥 你会在错误消息中看到类似: bash 复制 编辑 NO_PUBKEY 3FA7E0328081BFF6 其中 3FA7E0328081BFF6 就是 缺失的 GPG 公钥 ID。 2️⃣ 添加 GPG 公钥 运行以下命令: bash 复
阅读全文
posted @ 2025-03-14 17:15 Python喵
阅读(541)
评论(0)
推荐(0)
2025年2月8日
虚拟机常用配置
摘要: 1.apt-get install open-vm-tools open-vm-tools-desktop 在虚拟机中挂载共享文件夹 在 Linux 虚拟机中 启动虚拟机: 启动你配置好的虚拟机。 安装 VMware Tools(如果尚未安装): 虚拟机运行后,在菜单中选择 “VM” -> “Ins
阅读全文
posted @ 2025-02-08 19:50 Python喵
阅读(52)
评论(0)
推荐(0)
2024年10月31日
weui
摘要: 2. 执行 npm init 创建package.json (不想一个一个配置也可以执行npm init -y) 3. npm安装WeUi,执行cnpm install --save weui-miniprogram 4. 然后点击工具选择构建npm 5. 然后会提示完成构建,目录会多了一个文件夹,
阅读全文
posted @ 2024-10-31 23:21 Python喵
阅读(62)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
17
下一页
公告