2,523,130 questions
-3
votes
0
answers
22
views
Calling .start() on AudioBufferSourceNode with valid audiobuffer yields no audible results [closed]
I am using the function processOffline exactly as it is defined here:
https://github.com/cutterbl/SoundTouchJS/blob/master/packages/formant-correction-worklet/src/processOffline.ts#L102
I am also ...
-2
votes
0
answers
19
views
Looking for Free Guidance on Configuring Tailwind CSS with React (Not a Paid Mentorship [closed]
I’m working on configuring Tailwind CSS with React. I’ve followed the steps, but I’m stuck and can’t get it fully working. If anyone could assist me or walk me through the setup, it would be a huge ...
Advice
1
vote
2
replies
56
views
How would I create elements that float/move in the background?
I want to create something similar to the image below, just with different coloured circles, no blur and displayed behind every other element. I'm fairly new to javascript and I'm not sure what's the ...
Advice
0
votes
2
replies
77
views
Programming| System Development
Can someone provide me with a structured framework for web app development, covering the key stages from planning and design to deployment and maintenance?
Idea:
Requirement analysis → Understanding ...
-3
votes
1
answer
113
views
How do I use a function which only returns a promise? [duplicate]
I am using the function processOffline exactly as it is defined here.
I have 3 processOffline sources defined, and I want to store them in a variable within the global scope. Ultimately, I want to ...
1
vote
1
answer
99
views
Automatically enclosing sections of unrelated elements in <div> tags
I'm trying to create a script that will enclose each chapter of writing in a div element, so that I can automate tabination on posts without having to manually implement it each time. Take something ...
Best practices
0
votes
4
replies
96
views
How do I generate random words from two different lists and combine them into one search?
I haven't been able to find the information for this specific issue (only random word generators and unscramblers). I'm mainly looking for best practices related to the problem.
I want to generate ...
1
vote
0
answers
63
views
Cascading callback in JQuery AJAX call not working [closed]
I have three selects that I am trying to populate that have relationships between them. To reduce duplicating code, I created a single function that I thought I could use multiple times (see below). ...
-1
votes
0
answers
59
views
Cookie Receiving Bug
This is my middleware for checking token. I am getting cookie in browser but still problematic. What can be the issue? anyone know about this bug?
import type { NextFunction, Request, Response } from ...
-4
votes
0
answers
51
views
Where to fetch and store global data (user, venue, socket) in React [closed]
In large applications we need global data, which means some data needs to be fetched first/globally,
For example user data needs to be used in whole app
Current selected venue data needs to be used ...
2
votes
1
answer
148
views
In a php program, I include some echo "javascript code..." but it doesn't execute
This is the end of the program. It downloads either a PDF file or an ePUB file.
This part works very well. But the alert doesn't show up and the redirection doesn't occur. What is wrong ?
The code :
&...
-1
votes
0
answers
45
views
How do I trigger payment failures/errors from Cybersource Universal Checkout checkout.mount()
We're implementing a payment page using Universal Checkout api v1. The integration is working. We can successfully post payments and display success messages on our page. I would like to test look ...
-3
votes
1
answer
90
views
Is Array.prototype.reduce more efficient than Math.sumPrecise for summing an array of integers?
The classical way for summing an array of numbers in JS is arr.reduce((a, b) => a + b).
In 2026, Math.sumPrecise() was added to the specification to enable summing a list of floating-point numbers ...
-1
votes
0
answers
70
views
How to make anchor links clickable in a WordPress post title [closed]
I have a WordPress website where I only have the Editor role, not Administrator access. This means I can create and edit articles, and I can add Custom HTML blocks inside articles.
I want to make an ...
Tooling
0
votes
2
replies
84
views
`uv run` for `node script.js`?
I always run my Python scripts this way, as I usually need to run small snippets of code for various tools: (https://docs.astral.sh/uv/guides/scripts/#using-a-shebang-to-create-an-executable-file)
#!/...