All Questions
118,666 questions
0
votes
0
answers
39
views
Finding Python installations besides Apple pre-installed (possibly from Anaconda) [closed]
How do I check how many Python installations I have on my Mac?
I am currently runing Tahoe 16.0.1 and Python is already present on my Mac from Apple but I also installed Anaconda which came with its ...
1
vote
2
answers
46
views
How do I optimize a view that potentially contains thousands of views?
I have a grid/tile view implemented like below:
struct Grid: View {
let size: Int
var body: some View {
LazyVStack(spacing: 0) {
ForEach(0..<size) { _ in row }
}...
1
vote
0
answers
35
views
MacOS : Postgres dumping result with permission denied, butg sometime passed [closed]
i'm trying to dump data with script file .sh
So i got a folder in /Home with : working , and inside would be dev-sever and dev-docker
When i run docker there is no error but when i open terminal and ...
2
votes
0
answers
35
views
Is there a way to suppress “Access Data from Other Apps” popup in Swift Playgrounds on macOS 26
I’m using Swift Playgrounds on macOS 26 to learn app development, starting with the “Get Started with Apps” template. Every time I run the template, macOS shows a popup asking: “Get Started with Apps” ...
1
vote
0
answers
35
views
Switching default channels using Core Audio
I wrote a Swift macOS app to control a PCI audio device. The code switches input and output channels by default. As soon as I launch the Audio-Midi Setup utility and switch channels, my code stops ...
0
votes
0
answers
61
views
How can I show a movable webcam preview above all windows in macOS without activating the app
I'm building a macOS app using SwiftUI, and I want to create a draggable floating webcam preview window
Right now, I have something like this:
import SwiftUI
import AVFoundation
struct ...
-2
votes
0
answers
29
views
2011 MacBook Air stuck on Windows — How can I safely install macOS High Sierra [closed]
I have a 2011 MacBook Air (11″ Mid 2011 or 13″ Mid 2011) that currently only has Windows installed. I want to completely remove Windows and install macOS High Sierra (10.13.6).
Here’s my situation:
My ...
0
votes
0
answers
21
views
MacOS Launch Daemons
I am trying to create a Launch Daemon that launches whenever I log in. I know that launch agents are better suited for this job, but I want to accomplish it with a launch daemon instead because It's ...
0
votes
1
answer
35
views
Weird blurring / gradient mask effect in safe area on dotnet MAUI maccatalyst
I'm building a dotnet maui application. One of the targets that I am using is Mac OS X maccatalyst. My app consists of a hybrid web control that goes into the safe area with negative top margin so ...
2
votes
0
answers
72
views
Database connection failing as soon as the parent ssh shell is terminated, even though I backgrounded and disowned
Alright, so bear with me. This took me an entire day to dig into.
what I'm doing
I'm running a C program on a remote host over SSH. The program calls a local redis database IP and port and also 8.8.8....
1
vote
0
answers
28
views
Autonomous Single App Mode (ASAM) supported App on MacOS
I'd like to write a MacOS App that makes use of the ASAM functonality as described here: https://developer.apple.com/documentation/devicemanagement/autonomoussingleappmode
I have tried to use the ...
0
votes
2
answers
98
views
How to create an image carousel that auto-sizes based on it's content?
I’m trying to build an image carousel similar to the one in the App Store, but I'm a facing a lay-out issue.
The carousel should:
Automatically adjust its height based on its content
Automatically ...
2
votes
0
answers
122
views
Rust language server not working in neovim [closed]
I just started using neovim. I could get the lua language server to work but not the rust language server (rust-analyzer). When I open a rust file like hello.rs I get the error
LSP [rust_analyzer] ...
0
votes
0
answers
56
views
Xcode 26.1.1 React Native build fails: “Could not delete ios/build” & “Operation not permitted”
I’m building a React Native 0.72.10 iOS app and hitting build errors.
Environment:
macOS: Apple M4, Sequoia 15.7.2
Xcode: 26.1.1
React Native: 0.72.10
Errors:
Could not delete /Users/.../ios/build ...
Advice
1
vote
5
replies
79
views
How to wrap C-library into SwiftPackage to use in my project?
I created test project - "TaoTester" and test package with C-library called "SwiftGit2".
After few days of work in package almost all works fine....
EXCEPT: I cannot link C-...