Newest Questions
24,217,736 questions
0
votes
0
answers
22
views
pushManager.subscribe return null on android firefox (not working at all on chrome)
i'm trying to create a simple web push notif using service worker, it works well on browsers in desktop, but on android device not working!
on firefox android: pushManager.subscribe() return null
on ...
0
votes
0
answers
18
views
Google Analytics not sending different pages aside from home page in ReactJS(Vite)
I'm using react-ga4 for my [portfolio[(https://vicentereyes.org). I have a PageViewTracker.jsx which has:
import { useEffect } from 'react';
import { useLocation } from 'react-router-dom';
import { ...
-1
votes
0
answers
21
views
unable to see newly added SAP IDOC value in listener [closed]
we have an IDOC listener that receives and processes all IDOCs from SAP. We now added a field for an IDOC in SAP. However, this is NOT available on the IDOC listener. we are able to see the new field ...
0
votes
0
answers
10
views
Typo3 v12 .htaccess rewrite problem with composer installation
I have a Typo3 v12 installation (not a fresh one, I have to admit, but an upgraded). I have also upgraded the .htaccess file - using the one from
https://raw.githubusercontent.com/TYPO3/typo3/refs/...
-1
votes
0
answers
15
views
How to install libcxx on centOS?
I want to install llvm-20.1.8 and its toolchain to my development environment. When I has installed llvm-20.1.8 from GitHub Release, I can only install libcxx with source next? There is no binary file ...
-2
votes
0
answers
14
views
Unable to open chrome in docker container due to websocket closed
I am hitting an issue where I am unable to open chrome via a docker container due to websocket closed.
Error: Unable to open the "chrome:headless --no-sandbox --disable-dev-...
0
votes
0
answers
11
views
Nodes are not joining after upgrading eks to v1.33
I have upgraded my eks cluster from 1.32 to v1.33 and we have updated the ami type from al2 to al2023 after updating the cluster my nodes are not joining the node group. We are using custom user_data ...
0
votes
0
answers
27
views
Android Studio Narwhal doesn't provide the possibility to browse c++ code
If you open the new Android Studio Narwhal and create a new project: "Native c++" you figure out that if you go into the MainActivty file created and press on, using Mac, "commnad" ...
0
votes
0
answers
28
views
Sequence of Events in : mutex.unlock() vs returning from a function
short brief - I want to understand the sequence of event when returning from a function and unlocking a mutex in the same function.
helper macro: to print to screen
#define TRACE() {std::cout <&...
-1
votes
0
answers
19
views
transformer datasets 4.0.0, load_dataset issue
dataset: 4.0.0
pytorch: 2.7.1+cu126
system: Ubuntu 22.04.5 LTS
Following the official example I tried this code:
import datasets
print(datasets.__version__)
import torch
print(torch.__version__)
...
0
votes
0
answers
10
views
Odoo 18: updated product name - print label wizard - old product name in PDF
In odoo 18, in Sale app > Products, in the form view of one product, i change the name of my product (add "A" at the beginning), then click on Save icon, click on Print label button, and ...
0
votes
0
answers
20
views
GitLab Registry and Runners - is there a way to set URL for Runners to connect to Registry explicitly?
Problem:
There are two machines in an internal network, one being reverse proxy, second one being GitLab. Runner is located on the first one.
None of the machines do know about their public IP address....
0
votes
4
answers
43
views
In python: How to generate only one box plot for a matrix?
This code generates 4 separate box plots.
How can i generate only one box plot for the entire matrix?
data = np.random.random(size=(4,4))
df = pd.DataFrame(data)
df.boxplot()
0
votes
0
answers
15
views
how to use percentiles-histogram without risk of high cardinality and human-usable buckets?
I created my own advices in springboot 1 to monitor our apps, and only now try to learn what new versions of springboot offer(currently working with 3.3.1, but will move on to later version later), ...
0
votes
1
answer
19
views
Should I use `@theme` or `@theme inline`?
In some guides, they use @theme, while in others, they use @theme inline. If I stick to the @theme inline written by Next.js, the dark mode override mentioned in several answers here does not work:
...