Newest Questions
24,188,459 questions
0
votes
0
answers
6
views
React Compiler: Component shows as memoized in DevTools but still re-renders
I'm facing an issue with the React Compiler auto-memo.
React DevTools shows that Test2 is memoized (sparkle icon), but console.log still runs on every render.
import { useState } from "react"...
0
votes
0
answers
13
views
PCM audio data strange values in NAudio
I want to make an application that reads out the db values from a microphone. For that I use NAudio to "record" a WaveIn stream, convert the Data to samples, get the max of each buffer, ...
-2
votes
0
answers
16
views
Copying the Existing self-hosted developer portal to a different repository with different APIM
I am trying to copy the existing self-hosted developer portal to a different repository with different APIM.
We will be having different portals, one is for internal users and another one is for ...
-1
votes
0
answers
19
views
Cannot run my PHP Apache PHP-FPM website locally on MacOS because of weird ObjectiveC error: objc[1495]: +[NSPlaceholderString initialize]
This issue recently popped up after a macOS update probably Tahoe 26 but when I try to request a page of my website that uses Homebrew Apache PHP-FPM Memcached with PostgreSQL and PHP 8.4 files on OSX ...
-4
votes
0
answers
30
views
I'm confused with my college projects I need some suggestions [closed]
I'm a CSE AI & ML Student and want to work on some real life problems I'm already working on IOT Helmet and I need more suggestions related to my branch , any ideas....
1
vote
0
answers
22
views
Why does the "$" operator not run when using the unique() function while trying to extract a specific variable from a dataset
I am trying to run a for loop that will extract variables from two different datasets into one data frame. One dataset contains information on estuaries of the West Coast of North America, the other ...
0
votes
1
answer
18
views
Mesibo SDK adds READ_MEDIA_IMAGES / READ_MEDIA_VIDEO causing Google Play rejection
I’m using the Mesibo SDK for video and voice calls in my Android app.
My own AndroidManifest.xml does not include any media permissions.I only use:
<uses-permission android:name="android....
0
votes
0
answers
11
views
Is native vector search (like HNSW index) available in PolarDB 8.0.2 or only in PolarDB IMCI?
I've been reading recent announcements about Alibaba Cloud adding native vector search capabilities to PolarDB. However, I'm getting confused about which version or distribution this applies to.
I am ...
0
votes
0
answers
17
views
VTK rendering window doesn't display
I have recently tried installing VTK 9.5 on Ubuntu 24.04 from source (latest .tar.gz release) but when I compile a really simple example code the window doesn't show up. I would like my vtk ...
1
vote
0
answers
19
views
Passing a argument to a mediawiki template
I have a page on my wiki that contains:
{{MyBox1
|header=Under Construction
}}
and a template called MyBox1 that contains:
<includeonly>
[[Category:{{{status|Unknown status}}} developments]]
{{#...
0
votes
0
answers
14
views
Navigation BarButtonItem color changed in some screens
The minimum target of my app is iOS 26, and used default navigation bar with buttons throughout the app. Since iOS 26, I’ve noticed that the UIBarButtonItem text color changes on some screens. Earlier,...
1
vote
1
answer
15
views
Rust clap, how to disable terminal log
Code
#[derive(Parser, Debug)]
#[command(version = "1.0.0", about, long_about = "Long About")]
pub struct Args {
#[command(subcommand)]
commands: Option<SubCommands>,
...
-1
votes
1
answer
37
views
Cursor AI Agent sometimes applies code changes automatically without showing the “Keep” or “Undo” options
I’m using the AI Agent in Cursor (the IDE), and I’m running into an inconsistent issue when it suggests code changes.
Most of the time, the agent shows the usual interface where I can review the ...
0
votes
0
answers
16
views
How to Efficiently Test V2Ray/Xray Configs in Android App Using libv2ray?
I'm developing an Android VPN app that fetches and tests V2Ray/Xray proxy configurations. I need to find working servers quickly, but my current implementation using libv2ray.measureOutboundDelay() is ...
0
votes
0
answers
36
views
How to verify a possible execution is OOTA?
Consider this example:
#include <thread>
#include <atomic>
int main(){
std::atomic<int> x = 0, y = 0;
auto t1 = std::thread([&](){
if(x.load(std::memory_order::relaxed)==...