Newest Questions
24,189,551 questions
- Bountied 11
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
2
views
maximising performance HDR AV1 on old hardware
I'm using an old Mac mini (i7 26xx, 4 cores with integrated graphics, i915 driver) as a media player using Ubuntu 24.04 on wayland and MPV.
This setup is old but more than enough for 1080 and most 4k ...
-5
votes
0
answers
15
views
npmai- Please review it by using go to this website to know more:-https://pypi.org/project/npmai/
Please review this library i deployed i am 14 year old python developer who deployed this modele:-npmai("https://pypi.org/project/npmai")
url="https://pypi.org/project/npmai/"
and ...
0
votes
0
answers
11
views
How to drop exemplars from InfluxDB exporter? (Reducing cardinality)
We're experiencing performance issues on our InfluxDB instances in AWS - they're receiving metrics from our Open Telemetry pipeline. Ultimately span_id and trace_id are the leading culprits in terms ...
0
votes
0
answers
44
views
Accessing object storage
Are buf and *p objects alive at the same time in the code below?
struct S { int x; char c; };
alignas(S) char buf[sizeof(S)];
S* p = new(buf) S{};
p->x = 10;
p->c = 'a';
std::cout << p-&...
-3
votes
0
answers
18
views
NodeRed + Python best practices [closed]
I want to automatize analytical processes in my department. Mostly we use Excel + OLAP cube + MS SSAS. Sometimes Access and some other data sources.
Examples: auto-refresh of reports, data quality ...
Advice
0
votes
0
replies
18
views
Lightweight Spring Boot Setup for Beginners: Zed editor
I am new to Java and starting with Spring Boot development. I prefer using lightweight code editors like Zed, Lite-XL and Helix and want to avoid the high resource usage and complexity of full IDEs (...
-3
votes
0
answers
24
views
Favicon not displayed in a google search [closed]
I've changed the favicon of a typo3 11.5.41 site a month ago: it's a 48x48 color png named favicon.ico.
The display on a browser is OK but sadly it doesn't appear after a google search when the site ...
Advice
0
votes
0
replies
24
views
How to convert a color string (hex or named color) to Color in Flutter?
I have a string in Flutter that represents a color. The string can be:
A hexadecimal color code like #FFFFFF or #000000
A named color like "white", "black", "red"
I ...
0
votes
0
answers
22
views
does database chunk() have a memory leak?
In laravel, I have a query that searches thousands of rows in a database, and I trying to compile that into a CSV file. In attempt to reduce memory usage, I get 500 rows at a time and output the CSV.
...
0
votes
2
answers
24
views
Tailwind dark mode classes not working even though .dark class is applied
I’m trying to implement dark mode in my Next.js app using Tailwind CSS.
However, Tailwind’s dark: classes are not being applied, even when the .dark class is present on the <html> tag.
global....
0
votes
0
answers
8
views
Unable to expand data tip in visual studio 2022 (version 17.14.21)
am unable to expand the data; it shows the image below. Even though I enabled the data tip expansion option, I still cannot expand it. Is there any issue or additional changes I need to make? ...
0
votes
0
answers
17
views
Duplicated JSON object ReplaceText processor in Apache Nifi
Currently trying to format the error I receive on an invalid schema from ValidateJson processor I end up with 2 JSON objects instead of 1
example:
{
"validation_errors": [$.sheets[
...
0
votes
0
answers
18
views
Monitor `asyncio.create_subprocess_exec` pipes for errors
I am trying to pipe multiple Linux commands and abort if there is an error. With Popen the communicate() method waits for all commands to finish. This is why I am trying asyncio now.
I have the ...
0
votes
0
answers
18
views
How to make my Flutter (SDK 3.10) app and dependencies compatible with a "16 KB page size" limit (can't upgrade SDK)?
Goal
I need a clear, step-by-step process I can follow to make the app + dependencies compatible with that 16 KB page-size constraint without upgrading Flutter SDK. I am looking for concrete actions I ...
0
votes
0
answers
19
views
Dapper Query with Parameter not holding temp table in subsequent query
I have C# code that executes a Dapper Query, creates a temporary table, and uses a parameter to pass a value. In a subsequent query temp table is not available and will throw an error 'Invalid object ...