Newest Questions
24,187,352 questions
-2
votes
0
answers
14
views
Can you correct the code in this type of simple way because error is coming [closed]
import matplotlib.pyplot as pl
import numpy as np
dict={'student1':\[80,80,65\],'student2':\[60,80,65\],'student3':\[85,80,65\]}
x=np.arange(4)
pl.bar(x+0.0,dict,width=0.25)
pl.bar(x+0.25,dict,width=...
0
votes
0
answers
6
views
ProjectEuler+ #21 Amicable Numbers Sum: Logic error or Time Limit exceeded when using Sieve with O(N log(N)) complexity on HackerRank
I am new here so I'm not sure if I'm doing this correctly, but can someone help me?
import sys
def solve():
try:
T = int(sys.stdin.readline().strip())
except:
return
...
0
votes
0
answers
11
views
html2canvas doesnt render my div correctly
Im using html2canvas so i can download as pdf a created div that contains an invoice info in React.
const handleGeneratePDF = async () => {
const element = folioRef.current
if (!element) {
...
0
votes
0
answers
10
views
How to compare array's element each and char by char in assembly lang 8086
.model small
.stack 100h
.data
;menu
IDS dw "anmol","jia12","chaht", "nida1$"
passwords db 0000h,0001h,0002h,0003h,0004h
start_msg db "Welcome to ACJN ...
Advice
0
votes
0
replies
10
views
How can I supress false positives in the Gitlab code quality report?
The Gitlab code quality tool is producing a lot of false positives for our team due to a third party library we use. We're unable to replace the third party library, since it's use has been mandated ...
-1
votes
0
answers
23
views
How to recognize array data using JavaScript? [closed]
JsonDocument doc;
JsonArray pin = doc["pin"].to<JsonArray>();
switchVar1 = SHIFT(DATAPIN, CLOCKPIN);
for (int n = 0; n <= 7; n++) {
if (switchVar1 & (1 << n)...
0
votes
0
answers
9
views
504 Gateway timout for all new requests at specific minute each hour in Kubernetes cluster
We're running our own Kubernetes cluster and it works well for a while but at minute :03 each hour, public web services stop responding (504 gateway timeout) and some commands such as kubectl top ...
0
votes
0
answers
4
views
Spark Declarative pipeline, autoloader and deduplication
CDC files are landing in my storage account, and I need to ingest them using Autoloader. My pipeline runs on a 1-hour trigger, and within that hour the same record may be updated multiple times. ...
0
votes
0
answers
5
views
Deep link Cold start cant get params from initial url
So i successfully applied deep link in my application so when a user uses device camera AFTER application has opened it will work without any issue. But once I close the application and then scan the ...
-1
votes
0
answers
5
views
Accessing environment variables of a pipeline build from another pipeline
I have a requirement of accessing environment variables of a build from another pipeline. For instance, there is a pipeline named "testA" which stores multiple dynamic environment variables ...
0
votes
0
answers
9
views
DAX cumulative measure returns incorrect last month total when trying to optimize
I'm working on a Power BI report where I need to calculate cumulative account balances (OpenAccountsRunning) based on a per-month snapshot measure ([BaseClosing]).
I originally wrote this “fast” ...
0
votes
0
answers
10
views
EMF/WMF images not rendering on .NET Core + Linux but work on .NET Framework Windows
I am converting DOCX to PDF using Syncfusion DocIO.
On .NET Framework 4.6 (Windows), all logos render correctly. After migrating the same code to NET Core 8 on Linux, only PNG/JPG images work, while ...
0
votes
0
answers
13
views
Angular v20 - hook to lifecycle event of angular-material component of child
I am implementing a component with an array of elements and there is a *for directive in the component that is connected to the array.
The array is dynamic and the loop renders mat-expansion-panel for ...
0
votes
0
answers
19
views
Disable SSL verifying in any browser (for accessing outdated router) [closed]
I need to maintain my old router CISCO Small Business RV042, and I cannot access its web page because "This site can’t provide a secure connection"!?
I do not need no secure connection, I ...
0
votes
0
answers
12
views
How to hide UI elements in a custom frontend based on Dataverse security roles when using MSAL authentication?
We are building a custom frontend application (SPA) that authenticates users against Microsoft Dataverse using MSAL and OAuth.
The UI should hide certain navigation items and actions (e.g., show “...