24,224,762 questions
0
votes
0
answers
4
views
Cypress not receiving push notifications that typically work in Chrome
Overview
I have a Quasar application setup with InjectManifest (and Vite, if that matters) for access to custom service workers. When running Quasar normally (PWA mode), push messages are receieved ...
0
votes
1
answer
9
views
My while loop is not running smoothly, where did i go wrong?
// NUMBER GUESSING GAME
// Html dom elements to work with
const rollBtn = document.getElementById("rollBtn");
let guess = document.getElementById("guess");
let display = document.getElementById("...
0
votes
0
answers
10
views
ZeroEvenOdd problem with synchronized key, wait and notify
Program is continue running after printing the data in a correct order.
SynchronizedResource class is responsible to print the data using correct order. It is printing data in correct order but ...
0
votes
0
answers
8
views
How can I record a user’s screen on a mobile device in the browser?
I’m building a web application that needs to capture and save a user’s screen recording on their phone. On desktop browsers I can use:
if (navigator.mediaDevices && navigator.mediaDevices....
0
votes
0
answers
3
views
How to keep session alive in a React webview when app is in background?
I'm working with React.js web views that are opened inside a native shell (iOS/Android). I have a requirement to extend the session of the webview periodically so that the user doesn't get logged out.
...
0
votes
0
answers
4
views
Different validation loss behavior across clients during partial fine-tuning of ResNet50 in Federated Learning
I'm performing partial fine-tuning of a pre-trained ResNet50 (pretrained on RadImageNet) within a Federated Learning framework. I'm using 2 clients, each with a small dataset (525 training images), ...
0
votes
0
answers
3
views
I want to redirect to public folder (url/test/public) without showing the public in the url and .htaccess code is not working
I have hostinger shared hosting plan.
working on laravel project.
For a domain my current file structure is this :
Public_html
/ Test
/Public
.htaccess
Index.html
I want to redirect to public folder (...
-1
votes
0
answers
6
views
How to query that column A is greater than column B in MongoID?
Lets say I have collection with multiple columns. Two of the columns are budget and budget_billed. I want to have a query which returns all lines where the budget is greater than the budget_billed. ...
-1
votes
1
answer
9
views
Counter not working when setInterval state in Reactjs
I am writing an automatic seconds counter and it should increment by 1 every second, but currently it is not working even though i have setInterval for it to repeat and setCount every 1000 ms (1 ...
0
votes
0
answers
10
views
Getting DRM related error in Samsung devices while trying to receive Firebase Remote messages?
SEC_DRM_PLUGIN_Omafl: OmaPlugin::onOpenDecryptSession(fd)::Drm2IsDrmFileByExtFd::file is NOT DRM by extension
Codec2-ComponentInterface: We have a failed config
EffectsConfig: Invalid <stream|...
0
votes
0
answers
9
views
@react-oauth/google stores google accounts cookies on my domain?
I'm trying to implement oauth for google using @react-oauth.
When using it, it seems like it stores cookies on my own domain for google account.
I don't see any reason for google accounts cookies to ...
0
votes
0
answers
11
views
Changing the size of the color-box in the legend [duplicate]
I have below ggplot
library(ggplot2)
library(reshape2)
x <- c(5,17,31,9,17,10,30,28,16,29,14,34)
y <- c(1,2,3,4,5,6,7,8,9,10,11,12)
day <- c(1,2,3,4,5,6,7,8,9,10,11,12)
df1 <- data.frame(...
0
votes
0
answers
10
views
How to configure .NET Aspire to use WSL Docker (Ubuntu) instead of Docker Desktop in Visual Studio
I am running .NET Aspire 9.3 inside Visual Studio 2022 v2 on Windows 11 with WSL (Ubuntu) and Docker installed. However, Aspire defaults to using Docker Desktop, and I want it to use WSL's Docker ...
0
votes
0
answers
7
views
how to fix oracle apex service unavailable password expired?
Today I cannot open oracle apex ,
This message show
Service Unavailable
HTTP Status Code: 503
Request ID: FTVoHOdkdqOCD2d2o_mjvQ
Request Timestamp: 2025-06-08T05:38:08.083051400Z
ORDS was unable to ...
0
votes
0
answers
20
views
Use data from mapping fetch to feed a component
I have a React component fetching an API and returning a list of users and some data for each in cards (user.map). I would like to make those cards clickable and for each one to return a individual ...