24,227,692 questions
0
votes
0
answers
1
view
Inno Setup Change preselected directory issue
I am having an issue with adapting my Inno Setup scripts to enable a user to choose a different install location based on the presence of other programs.
The installed files can be used for two ...
1
vote
0
answers
3
views
How to use pppoe dial up connection from a program
I want to create multiple pppoe dial up connections, then, write programs that use different pppoe connections.
For more info, if create multiple virtual machines, I can use a bridged connection and ...
0
votes
0
answers
4
views
How to read the request initiator chain and request call stack in chrome dev tools?
I want to understand how the request initiator chain and request call stack are read. My understanding is that for the initiator chain, it shows the files which made the current request from top to ...
0
votes
0
answers
7
views
How to create a cloud function in firebase in JavaScript
I am currently stuck on how to create a cloud function with firebase. I have tried to do the following:
In my terminal:
npm install -g firebase-tools
mkdir my-firebase-project
cd my-firebase-project
...
0
votes
0
answers
9
views
how to zip/merge fs2.stream values
given a list of stream like the following:
val sa=fs2.Stream(a1,a2,a3…)
val sb=fs2.Stream(b1,b2,b3…)
val sc=fs2.Stream(c1,c2,c3…)
……
val sx=fs2.Stream(x1,x2,x3…)
how to get
val re=fs2.Stream((a1,...
0
votes
0
answers
14
views
Why can't I declare int n[][] but I can declare int *n[]?
The C23 standard says(6.7.7.4 #7):
A declaration of a parameter as "array of type" shall be adjusted to
"qualified pointer to type", where the type qualifiers (if any) are
those ...
0
votes
0
answers
5
views
Find conditions from multiple databases to have in a single database
I am currently working in a project where multiple databses are available to check for specific conditions of a patient.
Specifically, I have a "master" database in wide format, with one row ...
0
votes
0
answers
8
views
How do you force a Flux to pull or implement backpressure limits?
I'm attempting to open a file and reading lines through a Flux. I would then like X number of workers to process lines concurrently. Those workers may be slow and so I would like to prevent the ENTIRE ...
0
votes
0
answers
6
views
How to send query filters in Postman to a Node.js controller expecting req.query for filtering MongoDB data?
I want Advnaced filtering in node express & mongoDB. Data is present in The dataBase but still not working and postman show success but show nothing.
Node js Code:-
try {
console.log(req.query);
//...
0
votes
0
answers
9
views
Unable to infer type of routes for hono rpc
In /server/index.ts
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const routes = app.basePath("/api").route("/", authRoute);
export type ApiRoutes = ...
0
votes
0
answers
14
views
I started the VS tutorial and have an error already
I just installed VS with one option WPF VB.
I started this tutorial
https://learn.microsoft.com/en-us/visualstudio/get-started/visual-basic/tutorial-wpf?view=vs-2022
I am totally green with this.
I ...
0
votes
0
answers
5
views
Login with Auth0 gives unexpected token error
I integrated last version of Auth0 Swift SDK, following the basic integration steps (also tried the sample app) I have this code:
Auth0
.webAuth()
.logging(enabled: true)
.start { result ...
0
votes
0
answers
8
views
Openai Multi Agent Sdk - Function tool has input parameter as Dict. throws additionalProperties should not be set for object types
@function_tool
def filter_data (input_data_str: Dict , key : str , operator: str , value: Union[str,int] ) -> Dict :
This error is raised when i try to run the python program. Openai ...
0
votes
0
answers
6
views
How to create a DD path for a method
can anyone help me with creating a DD path for a specific method. I tried making one but I am not sure that it is correct. Please anyone help...
the method is:
@register.filter(name="book")
...
1
vote
0
answers
18
views
How can an element inserted into a link inherit the attributes of the link?
I have written a CKEditor plugin that inserts an element from an HTML string.
The string is, for example:
<span class="link">Link</span>
This string is inserted as described in ...