Newest Questions
24,155,647 questions
0
votes
0
answers
3
views
MSAL login with Developer ID signed macOS app
I would like to have MSAL login fully working in a Developer ID signed macOS application.
I am using the following library for adding MSAL support to my macOS app : https://github.com/AzureAD/...
0
votes
0
answers
9
views
Gradle multi-module can't compile because class file for `javafx.stage.Stage` is not found
I am setting up a Gradle 9.5.0 multi-module project with Java 25. In this project I am using Spring Boot 4.0.5 and JavaFX 26.0.1. I have set spring.main.web-application-type: none because I am ...
0
votes
0
answers
16
views
Ag-grid Accessibility
We are using AG Grid in an Angular enterprise application with sorting, filtering, selection, and custom cell renderers.
The client expectation is that the grid should still visually resemble a table ...
0
votes
0
answers
23
views
Laravel returns 404 on route
I have a simple route area for a gallery:
use App\Http\Controllers\GalleryController;
Route::controller(GalleryController::class)->group(function() {
Route::get('gallery', 'index')->name('...
Best practices
0
votes
0
replies
22
views
Swap out a low-level dependency
I'm using .Net 10 ServiceCollection for building my dependency graph, which in my Startup class looks something like this:
services.AddSingleton<IDataWriter, FileDataWriter>();
services....
0
votes
0
answers
21
views
Combining type predicate with assertion function
I'm using ajv to validate an object against a JSON schema. The minimized code looks like this:
interface ValidateFunction<T = unknown> {
(data: unknown): data is T;
}
declare const test: ...
Advice
0
votes
1
replies
49
views
How to Publish an App to Google Play Store for free
I have an app to publish to Google Play Store. This app is a e-commerce app, which is for my own bussiness. For popularity and trust reaosns, I start to think that my app should be published on Google ...
-3
votes
0
answers
35
views
How to change setting_id start from 1 again in Opencart 3?
After deleting some unused multistores, have a settings_id for each store not in row like 107,220,1300
if i use
ALTER TABLE oc_setting AUTO_INCREMENT = 1;
its will good for Opencart or i will make ...
-3
votes
0
answers
34
views
How to grant users access to the Internet for Aruba Instant On (External Captive Portal with Guest Portal Acknowledgement)? [closed]
I currently have a custom Wi-Fi login page for Aruba Instant On (External Captive Portal with Guest Portal Acknowledgement). My problem now is that I don't know how I can grant users access to the ...
Advice
0
votes
2
replies
55
views
get or set inexistant properties of Powershell object
In Powershell, if I create a Hashtable I can get/set values via pseudo properties
$h = @{ }
$h.a
# returns $null
# add a key/value with key 'a'
$h.a = 'abc'
$h.a
# returns 'abc'
This is not limited ...
0
votes
1
answer
49
views
Why does my pandas groupby() result not show total sales by product correctly?
I have a DataFrame with three columns: product, quantity, and price. I want to create a new column called sales, then group the data by product and calculate the total sales for each product.
Here is ...
Advice
0
votes
0
replies
44
views
How to prevent race condition in Java auction system with JDBC transactions?
I am building an auction system in Java using JDBC (no framework).
When multiple users try to place bids or buy-now at the same time, I need to ensure:
- no double spending of user balance
- no double ...
0
votes
0
answers
38
views
Are VS Code Copilot Agent Debug Log Token Counts the Exact Billing Metrics? [closed]
I was checking the Agent Debug Logs in VS Code for a GitHub Copilot Chat session and saw metrics.I Would like to understand whether the numbers shown here are authoritative for usage-based billing ...
2
votes
1
answer
29
views
Oracle driver. Problem with JdbcTemplate query timeout
I set query timeout 10s and execute query with JdbcTemplate.query(...):
with function sleep (seconds NUMBER)
return number is
begin
dbms_session.sleep(seconds);
return 1;
end;
SELECT sleep(10) FROM ...
1
vote
0
answers
61
views
`std::optional` constructor prevents conversion operator
I want to write a wrapper for nullable database entries that can convert to the underlying types but also to std::optional of these types if the held value is NULL. However the optional conversion ...