Frequent Questions
17 questions from the last 7 days
0
votes
0
answers
48
views
Naming an ILogger instance of a durable function
I have an Azure regular function app which I'm now converting to a Durable function app. In the regular function app I had a code which created an ILogger instance like this:
private static readonly ...
1
vote
1
answer
46
views
Azure durable function exception No valid DurableTask client target was registered
I created an isolated Azure durable function. When trying to invoke a custom status endpoint I created which receives a DurableTaskClient as parameter to the constructor, I got this Exception:
System....
0
votes
1
answer
31
views
django model with foreign key onto settings.AUTH_USER_MODEL fails when app is incorporated into other app using postgres
I have a survey app that works fine as a standalone app with no complaints (using sqlite).
But when I incorporate the survey app into another that is using postgres as a database, it fails to run the ...
-3
votes
0
answers
110
views
Why do useEffect and an early return affect child re-renders when using react hook form in React? [closed]
I have encountered a weird situation and I am pretty sure there is bug either in react-hook-form(7), React (19) or nextjs (16). Below details:
"use client";
import React, { useState, ...
5
votes
1
answer
263
views
Split the legend into three rows with headings for a nested facet_wrap
The dataframe df0 below includes the following variables:
site: 3 remote partner laboratories (fixed number),
analyte: biomarkers measured at one or more of these sites (3 analytes in this example ...
1
vote
2
answers
367
views
What impediments are there to inclusion of the Networking TS in the C++26 standard?
As C++26 standard's timeline is getting near, I want to know:
What is(are) the reason for no built in support of networking by the C++ standard. That is, what exactly are the problems that lead to ...
1
vote
1
answer
97
views
Spring Boot: 400 Bad Request when sending JSON POST request to REST API
I am working on a Spring Boot application where I am trying to save a Question entity using a POST API. However, whenever I send a JSON request from Postman, I receive 400 Bad Request.
I expected the ...
1
vote
2
answers
142
views
How to move a certain file to another directory?
Recently, I’ve been working on a small project that allows you to download information about a person who has participated in a powerlifting meet. The data comes from OpenIPF.
In this project, a CSV ...
1
vote
1
answer
94
views
.NET Minimal APIs built-in validation stops working when endpoint mapping is in different assembly than validatable DTO
I'm using the built-in Minimal API validation (AddValidation() + data annotations / generated resolvers).
I have a modular setup with multiple assemblies:
Host (Host.Api) – the entrypoint where DI ...
1
vote
0
answers
184
views
Does the *happen-before* guarantee the order of delivery for data to a file?
Consider this example:
#include <thread>
#include <atomic>
#include <stream>
int main(){
std::ofstream outFile("example.txt", std::ios::out | std::ios::trunc);
std::...
0
votes
2
answers
95
views
Why Isn't the Dynamic Link Library Using Its Statically Linked Functions? [duplicate]
a (main calls c and d)
|
+-----------+-----------+
| |
libc.so (c calls b) libd.so (d calls b)
| |
| |
...
0
votes
1
answer
68
views
Swift Testing - load data before the tests start
This is a follow-up to a previous question: Xcode XCTestCase - wait for setup to complete before starting tests
In the comments it was suggested to switch to Swift Testing instead of using XCTestCase, ...
-1
votes
1
answer
59
views
How do you find a circle that just disappeared and how do you put it back? [closed]
I am having a problem in Processing JS where my circle is not appearing.
The code is as follows:
var circleY;
var circleX;
stroke(0, 0, 0);
var bob = function(text1,x1,y1){
noFill();
var ...
-1
votes
0
answers
70
views
Is it possible to display the parameters from the JSON before I use JsonSerializer.Deserialize?
How can I display the function parameters (SessionTicket, Deviceid, Loginemail, Language) in Azure portal when I call my Azure function? I just want to find out if the function parameters are correct ...
-3
votes
1
answer
59
views
How to exclude an overload in TypeScript?
How can I remove a function signatures overload?
Notice, that when I join two separate function signatures A and B, it is later possible to split them again, but the same code will not work with type ...