| name | description | compatibility | metadata | ||||||
|---|---|---|---|---|---|---|---|---|---|
xcode-assistant |
Apple-platform (iOS, iPadOS, macOS, watchOS, visionOS) coding assistant for Swift/Xcode codebases. Use for code explanation, refactoring, bug fixes, test generation, SwiftUI |
Designed for Codex-style coding agents. Works offline; for questions about brand-new platform APIs, use an official docs/search tool if available. |
|
<!-- Comments
Link: https://llm.codes/?https%3A%2F%2Fdeveloper.apple.com%2Fdocumentation%2Ffoundationmodels
Issue 1: The tool assumes that anchors are separate links.
For the following anchors, the tool duplicates the same page in the markdown for each instance.
https://developer.apple.com/documentation/foundationmodels
#app-main (x2)
#overview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env sh | |
| disable_suggestions() { | |
| if [ -d "$1" ]; then | |
| pushd "$1" || return | |
| find . -name com.apple.suggestions.plist \ | |
| -exec echo {} \; \ | |
| -exec plutil -replace SuggestionsAppLibraryEnabled -bool NO {} \; | |
| popd || return | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| default 20:40:55.697729+0100 Things3 Requesting container lookup; class = 2, identifier = <private>, temp = 0, create = 0, euid = 501, uid = 501, personaid = -1, type = NOPERSONA, name = <unknown> | |
| default 20:40:55.698792+0100 Things3 container_create_or_lookup_for_platform: success | |
| default 20:40:55.721862+0100 Things3 CHECKIN: pid=2504 | |
| default 20:40:55.732980+0100 Things3 CHECKEDIN: pid=2504 asn=0x0-0xff0ff foreground=1 | |
| default 20:40:55.737016+0100 Things3 Received configuration update from daemon (initial) | |
| default 20:40:55.751735+0100 Things3 FRONTLOGGING: version 1 | |
| default 20:40:55.751776+0100 Things3 Registered, pid=2504 ASN=0x0,0xff0ff | |
| default 20:40:55.755234+0100 Things3 BringForward: pid=2504 asn=0x0-0xff0ff bringForward=1 foreground=1 uiElement=0 launchedByLS=1 modifiersCount=1 allDisabled=0 | |
| default 20:40:55.755675+0100 Things3 BringFrontModifier: pid=2504 asn=0x0-0xff0ff Modifier 0 hideAfter=0 hideOthers=0 dontMakeFrontmost=0 mouseDown=0/0 seed=0/0 | |
| default 20:40:55.755783+0100 Things3 BringForward: pi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sampling process 2504 for 3 seconds with 1 millisecond of run time between samples | |
| Sampling completed, processing symbols... | |
| Analysis of sampling Things3 (pid 2504) every 1 millisecond | |
| Process: Things3 [2504] | |
| Path: /Applications/Things3.app/Contents/MacOS/Things3 | |
| Load Address: 0x100dd0000 | |
| Identifier: com.culturedcode.ThingsMac | |
| Version: 3.13.11 (31311505) | |
| Code Type: ARM64 | |
| Platform: macOS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Usage example: ./carthage_update.sh Chatto | |
| set -euo pipefail | |
| xcconfig=$(mktemp /tmp/static.xcconfig.XXXXXX) | |
| trap 'rm -f "$xcconfig"' INT TERM HUP EXIT | |
| # Serialize dsym paths for running on different machines, required in order for lldb debugging to work on xcode 12+ | |
| echo 'SWIFT_SERIALIZE_DEBUGGING_OPTIONS = NO' >> "$xcconfig" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euf -o pipefail | |
| # FIXME: Check '/opt/local/bin/port' directly if MacPorts is not in the PATH? | |
| if command -v port &> /dev/null; then | |
| printf "%s\n%s\n%s\n" \ | |
| "MacPorts is already installed." \ | |
| "Consider to use 'sudo port selfupdate' command for upgrades." \ | |
| "Check the https://guide.macports.org/#installing.macports.uninstalling to uninstall MacPorts before reinstalling." |
Grammarly is a lovely writing assistant. Twenty million people use the tool across the globe according to the statistics available on the site. I use it too. No complaints, it does its job quite well, and I am a happy user. The only thing that always worried me is the Grammarly iOS Keyboard. As an iOS engineer, I know how easily you can collect different data, sensitive information, and even do not ask users about the consent. So, let's check what is inside the Grammarly iOS application.
- Grammarly iOS uses at least three trackers (Adjust, AppsFlyer, Internal analytics)
- Grammarly Keyboard has access to keystrokes, sensitive data, and able to send them over the network
NewerOlder