惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
B
Blog
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
月光博客
月光博客
H
Help Net Security
V
Visual Studio Blog
量子位
A
About on SuperTechFans
博客园 - Franky
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog

wentao's blog

解决armbian更新报不能验证个别公钥 nyagos增加zoxide的支持 快速查找PowerShell的历史命令 denote 利用PowerShell来进行端口连通性测试 wezterm的workspace配置 PSReadLine最强PowerShell模块 读《万千微尘纷坠心田》 一个新的终端模拟器WezTerm
Emacs添加腾讯会议连接
wentao写点代码,解决点问题。 douban github twitter Spotify telegram · 2022-05-26 · via wentao's blog

这段时间因为疫情居家办公的时候太多了,各种腾讯会议不断.用了 org-mode 来做待办的提醒.但是在电脑上怎么快速进入会议呢?想着通过External Links (The Org Manual)的方式来实现快速打开腾讯会议.


(defun make-wemeet-link (meet_id)
  (browse-url (concat "wemeet://page/inmeeting?meeting_code=" (s-replace "-" "" meet_id))))
(org-add-link-type "wemeet" 'make-wemeet-link)

这样之后通过创建一个 [[wemeet:123-345-128]] 的连接.就能够通过 url scheme 来快速启动腾讯会议并入会.

wentao

写点代码,解决点问题。