Newest Questions
24,150,659 questions
0
votes
0
answers
15
views
Airflow 3.2.2 default email options not being loaded correctly
I moved from Airflow 2 to Airflow 3 and i see that now I am supposed to use on_failure_callback on DAG level to send an email notification, after setting up smtp_default connection as per the email ...
0
votes
0
answers
17
views
R8/ProGuard-My flutter app runs fines when I install via vs code but a certain page crashes when installed via play store via internal testing
I recently uploaded my flutter app to Google Play Store and currently on the internal testing phase. The app works fine when I install it in my phone via vs code, but 1 page crushes when I install it ...
Advice
0
votes
0
replies
19
views
How do I make my Neovim open specific file instead of splash screen when I execute "nvim" in my shell?
I have a file called "todo", which is basically a text file that stores my todo list. I want to be always reminded of my ongoing task when I open my Neovim. So, when I execute "nvim&...
1
vote
0
answers
44
views
explanations about -Wuseless-cast behavior
I commonly use type aliases to be able to change a given type within my program and to give them some semantic, but I have an issue that appeared by adding the -Wuseless-cast to gcc:
#include <...
Advice
0
votes
0
replies
29
views
Python Geolocation Testing for Local Search Result Verification
Local SEO has become increasingly complex as search engines personalize results based on geography, language preferences, device signals, and user behavior. While VPNs have traditionally been used to ...
0
votes
0
answers
26
views
Next.js 16 PPR: /api/og route logs "needs to bail out of prerendering" on every build
I enabled Partial Prerendering (PPR) in my Next.js 16 project by commenting out export const dynamic = "force-dynamic" across all pages and adding cacheComponents: true to my next.config.ts. ...
Advice
0
votes
0
replies
26
views
How can I analyze COBOL program dependencies across CICS transactions and DB2 tables before modernization?
We are planning a mainframe modernization project for an IBM Z environment containing COBOL applications, CICS transactions, JCL jobs, and DB2 databases.
One of our biggest challenges is understanding ...
-4
votes
0
answers
34
views
Creating crcc based on etsi standard [closed]
this is the polynomial equation m(x) is the data and I(x) is nothing but FFFF but how do i do this programitically. But i am confused on how to implement it in c how do i multiply create generator ...
Advice
2
votes
0
replies
33
views
How can I determine if a phone number is WhatsApp-enabled before sending a message using WhatsApp Cloud API?
We have configured the WhatsApp Cloud API directly, not through a BSP.
We are using the /messages endpoint to send WhatsApp messages to our customers, and it is working correctly.
However, before ...
-2
votes
0
answers
31
views
Helping reduce overfitting in a Wine Quality classification model
I am currently working on the Wine Quality dataset and struggling with significant overfitting. My model performs well on the training set but fails to generalize on the test set.
I have already tried:...
1
vote
0
answers
38
views
Equivalent of `R --quiet --no-save --no-restore` in the IDE?
To start R without the startup banner or the quit/save dialogue, we can use
alias R='R --quiet --no-save --no-restore'
giving:
$ R
>
How can we achieve the same in (1) RStudio Desktop and
(2) a ...
Advice
0
votes
0
replies
38
views
Will a 80 GB GPU and a 48 GB GPU give identical results on an open source text-to-video model for the same quantization and seed?
I am considering to buy GPUs for my project of open source text-to-video models like ltx-2-19b (lightricks) or wan-v2.2-a14b. I read online that the same configuration/quantization and seed will give ...
Tooling
0
votes
0
replies
27
views
How should I divide development tasks between Replit Agent and ChatGPT for a Node.js telephony application?
I am developing a Node.js-based telephony and call-intelligence prototype. I plan to use Replit Agent for repository-level implementation and ChatGPT for architecture review, debugging, test design, ...
Tooling
0
votes
0
replies
44
views
Chrome vs Firefox Developer Edition
I'm a web developer trying to decide between Google Chrome and Firefox Developer Edition as my primary development browser. I use DevTools frequently for debugging HTML/CSS/JS, inspecting network ...
0
votes
2
answers
49
views
How can I include only specific classes from a library instead of adding the entire dependency in Gradle?
I'm working on a project where I only need a few specific classes from a third-party library. However, when I add the dependency in Gradle, it includes the entire library. Is there a way in Gradle to ...