Skip to main content
3 votes
0 answers
69 views

I have an app getting metadata from a list of songs using TagLib. It first gets the song id via MediaStore, and send fd to TagLib which dups it and uses it to open a stream to get the metadata and ...
Godhandcrusher's user avatar
Best practices
1 vote
2 replies
72 views

Let's say I have a table with many many rows: <ul> <tr> <td>column1</td><td>column2</td><td>column3</td><td>column4</td> <td>...
user3803848's user avatar
Advice
0 votes
1 replies
79 views

In my android application, there is a 4X4 board for 2 player and 4 play buttons together. One board square is made of one stack each. And there is 5-7 layers to several widgets on one stack depending ...
Tuomas's user avatar
  • 169
Best practices
2 votes
4 replies
59 views

I have a code in Fortran that needs to permute a big array (can contain over million of elements). The code is used for scientific calculations so every ounce of performance that can be squeezed out ...
Luca's user avatar
  • 1
3 votes
1 answer
116 views

I am writing a query where the user can enter a comma(,) separated value which would be used as an AND condition on a single column - lets say address - for refined search. For example: /** * Search: ...
Mr.Singh's user avatar
  • 2,087
7 votes
1 answer
271 views

Let's say I call a memory barrier like: std::atomic_thread_fence(std::memory_order_seq_cst); From the documentation I read that this implement strong ordering among all cores, even for non atomic ...
Mascarpone's user avatar
  • 2,666
1 vote
0 answers
58 views

I am experiencing ANR(APP not Responding) issues after updating my Android game on the Play Store. The issue occurs primarily on low-end devices. The game is built using Unity, and the same codebase ...
Faheem's user avatar
  • 1
2 votes
4 answers
139 views

I have 2 arrays 2d and I would like to compare both and count the common values between them, for instance here is my code: import numpy as np def f_m_common(V_R, V_A): r = len(V_A) c = len(...
Loro's user avatar
  • 21
1 vote
1 answer
123 views

In jax, you can donate a function argument to save the execute memory and time, if this argument is not used any more. If you know that one of the inputs is not needed after the computation, and if ...
zhixin's user avatar
  • 194
0 votes
0 answers
17 views

Reduce latency metric looks incorrect for binding pull requests in Milvus While monitoring Milvus performance metrics, I noticed something unexpected related to binding pull requests. Specifically, ...
Veli Kıyak's user avatar
0 votes
0 answers
25 views

Read requests fail or experience latency spikes when loading a bulk-inserted collection and switching alias in Milvus I’m running a Milvus cluster (v2.5.x) on Kubernetes (EKS) using milvus-operator, ...
Derya Coşkun's user avatar
Advice
0 votes
10 replies
88 views

In this MathOverflow question, I made a conjecture about the greatest common divisor of Faulhaber polynomials. In that question, I considered the Faulhaber polynomials F_n(x), defined by F_n(x) = 1^n +...
pie's user avatar
  • 127
1 vote
1 answer
148 views

using System.Diagnostics; const int TASKS = 100; var mainSw = Stopwatch.StartNew(); var tasks = Enumerable.Range(0, TASKS).Select(i => Task.Run(async () => { await Task.Delay(...
yuri's user avatar
  • 29
2 votes
2 answers
167 views

This query uses my indexes according to the plan, however, they do not give any increase in query execution speed. Absolutely. I've tried a wide variety of indexes, but none have helped. I've ...
Versst's user avatar
  • 31
Best practices
1 vote
3 replies
68 views

Whilst this question has been asked many times before there are seldom recommendation on it with modern browsers in 2025. Example: Total CSS for a website is 200kb. Total JS is 100kb. We know the ...
Walrus's user avatar
  • 20.6k

15 30 50 per page
1
2 3 4 5
6851