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

推荐订阅源

Y
Y Combinator Blog
IT之家
IT之家
博客园_首页
人人都是产品经理
人人都是产品经理
博客园 - Franky
I
InfoQ
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
雷峰网
雷峰网
博客园 - 聂微东
N
Netflix TechBlog - Medium
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
D
Docker

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

写点代码,解决点问题。