Newest Questions
24,190,747 questions
0
votes
0
answers
1
view
why nextjs is sending async prop from a component to a suspended child component
import {Suspense} from "react"
type Props = {
params: Promise<{joblistingId: string }>
}
export default function JoblistingPage(props: Props) {
return (
<...
0
votes
0
answers
3
views
The problem of using Redis stack vector database in Spring AI
I'm trying to create an AI chat robot to enrich my resume. The framework uses spring ai, and the vector database uses redis stack. My current idea is that users upload documents such as pdf and word. ...
0
votes
0
answers
6
views
See the query ssent to SQL Server
StackOverflow,
Is there a way to check SQL Server logs to see what query is sent to the server?
I have a query that fails to execute with the error Incorrect syntax near @P2.
The query is SELECT name ...
0
votes
0
answers
4
views
App Store Connect app stuck in “In Review” for more than 2 weeks — expedite and resubmission didn’t work
I have an app that has been stuck in the “In Review” stage for over 2 weeks on App Store Connect. Normally, my reviews take 24–48 hours, but this time it never progresses.
Here’s what I have already ...
1
vote
0
answers
16
views
CORS error: “Permission was denied for this request to access the unknown address space” only inside office network (Chrome PNA block?)
Question
I’m dealing with a CORS issue that only occurs inside my company’s office network.
When accessing the same application from any external network, everything works perfectly.
Setup
Frontend: ...
0
votes
0
answers
11
views
Audio captions are not displaying despite switching to SRT
I've been attempting to create captions for my audio. After a lot of searching, it seems srt is best for audio transcripts. After trying that and WebVTT, it's still not showing up. I'm not sure what ...
0
votes
0
answers
12
views
Solr 9.9.0 getting slow when there is high load
I'm using Solr 9.9.0, and I recently increased the server RAM from 16 GB to 32 GB, as well as the JVM heap memory to 16 GB. The issue I'm facing is that under high load, both the Solr 9.9.0 UI ...
0
votes
1
answer
21
views
compare_exchange_strong failed to update the expected value
I am trying to implement a lock-free multiple-producer-single-consumer ring buffer in C++. Here is the full definition and the test code.
template<typename T>
class RingBuffer
{
public:
...
0
votes
0
answers
19
views
Oracle Apex - How to Restrict Developer Access to Specific Applications in the Same Workspace?
I have a workspace named DEV that contains two schemas: ADMIN and DEV_1.
Inside this workspace, I also have two developer accounts:
DEV_1 (developer)
DEV_2 (developer)
And I have two applications:
...
0
votes
1
answer
21
views
How to change locale for a vbs script?
I have a simple zip extracting vbs which I found on another stackoverflow page and used it
ZipFile="%CD%\file.zip"
ExtractTo="%CD%"
set objShell = CreateObject("Shell....
0
votes
0
answers
13
views
RStudio error message said ggplot data is too long for aesthetic
I was meddling with R programming and trying to graph distribution of 2 variables in a data frame. However, the code gave me the warning:
G2;H2;Warningh in geom_density(adjust = 1, alpha = 0.5) : [38;...
0
votes
0
answers
16
views
Return each unique combination from 2 columns and return other information from the same row
I have a tool I am working on using the latest version of Excel (whatever it is) and I have a table which looks like this:
I want to take each unique combination of values from the Code and POBox ...
0
votes
1
answer
24
views
How to create a dictionary in Zig?
Is there a Zig equivalent of a C# Dictionary or a Java Map or a Go map that stores key/value pairs in a structured way? If so, how do I create one?
0
votes
0
answers
32
views
Which window can I passing a `WM_SYSCOMMAND` to carry out system commands?
An application can carry out any system command at any time by passing a WM_SYSCOMMAND message to DefWindowProc.
If I don't have any windows, which window can I post/send WM_SYSCOMMAND to carry out ...
0
votes
0
answers
18
views
Extracting free spaces from a occupancy grid map in the MATLAB
How can I extract free spaces from a occupancy grid map in the MATLAB. I have the following code which gave the output that there is no free cell on the occupancy grid map.
clc;
clear;
close all;
rng(...
0
votes
2
answers
27
views
How to increase space between an ordered list item''s marker and content whilst using list-style-position: inside?
I have an ordered list (<ol>).
<div class="wrapper">
<ol>
<li>List item</li>
</ol>
</div>
I'd like to remove the indent of the <ol> ...
0
votes
0
answers
18
views
what causes geometry to be corrupted in the viewport like this after loading/meshletizing sponza.gltf? (DX12_2)
video: https://drive.google.com/file/d/1ZOL9rXo6wNLwWAu_yjkk_Gjg1BikT7E9/view?usp=sharing
I moved the camera to show culling in all four directions
sponza: https://github.com/toji/sponza-optimized
GPU ...
0
votes
0
answers
41
views
How to make npm global packages use absolute symlinks instead of relative symlinks?
I'm using npm with a custom global prefix:
npm config set prefix ~/.local
When I install global packages, e.g.:
npm install -g yo pagedjs-cli asciidoctor-pdf yo generator-code
npm creates relative ...
0
votes
0
answers
33
views
Liquid Glass UINavigationBar's UIBarButtonItem Coloring
I have a UINavigationBar with 3 UIBarButtonItems on a background that can be different colors. Liquid Glass gives these buttons a very light not very clear background color, ruining the aesthetic. ...
0
votes
0
answers
12
views
Error in Pod Update while building in Azure DevOps Pipeline for React Native
I'm setting up an Azure pipeline for a React Native project, but I'm running into an error during the Pod update step. Does anyone know what changes I might need to make in the Podfile, the YAML ...
0
votes
1
answer
26
views
Install additional package in an existing virtual environment created by pipenv
I currently have a base conda environment and a (virtual) environment called Work-8uAjguag that was created with pipenv.
Now I want to install a package (say openpyxl) in the environment Work-8uAjguag....
0
votes
0
answers
20
views
Pydantic v2 ignores variable in .env for nested model
While working on my project I encountered a problem that can be reproduced by the following minimal example.
# main.py
from .settings import app_settings
if __name__ == "__main__":
...
0
votes
0
answers
50
views
Where in their documents do implementations state they won't reorder black-box functions?
Consider this example:
extern void black_box_foo();
extern void black_box_bar();
int main(){
black_box_foo(); // #1
black_box_bar(); // #2
}
#1 and #2 are functions whose definitions are ...
1
vote
1
answer
23
views
Build a rust doc test from multiple snippets in the same comment
Suppose I want to write a doc comment such as this:
//! This type can be used to write a function such as:
//! ```
//! fn example() -> MyType { ... }
//! ```
//! Then the function can be used as:
//...
0
votes
0
answers
20
views
Tailwind CSS directives (@tailwind base) underlined as unknown in VS Code with Next.js project
I'm working on a Next.js 16 project and trying to set up Tailwind CSS v4. I installed Tailwind via npm:
npm install -D tailwindcss postcss autoprefixer
I also created the following config files ...
-2
votes
0
answers
48
views
I am trying to solve a codeforces problem but can't even compile [closed]
my input code:
#include <bits/stdc++.h>
using namespace std;
int main() {
int x,y;
cin >> x >>y;
int sum,mul,sub;
cin >> sum >> mul >> sub;
...
0
votes
0
answers
14
views
How to translate CI to IC of the header of a in gtsummary table?
How to translate CI to IC (brazilian portuguese) of the header of a gtsummary table? Using theme_gtsummary_language() function, it doesn't work. I tried the modify_header() function too, but doesn't ...
0
votes
0
answers
17
views
Plotly Choropleth not showing with Geopandas
I've seen this issue come up in other pages but none of their solutions worked for me.
import plotly.express as px
import geopandas as gpd
import cartopy.crs as ccrs
regions = gpd.read_file("...
0
votes
0
answers
26
views
Django channels tutorial issue
As I am following the Django channels tutorial (here is the link:
https://channels.readthedocs.io/en/latest/tutorial/part_2.html
), I won't post any code except the specific problem I am having.
In my ...
0
votes
0
answers
11
views
Compatibility between streamlit and protobuf
I am unable to use the print(tf.version.VERSION) to check the tensorflow version. Reason being tensorflow looks for runtime_version in protobuf ( from what I have learnt) and that is only supported ...
0
votes
0
answers
12
views
Bun + Express on Vercel: How to Modularize Routes from Separate Files?
I'm deploying a Bun + Express application to Vercel. Locally, my Express app works perfectly with routes defined in separate files and imported into index.ts. However, on Vercel, the deployment ...
0
votes
0
answers
13
views
Critical notifications sound not playing OneSignal - ios
I'm having issue that notifications sounds doesn't play, specially for critical notifications i'm using react native.
i already have entitlement and approval from apple
i have the sound file .wav 3 ...
0
votes
0
answers
19
views
How can I create clouds in THREE.js?
I'm not asking anyone to build me anything; I'm mainly focused on how this is normally done. If anyone already has something built that they'd like to show me how they did it, then that would be great....
0
votes
0
answers
10
views
Unable to show line on Combined Bar and Line chart on React native Gifted charts
I want to implement a combined Bar and Line chart with Gifted charts.
I followed all the required steps from the documentation but it still doesn't work. It displays the bar chart but skips the line ...
0
votes
1
answer
44
views
How to move background while scrolling the page?
I`m just trying to figure out how to do a scroll effect. When background is moving with scroll, while you are on a certain block of the site. I tried something like this, but i feel wrong in here)
...
Best practices
0
votes
0
replies
11
views
AWS sagemaker Model Registry Vs. MLflow
On the AWS environment, what do you suggest: Sagemaker Model Registry or MLFlow?
If we want to use grid search to experiment with different configurations and log all experiments to then decide which ...
-2
votes
0
answers
15
views
how to deploy multi containers to an endpoint on AWS Sagemaker?
How to develop a deployment pipeline that deploys multiple containers to an endpoint (MCE) on AWS Sagemaker?
I need Python code or steps to set up in the AWS console.
Advice
0
votes
0
replies
23
views
How to Delete an IP from a Cloudflare IP list in Go?
How do you delete a single item from an IP list in Cloudflare using Go?
Cloudflare has a feature where it stores lists of IPs, hostnames, or ASNs to be used in formulas. The web UI for this is in ...
2
votes
1
answer
65
views
Trying to learn how getchar works
I am encountering a problem inside a while loop that is embedded in a for loop iterating through a struct of arrays. The issues I am coming across is before the array iterates again, I want to have ...
0
votes
0
answers
17
views
Is the hash for a Git submodule associated with the section key or with the path?
I'm doing something with git-filter-repo that is like the convert-svnexternals script here:
https://github.com/newren/git-filter-repo/blob/main/contrib/filter-repo-demos/convert-svnexternals
In that ...
1
vote
1
answer
23
views
Creating Materialized view in PG 17 ignores data types in SELECT
I have the following SQL generated by Atlas to create a materialized view and the SQL seems reasonable to me but it's unclear from Postgres docs what should happen in this case. I am listing the ...
0
votes
0
answers
13
views
How to dynamically create and data-bind ComboBox in code?
In my Avalonia app using the MVVM Community Toolkit, I need to dynamically create a ComboBox from code-behind, having it data-bound to a collection of a subclass of a class that encapsulates ...
0
votes
1
answer
23
views
Compare table meta across servers ignoring column order in KDB
I need to compare the schema (meta) of a table that exists on two different servers in kdb+. On Server A, the table has columns in order col1; col2; col3, and on Server B, the same table has columns ...
0
votes
0
answers
13
views
SSRS - access column group values in row
I am working this SSRS report. This is a count of how many holidays staff have worked over a supplied date range. The report is "Row Grouped" with Officer name. It is also "Column ...
1
vote
2
answers
43
views
How to check if two cells in the same column contain matching text in Excel?
Is there an Excel formula that can detect whether two cells in the same column contain similar or partially matching text?
For example:
F3 contains: "regulation BI, how to stop exploitation"...
0
votes
0
answers
17
views
How to enforce "linux/amd64" platform architecture in Visual Studio Code Dev Containers for Podman on Apple Silicon?
Environment
Host: macOS (Apple Silicon M1)
Container Engine: Podman (via podman-machine)
Extension: VS Code Dev Containers
Target Image: A private registry image with Poetry
Problem
When I try to ...
-2
votes
0
answers
13
views
AI effect on StackOverflow [migrated]
I would like to know how much the advent of AI tools like chatGpt and many other affected the usage of stackoverflow!
Before it was a holy place for developers right. How much did AI effect the ...
0
votes
0
answers
12
views
Message queue where each key is processed by only one consumer at a time, but other messages for the same key can be assigned to other consumers
I'm building a distributed system that processes messages from hundreds of thousands of sensors, each identified by a sensor_id.
I need to guarantee:
Strict ordering per sensor_id
No two consumers ...
0
votes
1
answer
59
views
Possible bug in gcc11 parsing include paths?
With gcc11 (11.3.1) I'm seeing a strange behavior where it seems that -idirafter path takes precedence over -iquote path if path is the same for both options.
Consider:
// test/foo.hpp
#pragma once
...
-2
votes
0
answers
37
views
Why is only my MySQL client on Windows 11 slow?
I have a brand new computer with Windows 11 and I am facing a performance issue with MySQL I do not know how to fix.
The MySQL server is running on a remote Linux and the problem is that my Windows ...