118,669 questions
-2
votes
0
answers
8
views
Necessary rsync options for APFS? [closed]
I'd like to write a script to archive my 'Obsidian Vault' which is mostly markdown files, but also json, js, css, hidden files, etc.
rsync is my preferred way to copy/archive/sync files - but with ...
0
votes
1
answer
31
views
How to use Gestures with middle/right mouse buttons?
How can I use gestures (DragGesture, TapGesture etc.) with right and middle mouse buttons? I did not see any functionality for this. Do I need to make a custom implementation?
0
votes
0
answers
27
views
MacOS VSCode dotnet 10 Build a blazor movie database tutorial unable to 'dotnet ef migrations add InitialCreate'
λ ~/ dotnet --version
10.0.100
λ ~/ system_profiler SPSoftwareDataType SPHardwareDataType
Software:
System Software Overview:
System Version: macOS 26.1 (25B78)
Kernel Version: ...
0
votes
0
answers
72
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 ...
2
votes
2
answers
66
views
How do I optimize a blueprint like grid 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 }
}...
0
votes
0
answers
39
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
49
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” ...
2
votes
0
answers
41
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
62
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
30
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
36
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
76
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
99
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 ...