Naty S (burgeonlab.com)

在主站收到了来自Burgeon Lab发送的Webmention提及行为,并且是Like喜欢!
发现是一个很有意思的网站,也是IndieWeb的爱好者。也算是为数不多的非中文访客的留言。(幸好没有误判啊)

Omnibear (indieweb.org)

Omnibear is an open source browser extension for posting text notes, replies, bookmarks, and likes to your website using Micropub created by Keith J.

Moonlight远程桌面

Moonlight remote desktop
byu/KillaRoyalty incloudygamer

This is the code I use:

@echo off
taskkill /f /t /im rdpclip.exe

for /f "skip=1 tokens=3" %%s in ('query user %USERNAME%') do (
	%windir%\System32\tscon.exe %%s /dest:console /password:YOUR-WINDOWS-PASSWORD-HERE
)

ping 127.0.0.1

net stop NvContainerLocalSystem && net start NvContainerLocalSystem

To explain: the first taskkill line will kill the clipboard. I haven’t encountered the issue myself, but apparently some RDP clients can freak out the RDP server if tscon is invoked without quitting the clip app.