Newest Questions
24,166,347 questions
0
votes
0
answers
2
views
PendingModelChangesWarning When Starting API in Docker Container
I have a .NET9 Web API and database in SQL Server. I'm trying to run them in containers and have the API connect to the DB. I have been developing this locally for a while and everything is fine there....
Tooling
0
votes
0
replies
4
views
Broadcasting list of pytrees with each other without knowing the prefix a priori
I want to broadcast a list of jax pytrees with each other, where it is assumed that one pytree is the prefix for all others (but we don't know which pytree is the prefix in advance).
The solution I ...
Advice
0
votes
0
replies
13
views
New web platform idea
I have an idea for a web platform along the lines of Airbnb/Uber but totally unrelated. It will benefit millions of people in many ways. But I know nothing about web development. Is anyone willing to ...
-4
votes
1
answer
27
views
Logoipsum stacking over each other in my website [closed]
I had an issue while working on a wordpress website which is that when i applied the astra theme and built a page with it, then when i open the site "even in incognito" it shows me some ...
-2
votes
2
answers
43
views
File stuck in a staging area
C:\Users\Igor\OneDrive\Documents\dbhandler_app [master ≡ +1 ~2 -0 | +22 ~1 -0 !]> git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "...
Advice
1
vote
0
replies
34
views
Are there better algorithms for computing list similarity that this one I wrote, or corrections?
I am trying to find the best matches to a complete human name in a PDF. I'm parsing the PDF using pdfplumber with a sliding window the size of the number of words in the target name.
Let's say the ...
0
votes
0
answers
11
views
Is there an equivalent of ICU4J's PersonNameFormatter in ICU4C?
I'm working on a Qt6/C++20 application that needs to handle localization. So far, we've gotten away with using Qt's build in localization; however, we want to add person names to our UI, with proper ...
0
votes
0
answers
15
views
Flutter, C# API, Dates & Timezones
I can't seem to find a definitive approach to this problem, lots of options, and pros/cons.
I have a medical app written in Flutter which captures the date and time a procedure was performed. The ...
Best practices
0
votes
0
replies
16
views
Looking for Easier Ways to Manage Data Objects with Value-Based Minimum Distribution Requirements
Idea
I want to take a relatively large cache of data (108k items, 80 data points per item) and sift through it to grab items at semi-random and generate small pools of items. Each of the pools need to ...
0
votes
0
answers
23
views
Get the corresponding name of the max of a group of summed values
I have a table in Power BI in the following format:
I am currently learning how to use the software (and DAX) as I go and I have been trying to figure out if it is possible to get the course that has ...
-1
votes
1
answer
37
views
Sort data in BigQuery using order
I am learning BigQuery in Coursera. I am trying to sort a table but I am confused about how to use ORDER BY.
My table has columns like name and age. I want to sort the age from highest to lowest. What ...
Advice
0
votes
0
replies
11
views
How to toggle icon/image of Bootstrap button with jQuery and data attributes?
I have this button that toggles it's text from "Show more..." to "Show less..." whenever it's clicked:
<button
class="btn btn-sm btn-secondary"
title="...
0
votes
0
answers
22
views
How to force a specific field order in JSON output using Jackson? [duplicate]
I need my JSON output to show the "idTransanction" and "details" fields first for logging purposes. Currently, Jackson alphabeticalizes them or follows a random order. Is there an ...
0
votes
0
answers
20
views
Handle leak when using WScript.Shell / FileSystemObject via COM automation (Windows Server 2022)
I am investigating a possible handle leak related to Windows COM objects used from a third-party application.
The application (Elipse E3 SCADA) runs VBScript code that instantiates Windows COM objects,...
Best practices
0
votes
0
replies
16
views
Provenance of pointer fields of structs obtained from `std::ptr::read` over a buffer coming from the C FFI
I think I've kind of understood provenance (maybe not), but all the documentation I find talks about going from/to pointers and usize. But what about [u8; N] ?
Specifically, suppose I have this code:
#...