Skip to content

Instantly share code, notes, and snippets.

View nodeselector's full-sized avatar

Jeff Martin nodeselector

  • GitHub Staff
View GitHub Profile
@nodeselector
nodeselector / modify_screensharing.sh
Last active July 26, 2024 21:52 — forked from timsutton/modify_screensharing.sh
Enabling screen sharing on macOS 14
#!/bin/bash
# A cleaner alternative to this approach, but which requires a restart, is to populate TCC's SiteOverrides.plist inside
# the TCC app support directory with the following:
# <?xml version="1.0" encoding="UTF-8"?>
# <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
# <plist version="1.0">
# <dict>
# <key>Services</key>
# <dict>
@nodeselector
nodeselector / xcode-simulators.md
Last active July 23, 2024 04:00
Xcode Simulators

Simulator limitations

Simulator performance does not correlate to device performance in a meaningful way. If you want to test performance of an app as it behaves on your users' devices, you must test on a real device. When I say simulator performance in the rest of this document, I mean the performance of the simulator itself, not the performance of the app running in the simulator.

Hello World

open -a Simulator --args -CurrentDeviceUDID 5FCE6A79-78EF-497A-8329-99D9755C8559
@nodeselector
nodeselector / codesigning.md
Last active July 24, 2024 03:10
Code signing is confusing. This is my info dump of links that I used to learn it.