Newest Questions
24,180,247 questions
1
vote
0
answers
7
views
(Initially) getting duplicate results from FetchedObjects
I'm taking a class to try to learn iOS programming, and am working on a class project related to Core Data, filtering, and sorting. The class is doing a poor job teaching, but I'm close. I don't want ...
0
votes
0
answers
6
views
I need some guidance on a multi container docker compose file and if this looks correct
I am new to docker, i have been playing around with it and through the image section have some images downloaded. From those images when i hit run i edited the container settings and got them running. ...
-1
votes
0
answers
15
views
How to have both the default and custom constructors?
I have a struct. I want a custom constructor. I also want to still be able to construct it with a braced list as would be the case if there was no custom constructor. Is it possible?
For example, ...
0
votes
0
answers
5
views
Dxf Spline LEADER with Block annotation not drawing correct
This DXF spline LEADER with Block Annotation displays as a straight line in autodesk's TrueView. It displays correctly however in the ODA Viewer, as well as my app which created it.
ACAD LEADER
...
0
votes
0
answers
22
views
Sum up columns with the same string in the column name
I want to sum up (horizontally) some columns that share a common string in their name. For example, given the following columns
a_red, a_blue, a_green, b_red, b_yellow, b_blue
I would like to add in ...
0
votes
0
answers
15
views
Should $ref values in a JsonSchema be served in the backend?
I have two different schemas being pulled from two different locations / APIs. These schema may look similar but they are indeed different.
// Main schema, describes everything about our main model.
{...
0
votes
0
answers
20
views
unable to install ssms 2022 on windows 11
Have de-installed all other components of SSMS including the vc++ redistributable and installed the latest version of this. Version 14.50.35719. Still get the below errors. AM very frustrated as ...
0
votes
0
answers
17
views
Interceptor failing to ingest localStorage variable and pass it to service
Problem
I have a token object stored in localStorage:
{
accessToken: string
idToken: string
refreshToken: string
}
When I resfresh the page I have the following interceptor built:
import {...
0
votes
0
answers
17
views
Purpose of type structure in determining a view's structural identity
When the guy was talking about structural identity, starting at about [8:53](https://developer.apple.com/videos/play/wwdc2021/10022/), he mentioned how the swiftui needs to guarantee that the two ...
0
votes
1
answer
26
views
ERROR: failed to build: failed to solve: openjdk:17: failed to resolve source metadata for docker.io/library/openjdk:17-oracle: [duplicate]
I have created a java appliction, I wish to upload the appliaction as a docker image.
The Problem is it looks like Java 17 is not supported, or no longer supported.
I have used
FROM openjdk:17
I got ...
0
votes
0
answers
25
views
How to customize reactive data frame object in RMarkdown using Shiny
I am new to RMarkdown and Shiny, and I am trying to combine them. I want to display two data frames that are produced by running my markdown script, but I do not know how I can format the data frames ...
-2
votes
0
answers
70
views
How can I upload a new release to PyPI after accidentally publishing and then deleting an unintended release from GitLab? [closed]
I accidentally published a release last week on our private GitLab instance, so I deleted it afterwards. Now I can't release the next minor version because it says the name is already taken (400 error)...
0
votes
0
answers
16
views
Where is the error "SessionNotFound: invalid_request" generated?
I am bringing up my oidc server slowly working through issues. Right now, I am trying to get my interactions to work, and I am seeing the following error:
SessionNotFound: invalid_request
at ...
0
votes
0
answers
28
views
VNC Viewer cannot connect to Raspberry Pi 5 running Debian "Trixie" with WayVNC [closed]
I am trying to connect VNC Viewer on my PC to my Raspberry Pi 5 running Debian "Trixie".
Here is my situation so far:
VNC mode is enabled on the Pi via raspi-config.
I can access the Pi ...
0
votes
0
answers
18
views
Android. StateFlow which get data from Room database Dao, injected into viewmodel, is not updated ater dao.insertAll()
In my Android Jetpack Compose project with Room database the ViewModel is hilt-injected Dao and has property of type StateFlow, whose value is the result of calling dao.getAll(). I tried to ...