Newest Questions
24,210,772 questions
0
votes
0
answers
3
views
How to open a specific Flutter screen from background using Android BroadcastReceiver (e.g., when power is connected)?
We're building a Flutter app that should automatically open a specific screen (e.g., AlarmScreen) when the device is plugged into power (ACTION_POWER_CONNECTED), even if:
The app is closed (killed),
...
0
votes
0
answers
7
views
Custom Symfony bundle
While working with custom symfony bundle I run into error:
"The definition for "custom.notifo.service" has no class. If you intend to inject this service dynamically at runtime, please ...
0
votes
0
answers
9
views
Accessing Docker Host's Docker Socket from a Containerized Airflow Setup (Permission Denied Issue)
I'm running Apache Airflow in Docker using the official docker-compose setup, and I wanted to use the DockerOperator to launch additional containers using the host’s Docker daemon.
To do this, I:
...
0
votes
0
answers
5
views
Adding condition for sql output
I have table which has
id | context| user_id|
1 | a | aaa
2 | b | bbb
3 | c | aaa
4 | d | ccc
5 | e | aaa
.
.
select count(user_id),user_id from context group by user_id ...
0
votes
0
answers
7
views
vscode opens the terminal to automatically execute the environment activation command, and opens the cmd window
Problem:
When creating a new terminal in VSCode (v1.102), it automatically enters the base environment and then automatically executes commands:
D:/Anaconda/Scripts/activate
conda activate ML
causing:
...
1
vote
1
answer
9
views
How to dynamically set an HTML header tag (h1, h2, etc.) in a Blazor component?
I want to create a reusable Blazor component that allows the user to define the HTML header tag (, , etc.) via a parameter.
My goal is to render a header dynamically like this:
<HeaderWithTooltip ...
1
vote
0
answers
10
views
How to properly manage responsive grid layouts using Tailwind CSS?
On small screens, everything stacks vertically as expected.
On tablets (medium screens), columns align in 3, but sometimes the height is inconsistent depending on content.
I want all grid items to ...
-1
votes
0
answers
7
views
How to get all the displaying text in view like iterating through a DOM in web?
In Flutter, how to get all the displaying text in view like iterating through a DOM in web?
And how to detect when a text changes?
I need to get all texts to translate them to other languages. Thank ...
0
votes
0
answers
14
views
Twilio Voice iOS SDK: `callInvite is missing` when accepting incoming call from CallKit or React Native
I'm integrating Twilio Voice (v6.12.1) into my React Native app (using Swift bridging for iOS) and have implemented full VoIP, PushKit, and CallKit support for incoming calls.
? What works:
Incoming ...
0
votes
0
answers
12
views
Quantile deviations detected gamma GLM
I am trying to apply a Gamma GLM to a dataset. The main issue is the lack of fit for quantile deviations although no other problems are detected. I have read similar posts without a conclusive answer.
...
0
votes
0
answers
18
views
Proton-J2 AMQP 1.0 Receiver that filters messages?
I'm investigating writing a systems integration using AMQP and looking to copy some common system integration patterns used with JMS based APIs. That includes a message-consumer that filters messages ...
0
votes
0
answers
17
views
Creating evenly spaced non-solid lines with colormap
As an example I want to create a plot using z data as source for coloring using this code (modified from here:
import warnings
import matplotlib.pyplot as plt
import numpy as np
from matplotlib....
0
votes
0
answers
15
views
CANoe Python COM Automation: Server Busy popup when calling exported CAPL function with GetFunction/Call
I'm migrating an automated test workflow from Vector VtestStudio to a Python-based tool. Previously, in VtestStudio, we could execute a separate .can CAPL script in the middle of a test without issues....
-1
votes
1
answer
28
views
How to sort a dictionary with list of datetime objects as value?
I have a dictionary with lists of datetime as value:
month_a = [8,9,10]
day_a = [13,12,15]
month_b = [8,9,10]
day_b = [13,11,13]
dt_a=[]
for m,d in zip(month_a, day_a):
dt_a.append(datetime....
0
votes
0
answers
20
views
How to enable BDS-only mode on SIM868 GNSS module? $PMTKSPF,2*59 shows success, but no BDS fix or output
I'm working with the SIMCom SIM868 module and trying to enable BDS-only (BeiDou) mode for GNSS.
I'm sending this command through the AT interface:
AT+CGNSCMD=0,"$PMTK353,0,0,0,0,1*2C" // ...