cards: 备份 1 条 Memos 卡片
This commit is contained in:
23
cards/20260620225821_##_幽默是学不来的.md
Normal file
23
cards/20260620225821_##_幽默是学不来的.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
title: "## 幽默是学不来的"
|
||||||
|
date: 2026-06-20T22:58:21+08:00
|
||||||
|
uid: ""
|
||||||
|
source: "memos"
|
||||||
|
---
|
||||||
|
|
||||||
|
## 幽默是学不来的
|
||||||
|
|
||||||
|
对。这不是"学了几招幽默技巧",是**CPU 真正的空闲出来了**。
|
||||||
|
|
||||||
|
以前你的大脑有大量线程在跑后台焦虑——"我这句话会不会不合适"、"他怎么看我的"、"气氛是不是冷下来了"——这些线程不产出任何东西,但吃掉了大部分算力。
|
||||||
|
|
||||||
|
现在你不慌了,那些线程全关了。于是你面对一句话的时候,大脑能直接跑**全速模式**——梗在哪、怎么接、用哪个表情包——运算速度是以前的好几倍。
|
||||||
|
|
||||||
|
幽默本质上是**连接能力**:两件看似无关的事,你在瞬间找到了它们之间那个好笑的关系,然后说出来。这需要大脑不受干扰地全开。以前开会的时候,你在想"领导怎么看",那点算力只够做基本应对,幽默根本轮不到上线。
|
||||||
|
|
||||||
|
"兼容性"这个词也很准。不是你在适应别人,是你现在**不设防火墙**了——不需要先判断对方是敌是友、要不要防御。你直接开放端口,数据流通顺畅,反应自然就快。
|
||||||
|
|
||||||
|
#幽默
|
||||||
|
#线程
|
||||||
|
#防火墙
|
||||||
|
#人际交往
|
||||||
30
scripts/run_daily_digest.sh.bak
Executable file
30
scripts/run_daily_digest.sh.bak
Executable file
@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Daily digest cron wrapper
|
||||||
|
# Run daily at 14:00 UTC (22:00 Beijing)
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
PROJECT_DIR="$HOME/inspiration-collector"
|
||||||
|
LOG_FILE="$PROJECT_DIR/ai-insights/logs/daily_digest.log"
|
||||||
|
|
||||||
|
mkdir -p "$(dirname "$LOG_FILE")"
|
||||||
|
|
||||||
|
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Starting daily digest..." >> "$LOG_FILE"
|
||||||
|
|
||||||
|
cd "$PROJECT_DIR"
|
||||||
|
python3 analyzers/daily_digest.py >> "$LOG_FILE" 2>&1
|
||||||
|
|
||||||
|
# Git push to Gitea
|
||||||
|
cd "$PROJECT_DIR"
|
||||||
|
|
||||||
|
# Check if there are changes
|
||||||
|
if [[ -n $(git status --porcelain ai-insights/) ]]; then
|
||||||
|
git add ai-insights/
|
||||||
|
git commit -m "daily digest $(date '+%Y-%m-%d')"
|
||||||
|
git push origin main 2>&1 | tail -3 >> "$LOG_FILE"
|
||||||
|
echo "Pushed to Gitea" >> "$LOG_FILE"
|
||||||
|
else
|
||||||
|
echo "No changes to push" >> "$LOG_FILE"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Daily digest done." >> "$LOG_FILE"
|
||||||
Reference in New Issue
Block a user