Newest Questions
24,146,301 questions
Score of 0
0 answers
8 views
Feign Decode Exception: Error while extracting response
I am using feign client calls in microservice architecture. I am getting below error while fetching data from the client call
feign.codec.DecodeException: Error while extracting response for type [...
Score of 0
0 answers
5 views
Error in .rs.exprMutatesPackageLibrary(expr) when adding paths to a data.table
When stepping through the below lines of code via RStudio (ctrl+enter) I'm getting the following error:
Error in .rs.exprMutatesPackageLibrary(expr) :
argument "part" is missing, with no ...
Score of -5
0 answers
22 views
views::zip has limited functionalities
Here is a Python version of the code:
class Solution:
def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
ans = []
if matrix:
ans += matrix.pop(0)
...
Score of 0
0 answers
29 views
typed [Ref] argument in a PowerShell class method
I'm trying to translate this C# class into powershell.
$source = @'
using System.Dynamic;
using System.Collections.Generic;
public class xDynamicObject : DynamicObject
{
readonly Dictionary<...
Score of -1
0 answers
38 views
How do you find the key and value at a certain position in a C++ map?
I have been solving a C++ question recently and it has required me to use a map. During the later stages of the problem, I need to loop over the map and withdraw the key and value at each position. ...
Score of 0
0 answers
6 views
Foundry Local SDK ignores CUDAExecutionProvider, forces CPUExecutionProvider on Windows
I am developing a local RAG application using foundry-local-sdk (v1.2.3) on Windows 11 with an NVIDIA RTX 5070 GPU. I am unable to get the SDK to utilize my GPU for inference, as it consistently falls ...
Score of 0
1 answer
44 views
Why is undefined behavior not being reported for this function?
Consider the following function:
int foo() {
struct A { int x; };
A const a { 5 };
const_cast<A&>(a).x = 10;
return a.x;
}
IIRC, foo() 's behavior is undefined, right?
Well, ...
Score of -4
0 answers
25 views
Banno APIs for Creating ACH and Wire Payees [closed]
We are integrating our application with the Banno Sandbox and Banno APIs.
We can currently initiate ACH and wire payments using the jXchange SOAP APIs. However, we also need to support the customer-...
Score of 0
0 answers
18 views
JSON payload in Fabric Copy Data activity Mapping tab not work
The source here is from Business Central 365 v2.0 Rest APIs.
This is a sample response payload from an endpoint.
This is a sample json payload I'm using for dynamic mapping expression in a copy data ...
Score of -1
1 answer
45 views
How can I retrieve the text from my search bar and use it in my event listener without triggering a addEventListener is not a function? [closed]
I'm making a website that displays restaurant in a specific area. The website has a search function where the user can search for a restaurant name and the website will display it. E.G, user input is &...
Score of 0
0 answers
21 views
Very weird crouch collisions
I had perfectly working wall and floor collisions, But when I decided to try and implement uses for crouching, I found out it does not work at all. Although even the mask index and the collisions seem ...
Score of 0
0 answers
40 views
What is an equivalent of _waccess on MinGW?
When I compile this line on MinGW, I get an error "error: '_waccess' was not declared in this scope":
#include <io.h>
#include <windows.h>
wchar_t* path = ...;
return (_waccess(...
Score of -4
0 answers
35 views
Vertex AI gemini-2.5-flash returns 429 RESOURCE_EXHAUSTED on paid account [closed]
I'm running a low-volume agentic application (built with Google's Agent Development Kit, ADK) that calls gemini-2.5-flash via Vertex AI a limited number of times per execution (roughly 5–15 ...
Score of -5
0 answers
23 views
How can I prevent users from scan with a face shown over a video call in a Flutter + Python face recognition system? [duplicate]
I'm developing a workspace application with a Face Recognition module for employee enrollment.
Tech stack:
AI Server: Python
Frontend: Flutter
Face detection and face recognition are already ...
Score of 2
1 answer
38 views
How can I implement Java-like enums in Go?
Unlike Go's iota-based enums, Java enums are singleton objects. Each enum constant is a unique instance that can carry additional state and behavior, while also providing name(), ordinal(), values(), ...