Newest Questions
24,161,607 questions
0
votes
0
answers
9
views
LNK2001: IID_ID3D11ShaderReflection
I have been attempting to resolve this issue: Error LNK2001 unresolved external symbol IID_ID3D11ShaderReflection DirectX11 C:\<..>\DX11ShaderReflection.obj 1 for quite some time now within the ...
-4
votes
0
answers
22
views
BCB32 ver.6 bug
Could someone please verify this bug in BCC32.EXE 6.16.0.33 (CodeGear™ RAD Studio 2009 Version 12.0.3170.16989):
typedef struct{
__int64 i;
} S;
void foo(){
S s={0I64}, *p=&s;
p->i <&...
-1
votes
1
answer
16
views
How to determine symbolic relationship between different variables (rather than concrete values)
I need a way to determine programmatically the symbolic relationship between variables in an equation
For example, forall x, given 3ax - bx = 0, I want to determine that b must be equal to 3a. When I ...
Advice
0
votes
1
replies
11
views
ankerl's dense map is slower than std::unordered_map?
Lately I've been running into some performance Issues with std's unordered_map, I use it mainly for hash wise lookup, e.g:
std::unordered_map<uint64_t, mpark::variant<int32_t, float>>
...
0
votes
0
answers
26
views
How to trace why a test is being skipped?
I'm working with a large unfamiliar codebase. The tests are written in unittest and run by pytest. I've tried adding a new test based on an existing test but it's being skipped:
Running pytest with ...
0
votes
0
answers
28
views
How to use of thunks with useContext/history/location in React/Redux
I am currently working on an application that has a large amount of duplicated logic shared across its components. One of the primary reasons for this is the components are using a Context component ...
Tooling
0
votes
2
replies
18
views
Modular monolith vs microservices for ERP system with multiple business modules
I’m designing a custom ERP system that includes multiple modules such as inventory management, accounting, HR/payroll, and CRM.
My goal is to build a system that is scalable, maintainable, and can ...
Advice
0
votes
1
replies
27
views
How to publish a bug and its fix on Stack Overflow?
I am French and I am not very familiar with Stack Overflow's customs and practices. So, please excuse my poor English.
My question might seem naive and silly, but thank you in advance for your ...
Best practices
0
votes
0
replies
15
views
Using @fastify/rate-limit twice in the same plugin
I want two rate-limit layers in one Fastify plugin: one at 'onRequest' using IP and one at 'preHandler' using user.id. Both are registered in the same plugin. Is this safe? Is there a better way to do ...
Advice
0
votes
2
replies
32
views
API in Python, or any other programming language
A merchant who specializes in selling mobile phones and 4G modems has asked me to develop a program for him to check whether his modems have been activated or not. In other words, as soon as a modem ...
-1
votes
1
answer
22
views
Images aren't uploaded in my table despite them seemingly being added in the view. Keeps showing the default image in view
@using (Html.BeginForm("SpremiPodatke", "Zaposleni", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<div>
<span>Slika</span>
...
Tooling
0
votes
4
replies
30
views
Which services are typically required to scale a LAMP stack for high-traffic production environments?
I am designing a LAMP-based application expected to handle high concurrent traffic (e.g., thousands of requests per minute). The core stack includes Linux, Apache, MySQL, and PHP.
Based on documented ...
1
vote
0
answers
20
views
Modin + Dask distributed: AttributeError: type object 'ABCMeta' has no attribute 'deploy_axis_func'
I'm trying to use Modin with a Dask LocalCluster to parallelize pandas DataFrame operations in a Django application (Python 3.13). Even with processes=False (thread-based workers, same process), the ...
0
votes
0
answers
36
views
Getting an java.io.IOException: The parameter is incorrect when trying to read/write to a disk partition
I am trying to read/write chunks bytes on a disk partition (lettered W). However, when I try to use a RandomAccessFile to do this, it always tells me that my parameter is incorrect on the line reading ...
-1
votes
1
answer
27
views
Launch Chrome Debug session from VSCode with Signed-in chrome Account in 2026
How to launch a Chrome instance from VSCode for debugging that has my account config (Google profile, plugins, etc.)?
If I add the standard launch config, it opens a 'gutted' chrome version. But I ...