mastodon.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The original server operated by the Mastodon gGmbH non-profit

Administered by:

Server stats:

357K
active users

Get a list of all `x-callback-url` schemes supported on macOS with this command:

```
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -dump URLSchemeBinding
```

@com wtf is this doing here...
```
search: Windows Search protocol (0x8d000) (0x8d002)
```

QC

@blanxd WTF. I don't have that one. You can discover which apps provides it with:

```
find {~,}/Applications -type f -name "Info.plist" | while read pl; do plutil -convert json -o - "$pl" | jq -e 'any(.CFBundleURLTypes[]?.CFBundleURLSchemes[]; . == "search")' >/dev/null && echo "$pl"; done
```

(requires installing `jq` first).

Or, just YOLO it: `open search://` :)

@com yeah I already did :) Looks like if you install a win vm in VMware Fusion, it passes those things through to the host os. I didn't even remember I had been curious when the arm win10 alpha builds had 1st appeared, nice to discover I have another 20G free space now :)

@com vmw fusion creates like an .app for most win guest programs, which I guess can be somehow transparently run from the host while the vm is active, and that Windows Explorer.app has the "search" URLScheme there in it's Info.plist.

@blanxd Oh wow, that’s interesting.