Newest Questions
24,158,434 questions
0
votes
0
answers
2
views
Problem with searchable combo box in Java Swing
I have made a searchable combo box for use in a Java Swing program.
Here is how I would like it to work:
When clicked, it opens up the options list and enables typing in the box to let the user ...
0
votes
0
answers
4
views
Snowflake Git Repository with Azure DevOps Service Principal, "Operation 'clone' is not authorized"
I'm trying to connect an Azure DevOps Git repository to Snowflake using a Service Principal (OAuth2). The admin provided me with a client_id, tenant_id, and client_secret from an App Registration in ...
-1
votes
1
answer
12
views
GitHub Action "Generate Snake" not displaying GIF in README preview
I am trying to set up the "GitHub Contribution Snake" animation on my profile README. I followed several tutorials. When I run the workflow I just got the part of gif or svg.
Here is my path ...
-2
votes
0
answers
7
views
Does a non-Azure-hosted solution that achieves Azure IP Co-sell Eligible status qualify for the MACC (Microsoft Azure Consumption Commitment) badge?
We are building a SaaS product that is not hosted on Azure infrastructure (i.e., it does not run on Azure compute/storage). Despite this, our solution is transactable on the Azure Marketplace.
We are ...
Advice
0
votes
0
replies
16
views
how do I parse virtualized tables?
I'm trying to parse data (specifically exchange rates) from https://bestchange.com for my personal research purposes. I'm struggling with virtualization they implemented, since I don't quite get how ...
1
vote
1
answer
22
views
Content is appearing over fixed header
I have a web page that uses CSS and HTML only. In it there is a fixed header area. The text which I expected to appear below the header instead starts at the top if the page. Why?
The problem, as ...
0
votes
1
answer
13
views
force number of digits in awk output (no printf)
the problem is that awk transforms any roundable float into integers: 1.000 -> 1
for example:
cat <<EOF | awk -v CONVFMT=%.06f '{$1=$1*2; print}'
0.000 some stuff
1.000 other different ...
-2
votes
0
answers
9
views
LibreOffice base subforms column index is out of range (Postgresql)
I have tried creating a form with subform various ways with no joy.
Main form data source is a table
Subform is another table
Master & slave fields are both set to field "id" which is ...
Advice
0
votes
2
replies
27
views
Can anyone explain what are maven tests
Not knowing much about maven but, junit tests, etc, they just test the BUILD and do nothing to test the functional operation of the software being built?
0
votes
0
answers
34
views
How can I completely disable git support inside the Visual Studio 2026 Community Edition?
I was always using the native Git support (tools that are present in the official distribution of Git) in parallel with Visual Studio. In other words, I do not want to use the VS support for Git. That ...
-1
votes
0
answers
28
views
React Router v6 throwing "Uncaught TypeError: Cannot read properties of null (reading 'useRef')" and "Invalid Hook Call"
I am facing a "White Screen of Death" when using react-router-dom (v6) in my React application. The terminal shows a successful build, but the browser console throws multiple errors related ...
1
vote
0
answers
19
views
How to reload code when using langgraph dev?
I'm trying to learn langgraph, and reloading the code has been a major issue. In theory, code reload should be automatic, but it does not work. Sometimes I change the code and the change happens, ...
-6
votes
0
answers
29
views
Alternatives to Piston API for running code with free daily credits [closed]
I was using the Piston API (github.com in Bing) to run code and submit test cases in my project. It worked well because it was free and had no token limits. However, since the public endpoints were ...
-1
votes
0
answers
12
views
Does Google BigQuery Agent continue executing previous BigQuery queries when a user interrupts or modifies a multi-step task?
I have a question about the execution behavior of Google BigQuery Agent when a user interrupts or modifies a request during a multi-step workflow.
Assume the agent processes a user request like this:
...
-1
votes
0
answers
15
views
How to handle hard dependencies in ExternalProject_Add?
I have two external projects (X and Y) in my main project. Beside the fact that my main project depends on both, Y depends on X.
The failure during the build stage (in my case make) comes from ...