Newest Questions
24,180,250 questions
0
votes
0
answers
8
views
Angular Not Loading the Updated Data After An API Call
so, i am working on a simple angular app where i fetch data from an API then load it in the html template.
import { Component, inject, OnInit } from '@angular/core';
import { ReclamationService } ...
0
votes
0
answers
11
views
Powershell $var - replace OR $var.Replace do not work on [) pattern in file names but on string pattern yes..Why?
Files names examples on that pattern [) did not work are ' [) .aaa' and ' [) .bbb'
#DOES NOT DELETE patterns [) or [lettersHere) in FILE NAMES
# I tried [,), (), [], (], and [). I tried the same ...
0
votes
0
answers
4
views
Android "saver mode" & CEC interactions
I'm currently trying to debug a strange intermittent problem with an Android video-device's "saver mode" & its interaction with a CEC "sleep" message.
The Android device's ...
0
votes
0
answers
21
views
Proper utilization of sliding window inferer
I am training an Encoder-Decoder network to reconstruct brain CT images. Due to OOM (Out of Memory) errors with full-sized images, I implemented a sliding window approach for training and inference.
...
0
votes
0
answers
19
views
Using Hatchling, how can I import and use classes in my package during the build process?
I feel like I am missing some basic concepts about how to use a hatchling CustomBuildHook.
During the package build process, I want to use a class from the same package that I am trying to build. I ...
0
votes
0
answers
27
views
Meteor can't find package eta/core even though it is installed
I am getting this error:
Unable to resolve some modules:
"eta/core" in /Users/gischer/SweetvineSystems/mansia-identity-server/node_modules/oidc-provider/lib/views/index.js (os.osx....
2
votes
0
answers
30
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 ...
-2
votes
0
answers
36
views
I need some guidance on a multi container docker compose file and if this looks correct [closed]
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. ...
-2
votes
0
answers
45
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
16
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
36
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
1
answer
22
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.
{...
-1
votes
0
answers
35
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
24
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
25
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 ...