Sometimes during iOS development, you want every run to start with a completely fresh app installation – without leftover UserDefaults, local files, or other application data. Or the need to click through three modals until the app is finally gone.
You can automate this in Xcode using a Scheme Pre-action.
Tag: TIL
-

TIL: Automatically Uninstall an iOS App Before Running it in the Simulator
-
TIL: update all shadcn ui components
Update all shadcn components to the latest version
npx shadcn@latest add -a -y -o
Source: shadcn-ui Github discussion
-
TIL: Upgrade python and venv with uv
uv venv –python 3.13
uv python upgrade 3.13Source: UV Python Versions
This is a TIL (Today I learned).