All Questions
24,192,995
questions
0
votes
1
answer
25
views
Incorrect form validations triggered
I have formgroup which has input fields, the validations are set like this :
<mat-form-field class="mat-width-98" appearance="outline">
<mat-label&...
0
votes
0
answers
7
views
How to I get data from a firestore collection within a document that requires an argument?
I am trying to create and admin chat where the admin can view all the user messages and then reply to them I have been able to add documents to this collection but I am unable to display the messages ...
2
votes
3
answers
41
views
How do I stack columns with the same header as one column in Excel? [duplicate]
I have an Excel spreadsheet that is formatted like this (with 200 columns):
What i have right now:
How do I format it like this?
What i am trying to get:
I'm very new to this, and I've been stuck ...
0
votes
1
answer
27
views
Why does separating the interface and implementation of a `std::formatter` specialization cause constraints to fail?
I was trying to specialize std::formatter<T> for a basic custom type Vector3D, but I'm receiving a compiler error. Here is a minimal reproducible example:
vector.h defines the Vector3D class and ...
0
votes
0
answers
11
views
Spring Boot Application Controller Doesn't Seem to Work
I'm creating a Spring Boot application along with React. I'm working with Spring Boot for the first time. The controller doesn't seem to be working.
I've created a project using Spring Initializr. ...
0
votes
0
answers
8
views
How to sort and align the nodes vertically in the graph using d3.js and angular 13
I have used the d3.js graph structure to draw the flow chart. I have managed to align each node vertically at each level. However, I am facing several issues:
I am unable to sort the nodes based on ...
0
votes
0
answers
9
views
What's the difference between using ALL vs VALUES in MAXX table parameter?
MAXX(<table>,<expression>,[<variant>])
What's the difference between using ALL(Product['Name']) vs VALUES(Product['Name']) in the above DAX?
0
votes
0
answers
7
views
Unity Editor never releasing memory
I've been working on my unity project, and this happened:
So, my project has some Recursive functions, since it is about making a chess engine(rule-based AI). And when I test it out, I find my memory ...
0
votes
0
answers
10
views
How To Set A GCloud Flag During Cloud Build Runtime?
I need to set a Gcloud deployment flag with an environment variable that I set during runtime. The reason for this is that I am trying to version my cloud run services and if the parameter TAG_NAME ...
0
votes
0
answers
20
views
Using scenedetect to spot subtle cut edits in a video?
I'm trying to use the Scenedetect Python package to detect subtle cuts in a video. For example, I'm looking at this video:
https://www.youtube.com/watch?v=fNb_-Tmxq8Q
I have downloaded the video and ...
1
vote
0
answers
8
views
How to check module settings and project settings?
IDEA show Following modules override project settings: ...
But I don't know which setting is different. How should I find the difference?
And How to view project settings and module settings?
I just ...
1
vote
1
answer
23
views
use different y values defined in another file
I have two py files named: randomvar.py and test_Random.py in the same folder.
The file randomvar.py is given below:
import numpy as np
from test_Random import call_random
def evaluate_expressions(...
0
votes
0
answers
12
views
Sound audio is not playing on iOs device when audio is recorded on Android
I have a Flutter chat app where users record an audio and save it to Firebase Storage. Permissions are fine. I am using just_audio: ^0.9.39.
When I follow the following path, I don't run into ...
0
votes
0
answers
6
views
MapBox 3DPuck not displaying model
I followed the documentation for displaying a 3D Puck but it is not showing.
Already tried with another .gltf, .glb or even a .usdz but still no luck. File is imported correctly too.
The puck does ...
0
votes
0
answers
13
views
Qt, failed to load include path to android.jar
I cannot build a project with the Android Kit, no matter if Qt Widgets or Qt Quick. All Android settings (JDK, SDK, NDK) are correct. The Android emulator is started. Error message among others: "...
0
votes
0
answers
22
views
Is it possible in Google Sheets to get cells to fill automatically after filling one cell with a forumula?
Maybe this is a standard thing to do but I can't figure it out without getting myself into a recursive pickle.
Anyway, I have a Google form that collects data to a spreadsheet.
Let's say, a person ...
0
votes
0
answers
12
views
How can I scrape data from yahoo finance to a google sheet using importhtml?
I was trying to create a google sheet for some stock analysis.
The webpage that I am scraping is: https://finance.yahoo.com/quote/FVRR/financials/
Now I know we can use importhtml to scrape data. I ...
0
votes
0
answers
20
views
Powerpoint vba macro to play and pause embedded video in slide
I am trying to write a macro which has following features for an embedded video in active slide
the macro plays the video if the video is paused
the macro pauses the video if the video is playing
...
1
vote
0
answers
23
views
The getter 'MyRoutes' isn't defined for the class 'MyApp'
I have two screens in my app 1. homepage 2. loginpage and I want to navigate from login page to homepage on a button click through routes.
the routes are define in separate file utils(folder)=>...
0
votes
0
answers
6
views
How does ALL return distinct rather than all values in FILTER DAX (versus VALUES)?
Calculate Inbound =
CALCULATE( [Total Cost] ,
FILTER( ALL( Sheet1[Type] ) ,
Sheet1[Type] = "Inbound Shipping" ) )
The ALL in above filter seems to return distinct list of Type....
0
votes
0
answers
22
views
Display the all the details of Resident after clicking the view button using ASP.NET Core
Manage.cshtml
<table class="display table" id="ManageResident" style="width:100%">
<thead>
<tr>
<th>Resident ID</th>
...
0
votes
0
answers
7
views
Automated Wake-Up and Flight Control for DJI Mini 4 Pro via ESP32
I'm looking for a solution on how to wake up the DJI Mini 4 Pro with a signal sent from the ESP32 to the DJI control module or from ESP32 directly yo the drone.
Here is what I want to achieve:
The ...
0
votes
0
answers
18
views
How to create a responsive hamburger menu and across all devices?
I'm trying to build a simple responsive navbar can anybody please help with it , need a hamburger menu and target for all types of devices .I tried doing it but couldn't do it. I need help with trying ...
0
votes
1
answer
15
views
Is there any way to get Headers from HttpResponse in HttpClient5?
In Apache HTTP Components 4, I could get Header[] from HttpResponse by using the method getAllHeaders(), cause this method extends from class HttpMessage. However, after upgrading my dependency to 5.x,...
0
votes
1
answer
28
views
Laravel Observer depedency injection gave a collection instance
Laravel Observer depedency injection gave a string type attribute instead of an integer.
I faced a problem with Laravel Observer because it gave me a collection with the wrong attribute type (integers ...
1
vote
1
answer
11
views
Injecting nested services
I have this folder structure:
.
├── lib/
│ └── dma/
│ ├── modules/
│ │ └── cmts/
│ │ ├── cmts.module.ts
│ │ └── cmts.service.ts
│ └── dma.module.ts
└── ...
0
votes
0
answers
10
views
Unable to determine what CMake generator to use when using Cmake: Configure command (VScode, windows 11)
I made a fresh new project from an empty folder using the quick start command. In the folder are the cmakelists.txt and main.cpp files only. When running any command (such as Configure, Edit Cache...),...
0
votes
0
answers
10
views
can not use woocommerce rest api
I'm using a true consumer key and consumer secret but when I send a request, I face this error with 403 status code:
You don't have permission to access this resource
my python code is:
consumer_key = ...
0
votes
0
answers
12
views
Firebase OTP Delivery Failure on Dialog Mobile Networks in Sri Lanka
Issue Overview:
Users in Sri Lanka utilizing Dialog mobile networks are experiencing failures in receiving One-Time Passwords (OTPs) sent via Firebase Authentication. This issue hinders users from ...
1
vote
0
answers
12
views
Tanstack Table V8 - getRowModel() rows and flatRows empty on one site but not empty on another, what is happening?
I have the exact same built react app running on 2 sites hosted on the same server. The 2 sites are one for production and for test but to repeat right now they have the exact same built react app.
On ...
1
vote
0
answers
16
views
How to Reinitialize JavaScript Functionality for Dynamically Added Elements Without Duplicate Event Listeners?
I am developing a social media platform using Django for the backend and a purchased HTML template from ThemeForest for the frontend. The template was built using React and then exported to plain HTML,...
1
vote
0
answers
12
views
How to check if a polygon has a self-intersection?
I am trying to prevent the user from drawing a polygon that has self-intersections on the canvas (using fabric.js). How can I check if a polygon has self-intersections?
Is there a simple and ...
0
votes
0
answers
7
views
can curl c library parse http request?
I am writing a server that uses select function to read from a set of sockets. Then I need to parse the received data as HTTP request. I find some C library from github such as PicoHTTPParser and ...
0
votes
0
answers
12
views
Kernel experts, please expain what these error codes mean
enter image description hereI've been working on customizing the Linux kernel, specifically in the networking stack. I modified the tcp_sendmsg_locked function to include a mod_timer call, aiming to ...
0
votes
2
answers
32
views
How to get a list of dates, for each customer, given a single date and a frequency SQL
WHAT I HAVE CURRENTLY:
I have a table with Customer_ID, Start_Date, Frequency, Day
I have a second table with simply a list of dates throughout the year 2024 and day of the week, like the below...
...
0
votes
0
answers
5
views
Error initializing Airflow webserver version 2.3.1
I'm having an issue with Airflow webserver initializing on Kubernetes:
[2024-07-14 04:01:49 +0000] [17] [INFO] Starting gunicorn 20.1.0
[2024-07-14 04:02:00,481] {providers_manager.py:215} INFO - ...
0
votes
0
answers
32
views
Why does calling an async actor function in a MainActor result in a compiler error in Swift 6 to file a bug?
I have the following MainActor class:
import Foundation
import os
@MainActor
public class UserData: ObservableObject {
let userDataLogger = Logger(
subsystem:
"com.author....
0
votes
1
answer
10
views
"no pg_hba.conf entry" error when connecting to AWS RDS database
I'm attempting to set up a basic free tier AWS RDS postgres database. I have done this before, today. For some reason, I am suddenly unable to connect to any new databases I set up. I get this error ...
0
votes
0
answers
4
views
What is the difference between using Table vs Column in DAX FILTER?
Assuming my model has following tables:
Date, Product, Sales
Say this is a star schema with date and product filtering the Sales table.
I'm trying to visualise what the following does:
Filter on ALL ...
-1
votes
0
answers
23
views
How to Remove a Large File from ZFS Snapshots and Reclaim Space? [closed]
I have a series of daily ZFS 100Mb snapshots of archive_zp/my_zfs, going back 100 days. At day 60 (between @ss59%ss60) I had added a 10 GiB sized archive_zp/my_zfs/BIG.iso file, that 10 GiB now ...
0
votes
0
answers
16
views
Not a valid function in Taipy
I have this code block:
from taipy.gui import Gui, notify
import taipy.gui.builder as tgb
import pandas as pd
import os
def read_data(filepath_or_url):
try:
if os.path.isfile(...
0
votes
0
answers
10
views
question about ipywidgets and running a different process
what is a better way to run this launching function separately from the ipywidgets process?
from IPython.display import display
from multiprocessing import Process
from ipywidgets import widgets
from ...
0
votes
0
answers
23
views
How can I take a RAR file and dynamically generate a gallery in Node.js?
I need to create an HTML gallery dynamically without saving the files to disk. I need to retrieve data from individual RAR files or split RAR files (e.g., rar, r01, r02, r03, and so on) and generate a ...
0
votes
1
answer
11
views
Lambda not working trigger message from SQS FIFO, but it does from SQS Standard
i just created lambda function that have trigger from SQS FIFO, but somehow not working.
Already add the AWSLambdaSQSQueueExecutionRole and AmazonSQSFullAccess to the lambda, but seems not working.
...
0
votes
0
answers
7
views
Compound trigger
I have a trigger on the CLIENTES table and I need to increment the clientes.MODIFICACIONES field each time an update is performed on a record of the table
I created the following trigger
CREATE OR ...
0
votes
0
answers
24
views
Data Not Updating on Dashboard in Production Environment
I have a web application with payment system integration, and I am facing an issue where the payment data is not updating in the dashboard in the production environment, although it works fine in ...
-1
votes
1
answer
23
views
Golang archive/zip silent error zipping last file
Using go 1.21.4 windows/adm64
I'm experiencing an interesting issue when trying to zip files using go's archive/zip library.
Files are all written to the archive, but Windows reports that the zip file ...
0
votes
1
answer
14
views
SELECT AS STRUCT, SOA
I know there is the SELECT AS STRUCT construction in BigQuery, but wouldn't the following do the exact same thing? Or does the AS STRUCT construction give any additional benefits?
-- SELECT AS STRUCT ...
-2
votes
1
answer
22
views
(node:472) [DEP0170] DeprecationWarning
(node:472) [DEP0170] DeprecationWarning: The URL mongodb://gmpsankalpa:******[email protected]:27017,ac-ubhbutz-shard-00-02.qrgbii1.mongodb.net:27017,ac-ubhbutz-shard-00-00....
-1
votes
0
answers
21
views
Java Game Graphics Not Working on Replit, VNC Error
Made a Java game for my final project in a class a few months ago, it uses Java.awt.Graphics and other Jawa.awt imports & it worked at the time. It was deployed on GitHub but we used Replit to run ...