Newest Questions
24,217,664 questions
0
votes
0
answers
2
views
Html or Markdown in debug console
I have managed to set up my VS Code for scripting in much the same way as LinqPad. The one thing I am missing is a way to show my output in a prettier way.
I have been experimenting with nugets like ...
0
votes
0
answers
9
views
can't find element using By.LinkText in Selenium Webdriver
I'm new to Automation and I'm trying to test this site:
https://magento.softwaretestingboard.com/
and on this page
driver.get("https://magento.softwaretestingboard.com/men/tops-men/jackets-men....
0
votes
0
answers
11
views
Initialize the parameter values of an FMU from a PAR file within the FMU
Recently I came across a problem statement where we have to initialize the parameters of the FMU from a PAR file. There are straightforward solutions using the FMPy, where I can run a python routine ...
0
votes
0
answers
13
views
Comparing Swift's and Rust's function signatures
I want to check my understanding of how Swift and Rust handle function parameters.
From what I’ve seen, Swift has two main parameter modes:
Pass by value, immutable: f(x: T) and
Pass by reference, ...
0
votes
1
answer
12
views
How to package a module in python3?
I am just starting out with Python modules and I am struggling to find a way to package a module in Python 3. My package is not being recognised as such, meaning the module cannot be imported. Do you ...
0
votes
0
answers
4
views
Apple Pay for Authorize.net is not showing
I've completed all the necessary steps for setting up Apple Pay, including uploading the PEM certificate and verifying my domain. I'm using the WooCommerce Authorize.Net plugin (skyverge), and their ...
0
votes
0
answers
13
views
I can't open a specific branch on GitHub because there are too many files in the root folder
I have a GitHub project that I use to test certain integrations and pages in the product my company develops for speed and usability. One of the branches of this project has over 600,000 files in the ...
0
votes
1
answer
18
views
Using Git across network denied Linux Vmware
I have a specific scenario where my Windows machine has access to the remote repository just fine, but my Linux 20.04 VMware instance does not (This is intentional, and for the sake of this question, ...
1
vote
0
answers
14
views
TTouchKeyboard in Delphi steals focus from TChromium control after KB5060829/KB5062553 update
We ran into an issue on systems that have installed the Windows 11 updates that we released early July with our application that uses a combination of TChromium and Delphi's TTouchKeyboard.
Problem ...
0
votes
1
answer
21
views
How can I manage Memory?(SDL2)
So, whenever I go to debug and run my game, the memory just climbs, As you can see, I wipe the memory after I'm done with it(so I thought) Any tips on managing memory in this state? I have looked at ...
0
votes
0
answers
7
views
Why is my React three fiber animation slowing down over time?
I am having issues putting together a React three fiber component. I have the basics of what I want, a cool animation with a nice shader. However, I am a bit of a noob with React. The component ...
0
votes
0
answers
13
views
How do I select an object with # in the beginning?
How do you select a private object using javascript?
I tried searching google but I just couldn't understand the terms so I ended up asking here.
I'm trying to select an object so I can put it in the ...
-3
votes
0
answers
26
views
How can I merge two dictionaries with nested structures in Python without overwriting values?
I'm trying to merge two dictionaries in Python where both might have nested dictionaries inside. The default dict.update() method overwrites values instead of merging them recursively.
dict1 = {
'...
0
votes
0
answers
10
views
Two config files (same variables but different values) for one Snakemake file
I have one yaml file called config_T11H.yaml with the following content:
# the configuration for workflow of T11H
BASE_EDITOR: T11H
INDIR: data/alignment
OUTDIR: output/output_T11H
# start and end ...
0
votes
0
answers
14
views
How does useState work in React, and why is state not updating immediately? [duplicate]
I'm new to React and trying to understand how useState works. I'm using a simple counter to test state updates, but I'm confused by how setCount behaves.
Here's my code:
import React, { useState, ...