Newest Questions
24,188,017 questions
Advice
0
votes
0
replies
3
views
What is the Build folder and what is its context in Electron-vite?
I am working on a project using electron-vite and using the @quick-start command for scaffolding the project.
When I used this template, it came with a folder called "Build". I tried to ...
0
votes
0
answers
3
views
Access nested table in ForAll loop
I have a collection colPendingChanges and it has multiple rows. Each row has multiple fields and one of them is AttributeTable which is a nested table.
colPendingChanges =
[
{fieldA: 'foo',
filedB:'...
0
votes
0
answers
7
views
How do I make my in-app purchase a consumable in Godot 4.5?
I am using Godot 4.5 with the GodotGooglePlayBilling 3.1.0 Release for my android game app. I was able to make the in-app purchase work with connecting to the Google Play Store. I was also able to buy ...
0
votes
0
answers
8
views
How to open specific git committed file in VSCode
Like how Git Graph allows you to open comitted file to show comparisons
I want to make a VSCode extension that allows users to open committed files like that. What vscode api should I use?
Input:
...
0
votes
1
answer
3
views
PintArray seems to be inaccessible. "AttributeError: module 'pint' has no attribute 'PintArray'."
I am fairly new to Python, and I must have missed something essential because I'm seeing broken functionality all over Pint. I'm starting to think it all comes down to PintArray is not available to ...
Best practices
0
votes
0
replies
13
views
I want to improve my program thats about a React Tasklist
We need to make a program for school, it works just fine I let gemini do some comments, they are in german tho, I could change it to english if I need to, I would like to know how I could improve it. ...
0
votes
0
answers
9
views
Modbus TCP connect failed
I tried to connect to my HMI by modbus TCP, but it reback me "System.IO.IOException: 'Unable to read data from the transport connection".
I had ever connect other HMI(BeiJer X2 base 7) with ...
0
votes
0
answers
6
views
What is the purpose of using Pass by Reference if the Global Scope achieves the same result in PHP? [duplicate]
I’m currently studying functions and variable scope in PHP.
I learned that we can modify the value of a variable defined outside a function using two different approaches. Both seem to achieve the ...
0
votes
0
answers
9
views
spring-boot-starter-aop jar is missing with Spring Boot 4.0.0
I created a proyect from https://start.spring.io/
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http:/...
Advice
0
votes
0
replies
19
views
Writing a typing game, with an animated keyboard
I'm a new web developer here. I was hoping to share some code and see if there's a set of functions to use that maps more appropriately to my problem.
My goal is to create a typing game with css ...
1
vote
2
answers
14
views
Configure module-level logger as child of main program logger
Python loggers can be organized in a namespace hierarchy (e.g. foo.bar.baz). If a python module uses the native logging module, can I configure logging in my main program such that all logging ...
Advice
0
votes
2
replies
13
views
Shifting string values to a previous column in a dataframe
Here is what i have in a dataframe where a column has names and some numbers together since this is a table extracted from a PDF
enter image description here
I would like to get the dataframe to use ...
0
votes
0
answers
16
views
Failed to set alternate app icon. 'The operation couldn’t be completed. Resource temporarily unavailable' - Icon Composer files, setAlternateIconName
With Xcode 26.1.1, I had Icon Composer files in the side bar, copied to the main target, but suddenly I'm hit with the error 'The operation couldn’t be completed. Resource temporarily unavailable'.
I ...
Best practices
0
votes
0
replies
13
views
what is a basic skeleton for creating a website using HTML, CSS, TSX with Tanstack wireframe?
I need non-inline code in HTML, CSS, JS, Node.js, TSX, and a Tanstack wireframe.
I also need to know how to insert my logo so that it is responsive for many devices.
Please be kind, I'm starting over ...
1
vote
1
answer
22
views
C# await and data integrity
I finally found out the basic mechansm that c# uses to implement an async/await construct (using continuaitons). However, this led me to question data integrity. Imagine the following:
class ...