https://developer.apple.com/documentation/devicemanagement/nsextensionmanagement
| Extension | Bundle ID |
|---|---|
| AirDrop | com.apple.share.AirDrop.send |
| FinderSync | com.apple.FinderSync |
com.apple.share.Mail.compose |
|
| Messages | com.apple.messages.ShareExtension |
https://developer.apple.com/documentation/devicemanagement/nsextensionmanagement
| Extension | Bundle ID |
|---|---|
| AirDrop | com.apple.share.AirDrop.send |
| FinderSync | com.apple.FinderSync |
com.apple.share.Mail.compose |
|
| Messages | com.apple.messages.ShareExtension |
NOTE: Time flies, and it's been almost five years(!) since I wrote this. Beaware the text below is now outdated (e.g., now Asahi Linux has graphics acceleration even better than this). The commands listed are up-to-date.
I bought M1 MacBook Air. It is the fastest computer I have, and I have been a GNOME/GNU/Linux user for long time. It is obvious conclusion that I need practical Linux desktop environment on Apple Silicon.
Add this in your ini file:
[alembic:exclude]
tables = spatial_ref_sys
In env.py:
import re
| #!/bin/bash | |
| # | |
| # Copy data from a Time Machine volume mounted on a Linux box. | |
| # | |
| # Usage: copy-from-time-machine.sh <source> <target> | |
| # | |
| # source: the source directory inside a time machine backup | |
| # target: the target directory in which to copy the reconstructed | |
| # directory trees. Created if it does not exists. | |
| # |
| import unittest | |
| from pyramid import testing | |
| from paste.deploy.loadwsgi import appconfig | |
| from webtest import TestApp | |
| from mock import Mock | |
| from sqlalchemy import engine_from_config | |
| from sqlalchemy.orm import sessionmaker | |
| from app.db import Session |