Newest Questions
24,168,178 questions
Advice
0
votes
0
replies
7
views
Looking for open source projects that demonstrate different types of software testing (unit, integration, e2e) for learning purposes
Context:
I'm trying to learn software testing in practice, not just theory. I want to study real-world projects where I can observe and practice different testing strategies.
What I'm looking for:
I'm ...
0
votes
0
answers
9
views
Exclude distinct records with any non-distinct match
Fairly new to SQL so apologies if my question is poorly worded.
I have data that looks like this:
date
attribute
2026-01-03
A
2026-01-03
A
2026-01-03
B
2026-01-04
A
2026-01-04
A
2026-01-05
C
I need to ...
0
votes
0
answers
6
views
Magento 2 PageBuilder field missing in production only
I'm experiencing an issue with Magento 2 PageBuilder where a specific field (`link_url`) is not available in the production environment, but it works fine on pre-production.
**Details:**
- Magento 2.4....
-1
votes
0
answers
16
views
SQL: Find malls without employees
there is a table called ‘users’ that looks like this:
mall_id | name | position
1 ; Max ; boss
1 ; Dan ; employee
1 ; Mike ; employee
2 ; Ben ; boss
3 ; Susan ; boss
3 ; Larry ; employee
3 ; ...
Best practices
0
votes
0
replies
6
views
Best practice for managing magic strings in Django JsonResponse keys/values
I have a Django view that returns JSON responses:
def post(self, request, post_id):
post = get_object_or_404(Post, pk=post_id)
if post.is_pub_date_future():
return JsonResponse({
...
Advice
0
votes
0
replies
12
views
How can i rotate my player according to mouse position?
I have 3d scene but 2.5d view i have to rotate player according to mouse position and i want to move player according to wasd keys.I am using the new input system. I also want to make animations if ...
Advice
0
votes
0
replies
14
views
Network Interface Configuration (inside docker)
iam currently running a docker setup inside a NVIDIA orin dev board
in that i have to configure the network interface through my cpp application
i have tried using nmcli , ioctl , ect. In that most ...
0
votes
0
answers
18
views
WordPress php memory limit stuck at 128M on CloudLinux + LiteSpeed VPS (cannot increase to 512M)
I’m running a WordPress site on a VPS hosted by PRO ISP (CloudLinux8 + cPanel + WHM + LiteSpeed).
After updating WordPress, Divi, PeepSo, and Paid Memberships Pro, activating PMPro started crashing ...
Advice
0
votes
3
replies
41
views
Is this JS script vulnerable to XSS?
Okay so i have a JS function that take my server response that would be multiple html Elements.
I add all of those elements with innerHTML and i know it can cause XSS attack but i struggle to ...
Best practices
0
votes
0
replies
22
views
How to do a proper error handling in typescript?
This is my first attempt at implementing proper error handling in my project. I realized that as my project grows in complexity, the lack of structured error handling makes development much more ...
2
votes
0
answers
32
views
Android-Retrofit: getting escaped double-quoted JSON
I'm having problems receiving a JSON response from a REST endpoint using Retrofit. Some of the requests return JSON with a bunch of null characters and escaped double quotes.
Pasted from Android ...
-1
votes
0
answers
22
views
Vite error "No CSS for file" with vanilla-extract in Nuxt module (Double path resolution)
I'm developing a Nuxt module using vanilla-extract. When running the playground, I encounter a No CSS for file error.
It appears that the Vite plugin is incorrectly prepending the project root to an ...
0
votes
1
answer
32
views
In Winforms, how do I lock the size and position of an external application?
What I'm aiming to do, is to open external applications within my own WinForms application, then lock their size and position to whatever I've set it to in my program. I've been able to get them to ...
0
votes
1
answer
26
views
Where is the version syntax for Gemfiles / Bundler documented?
https://bundler.io/man/gemfile.5.html#VERSION says:
Each gem MAY have one or more version specifiers.
gem "nokogiri", ">= 1.4.2"
gem "RedCloth", ">= 4.1.0&...
0
votes
0
answers
24
views
How can I see if x-content-type-options is set?
I have a number of browsers on a number of platforms: I may be looking in the wrong place.
My Cloudflare Pages project tells me that it has set
x-content-type-options nosniff
For some reason, my ...