118,681 questions
0
votes
0
answers
37
views
R/R studio crashing after update [closed]
I updated my to the macOS Monterrey version 12.7.6 version and decided to update both my R and RStudio but it has been crashing out ever since. I managed to get it to open but now my session gets ...
1
vote
0
answers
27
views
Is Building .NET Framework 4.8 Projects on Mono on MacOS Possible?
I was tasked this sprint with trying to find a way to build and unit test a variety of worker services that my company has that target .NET Framework 4.8 on MacOS, as we have developers transitioning ...
-2
votes
2
answers
54
views
Close terminal window opened by .command Python script
I have a Python script. I'd like to double click a file on my desktop (macOS) to run it. I'd like the terminal window opened by running the script to close.
To start, I changed the file extension of ...
-2
votes
1
answer
18
views
Where you can find image icons for macOS system settings sidebar? [closed]
Does anyone know where the icons from the left sidebard of macOS System Settings can be found?
I want to design my macOS app and would love to reuse the icons found in the System Settings.
The ...
-1
votes
0
answers
84
views
Unexpected enum print and segmentation fault when dealing with an std::array of objects [closed]
I am coding a program about shapes, and I am having problems with getting the enums to print correctly. Here is the code:
Shape.h:
struct Point{int x; int y;};
enum class Color{
NO_COLOR = 0,
...
-1
votes
0
answers
26
views
Swift Testing Unit tests show app on screen [duplicate]
Why when running simple unit tests, is my app showing up on my screen (A window with the ContentView of the app, by default its a VStack with the globe Image and 'Hello, world!' Text)?
How do you deal ...
0
votes
0
answers
29
views
MacOS launchctl setenv DYLD_LIBRARY_PATH
Platform MacOs Sequoia 15.5.
My objective is to enable an application to find a dynamic library.
My plan is to use launchctl to set the environment variable DYLD_LIBRARY_PATH and then lanch the ...
0
votes
0
answers
59
views
How to read exported symbol from a running process in macOS using C code?
I want to read exported symbol EEmem from PCSX2 process in macOS (related github PR https://github.com/PCSX2/pcsx2/pull/5531/files). How to do this in C code?
Using tools lldb, I can read the value ...
0
votes
0
answers
34
views
Installing dotnet SDK 9.x on top of my other SDKs (7.x, 8.x) doesn't work (macOS)
I have dotnet installed in my macOS since a while ago, dotnet --list-sdks list all the versions I have (from 3.1.411 to 8.0.201). So I'm interested in installing 9.x on top of them, which is not a ...
1
vote
0
answers
34
views
Why is ScreenCaptureKit frame capture delayed by more than 16ms at 60 FPS?
I'm using ScreenCaptureKit to capture screen frames at 60 FPS.
To measure capture latency, I display a timer label on the screen using CVDisplayLink, and when each frame is captured, I save the image ...
-3
votes
1
answer
54
views
Avalonia OpenGLControlBase Rendering Issue [closed]
I'm coding a OpenGL canvas using OpenGLControlBase in Avalonia, it works well when I add objects inside the viewport.
When I move some parts of one quad outside the viewport, the part of the quad ...
0
votes
0
answers
21
views
How to make a hex editor the default application for files with no file extension? [closed]
im on MacOS and trying to work out how to associate all files with no file extension to open my desired hex editor.
If I attempt to use 'Always Open With', it only opens that one particular file with ...
-1
votes
0
answers
55
views
Dock menu items to switch windows are missing with CMake app [closed]
How do I get the window switch items that appear in macOS dock with a CMake app?
I get this for free on a new Xcode project but not in a CMake application.
I'm guessing I somehow need to register my ...
-1
votes
0
answers
44
views
SwiftUI macOS App opens itself without user interaction
My app seems to randomly open itself. When that happens, it's not visible in the Dock, Task Switcher, and it's not showing up on the menu bar either. It sounds like the app is launching with ...
1
vote
1
answer
56
views
ScreenCapture + CMSampleBuffer logic issue
I'm trying to work on a simple screen recording app on macOS that always records the last 'x' seconds of your screen and saves it whenever you want, as a way to get comfortable with Swift programming ...