Newest Questions

Filter by
Sorted by
Tagged with
0 votes
0 answers
3 views

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/...
thorax's user avatar
  • 583
0 votes
0 answers
9 views

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 ...
Vertongen's user avatar
  • 185
0 votes
0 answers
16 views

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 ...
Suvethaa's user avatar
0 votes
0 answers
23 views

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('...
Jim's user avatar
  • 63
Best practices
0 votes
0 replies
22 views

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....
Sigurd Garshol's user avatar
0 votes
0 answers
21 views

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: ...
corvus_192's user avatar
Advice
0 votes
1 replies
49 views

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 ...
Jun's user avatar
  • 17
-3 votes
0 answers
35 views

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 ...
Vasyl Vandych's user avatar
-3 votes
0 answers
34 views

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 ...
Justin Chan's user avatar
Advice
0 votes
2 replies
55 views

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 ...
Peyre's user avatar
  • 753
0 votes
1 answer
49 views

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 ...
Kai's user avatar
  • 9
Advice
0 votes
0 replies
44 views

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 ...
NhanTrongNguyen's user avatar
0 votes
0 answers
38 views

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 ...
Japan's user avatar
  • 9
2 votes
1 answer
29 views

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 ...
Kas's user avatar
  • 21
1 vote
0 answers
61 views

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 ...
phinz's user avatar
  • 2,183

15 30 50 per page
1
2 3 4 5
1610377