Newest Questions
24,234,825 questions
0
votes
0
answers
6
views
MAX() (and DISTINCT?) on an subquery
This query
SELECT
(SELECT LENGTH("PackForm") FROM "schema"."T 2" WHERE "ID-PrsPack_fkey" = "ID-PrsPack")
FROM "schema"."T 1" ...
-1
votes
0
answers
5
views
What is jwt and tell me its implementation
I want to know the implementation of jwt
I tried the jwt using postman and it didnt work , and it didnt work due to itUser Profiles
View personal and other users' profiles.
Display user information, ...
0
votes
0
answers
5
views
Power Bi Cumulative and Pareto Calculation
I am trying to create a cumulative fails and percentage. Table has date, defect, department, fail count, and name. No matter what I do it always calculate based on defect order not fail count. I tried ...
-1
votes
0
answers
6
views
A Comprehensive Summary of RCE Exploitation Techniques
I published an article on Medium titled "A Comprehensive Summary of RCE Exploitation Techniques" (https://medium.com/@ZAC_SEC/a-comprehensive-summary-of-rce-exploitation-techniques-...
1
vote
0
answers
4
views
cache coherence vs atomicity
I want to verify that if I understand properly the notion of atomicity and cache coherence.
Starting with a simple scenario with only one shared memory location a, so I suppose there is nothing to do ...
0
votes
0
answers
7
views
primitive package placement algorithm
The main logic iterates z, y, x and places the box if it doesn't overlap with previously placed ones (checked using a doBoxesOverlap function).
interface Package {
dimensions: { length: number; ...
0
votes
0
answers
5
views
Longitudinal Analysis with High Variability in Time Entries per Subject
I am working with retrospective data from a symptom tracking app and I aim to identify different symptom trajectory classes within this data. After reviewing relevant literature, I have found that ...
1
vote
0
answers
28
views
Issue with multiple "else if" statments in javascript [closed]
Im having issues trying to get the following code to work.
I have temporarily set the randomNumber const to 0.99 for testing.
When I click the "Rock" button, the console log displays the 0....
0
votes
0
answers
12
views
Precise control of time when testing the Spring test code
I'm trying to write a test code to find out about TDD.
I'm trying to avoid using Thread and find out how to calculate the exact time to comply with the fast processing among the FIRST principles.
Test ...
0
votes
0
answers
12
views
Python uvicorn app opens a cmd - how to stop it?
I've been building a WebSocket application and I opted for Python FastAPI + Uvicorn for server side. Having pretty much finished the app, I decided to pack the server into an .exe file. Even though I ...
0
votes
0
answers
6
views
Elementor background video not looping — how to force loop dynamically when using native background video settings?
When using Elementor's native background video feature on a section, even if the loop attribute is enabled, the video often does not actually loop — especially if Elementor appends a video URL with a #...
0
votes
0
answers
6
views
Failed to send out e-mail sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
Unable to find valid certification path to requested target
email notification is not working in jenkins it throw an error message
I want to try for sending email through jenkins but it throw an error ...
0
votes
0
answers
11
views
Blazor Server .NET 9 Preview: CS1061 Error for AddAuthenticationStateSerialization on IServiceCollection
Issue:
I'm developing a Blazor Server application targeting .NET 9. I'm using standard Cookie Authentication and trying to configure authentication state handling for prerendering.
My goal is to ...
0
votes
0
answers
11
views
How do I import WASM in Worker JS in a Vue 3 project powered by Vite?
I am trying to request a WASM function within a JS Worker. I am stuck with it because nothing works in the way I have tried, but also I cannot see any error. Let me explain what I am doing.
First, I ...
-2
votes
0
answers
19
views
Why in JavaScript clearing or writing HTML is not working? [duplicate]
In this code:
$.ajax({
url: "./Home/ClearFilter",
method: "POST",
data: { id: id },
success: function (response) {
if (response.success) {
var ...