Newest Questions
24,187,269 questions
Advice
0
votes
0
replies
4
views
How to upgrade files with MSI installer that can have higher version of the assemblies
I have a .NET desktop application that is installed using MSI installer. I'm using Wix 5.0.2 toolset to generate it with the simple directive to include all files:
<Files Include="my-app\**&...
0
votes
0
answers
6
views
Azure az vm run-command invoke silently fails when script includes runuser with arguments (works manually on VM)
I am invoking Azure Run Command from Python using:
az vm run-command invoke --command-id RunShellScript --scripts "<script...>"
When I run the same script manually via SSH on the ...
0
votes
0
answers
3
views
Closing balance doesn’t match next month’s opening balance (running account movement model)
I’m building a monthly account movement model in Power BI.
The logic is:
Opening(t)
NewAccounts(t)
SwitchesIn(t)
SwitchesOut(t)
AccountsClosed(t)
= Closing(t)
Then the next month’s Opening(t+1) ...
-1
votes
0
answers
4
views
I updated ejs file, the updated version is not reflected on `nodemon` run
I am trying to migrate express to typescript. I am using ejs. It was working for the most part except when I tried to update an ejs file, the updated version is not reflected on nodemon run. I tried ...
Advice
0
votes
1
replies
18
views
Stuck on this implementation — need a hint to understand the next step
Thereisanintegerarraynumssortedinascendingorder(withdistinctvalues).Priortobeingpassedtoyourfunction,numsispossiblyrotatedatanunknownpivotindexk(1<=k<nums.length)suchthattheresultingarrayis[nums[...
0
votes
0
answers
4
views
WooCommerce – Custom discount based on Pickup/Delivery not working properly
enter image description here
Hi everyone,
I’m working on a WooCommerce website, and I’ve added custom functionality in the checkout page.
What I’m trying to do:
If the user selects Pickup, they should ...
0
votes
0
answers
6
views
Gesture recognition in Maui for Android
I have two CollectionViews in which I want to support gestures on the contained items.
In one CollectionView, SelectionMode is None, and I want to support Tap (to view details), Drag/Drop (moves), and ...
0
votes
0
answers
5
views
docker builds failing “Unable to locate” - bad bridge?
I have just installed a fresh docker on an up-to-date build of Ubuntu 24.04, and all my docker builds are failing - first theres a bunch of "Temporary failure resolving ‘<archive name>’”, ...
-1
votes
0
answers
9
views
What is the purpose and intended use of "AI Assist" on Stack Overflow? [migrated]
What problems is AI Assist designed to solve for users?
Which types of tasks are appropriate to use AI Assist for, and which should be avoided?
How does AI Assist interact with existing community ...
1
vote
0
answers
11
views
GridDB TimeSeries rejects high-precision TIMESTAMP as primary key
I'm trying to create a TimeSeries container in GridDB with microsecond precision for my timestamp column, but I'm getting schema validation errors.
Problem
When I define a TIMESTAMP with fractional ...
0
votes
0
answers
16
views
Flutter Multipart PUT request: How to send existing image IDs + new images as files while editing event?
I have an Edit Event page in Flutter where all existing event data is prefilled, including images.
Backend API requirements for editing:
Image typeHow to sendExisting imagesAs string IDs (Zoho ...
-1
votes
0
answers
10
views
How can I dispose of a JavaScript Image object [duplicate]
I have several hundred jpg files on my club's website with different resolutions and I'm trying to write some JavaScript to list them. I think I have a problem with disposing of or waiting for the ...
-1
votes
0
answers
27
views
Sidebar functionality without duplicated code
I'm refactoring my website right now, and I'm new to Next.js. All the tutorials I've found online have been super helpful, but something I still don't get is how to set the class name of a div in A....
Advice
0
votes
1
replies
11
views
How to do EXPLAIN ANALYZE a query when query execute on PolarDB IMCI
I want to profiling slow query on PolarDB IMCI, but when I execute EXPLAIN ANALYZE statement, it just return explain result instead of actual profiling result.
0
votes
0
answers
19
views
Virtual method and nested objects [duplicate]
Why is GameNodeImpl.start() called only once? How can I change the code to have the implementation method called twice?
#include <iostream>
#include <list>
using namespace std;
namespace ...