Newest Questions
24,163,888 questions
Advice
1
vote
3
replies
58
views
Can type bounds/constraints be stored in global variables and later used in generic function definitions with Python 3.14+?
With PEP 649 in Python 3.14+ annotations are lazily evaluated by default, and this led me to wonder if it's acceptable to store type bounds or constraints in a global variable at the module level and ...
1
vote
0
answers
27
views
Expo 55 / React Native: Floating button visibility based on scroll position not updating correctly
I have a screen with a scrollable lesson and two buttons:
A CTA button at the bottom of the content
A floating button that should:
be visible while scrolling
hide when the bottom CTA is visible
...
0
votes
1
answer
39
views
Merriweather Google Font doesn't work with font-stretch
On the Google Fonts page for Merriweather, it shows it has a variable width that you can test on the site. But when I have the font embedded in a site, there is no option:
<!DOCTYPE html>
<...
Advice
0
votes
3
replies
64
views
How many JSON objects can you nestle into each other?
Just started learning JSON with C# and i was wondering how many objects you could nestle into another object?
My best guess would be 255.
Also, is this a common practice in actual websites? I have not ...
Best practices
0
votes
4
replies
69
views
Cron Expression to choose any one day
Is there a Cron expression to run on either 2 or 3 days of the month, e.g.
run once on either 11th, 12th or 13th
0
votes
0
answers
45
views
WinForms / .NETFramework: Format DataGridViewCell according to ValidationResult
Consider a small Winforms application that has a list of custom objects bound to a DataGridView.
The data class:
public class MyAwesomeClass : IDataErrorInfo, INotifyPropertyChanged
{
string _Name;...
0
votes
0
answers
73
views
Errors using Hot Reload (Alt-F10) in Visual Studio after making some changes to the code
Hot reload works for me, but it throws errors after a short period of using it.
I am currently working on a complex ASP.NET solution containing a main website, apis and other auxiliary projects inside ...
0
votes
1
answer
24
views
What is the replacement for useBatchMultiSend in MariaDB Connector/J 3? Trouble with ProxySQL and batched queries
MariaDB Connector/J uses an optimization for batch INSERT / UPDATE statements where it sends multiple Query packets with INSERT / UPDATE statements without waiting for the responses.
However, ProxySQL ...
Best practices
2
votes
1
replies
47
views
Best practices for DTO mapping in jOOQ 3.20 + Kotlin Spring boot Web Apps
I recently started using jOOQ, and I absolutely love it. I really appreciate how intuitive it is writing jOOQ code feels exactly like writing raw MySQL
However, as a beginner, I’m struggling to find ...
0
votes
0
answers
26
views
Accessibility: focus trap not retained within SLDS modal on mobile [closed]
We are using an SLDS modal, and during testing with NVDA on a web browser, the focus trap within the modal works as expected. However, when the application is accessed on mobile devices (Chrome on ...
1
vote
1
answer
45
views
Setting largeSubtitleTextAttributes doesn't do anything
I am trying to customize my navigation title and subtitle in iOS 26. But it seems like setting largeSubtitleTextAttributes on UINavigationBarAppearance doesn't seem to do anything.
So for a view with ...
-3
votes
0
answers
48
views
is there a way to ensure no polyfills are added when building a vite app?
I would like to support latest chrome browser for an internal app (bootstrapped with latest vite/viteplus, rollsdown, oxc etc.) and I can rely on users using an up to date version of chrome / chromium ...
Advice
0
votes
1
replies
51
views
Object Look-up in JS Doesn't Work with WebGL2RenderingContext API Constants
For debug purposes in JS I decided to create a set of integer->string look-up tables which would allow me to re-interpret WebGL system constants back with their symbolic names. I used the "...
-6
votes
0
answers
42
views
How to generate refresh tokens with Linkedin App [closed]
We use the Linkedin API to post articles. For this, we have created a developer app and are able to retrieve the access token by making a POST request to https://www.linkedin.com/oauth/v2/accessToken. ...
1
vote
1
answer
54
views
How do I implement ECDSA with a P256 curve, so that I can verify a signature in python?
I've been playing around with cryptography and using elliptic curve cryptography for digital signatures. I've been signing data in javacard, then transmitting the signed data, original data and W (the ...