2,522,828 questions
Score of 0
0 answers
5 views
Frameset that displays random pages
I am trying to make a frameset that displays random pages from my site. There are a handful of pages that need to open in new tabs and are excluded. I'm not sure how to link this JS script with the ...
Score of 0
0 answers
22 views
Razorpay Payment integration issue [closed]
I have integrated razorpay on my MERN Stack website. Whenever I click the upgrade now button on my website, it's not redirecting to razorpay Instead your browser not supported alert comes. I tried ...
Tooling
0
votes
1
replies
47
views
What's the best tool/library to generate unique Emoji Kitchen-style combos for chat apps?
I'm building a feature for a chat app where users can mix two emojis together to create a fun, unique combo image, similar to Google's "Emoji Kitchen" in Gboard. The goal is to make ...
Score of -3
0 answers
63 views
Hide certain div when Woocommerce product price is less than 5 euro [closed]
I want to hide a certain div (where my gift wrap options are displayed in) on the Woocommerce product page when the product price is less than € 5.
This the code I have nog, but that doesn't seem to ...
Advice
1
vote
1
replies
75
views
IOS application Distribution without appstore
I'm currently working as a react native developer,
i want to distribute my application locally using drive without using appstore and playstore
I know i can implement it on android for apk direclty ...
Score of 0
1 answer
46 views
Error event not triggered after Vite build
I'm working on a Vue.js project and in the App.vue file I wrote this code that reacts to all exceptions and rejections of my app.
window.addEventListener('error', event => {
errorDialog.value ...
Advice
0
votes
2
replies
50
views
Is there a way to use specific webm chunks from MediaRecorder?
If I send separate chunks from MediaRecorder to the server, how can I make each one playable?
Only the first chunk contains the header/meta information.
Is there a reliable way to create a header, for ...
Score of -7
0 answers
111 views
How would you make a container and its elements fixed in size, without scrolling [closed]
I have a list of columns and rows, and sliders where you could edit their dimensions. If their dimensions get too big, how would you shrink the elements in the grid, to remove any sort of scrolling. ...
Best practices
1
vote
4
replies
122
views
c++ node js Api
I am developing a Node.js application that uses Winston for logging and relies heavily on asynchronous operations. For intellectual property reasons, I need to deploy this application on a client-...
Best practices
0
votes
1
replies
62
views
How to pause SpeechSynthesis based on ambient microphone noise using the Web Audio API?
I'm building a web application that reads text aloud using the Web Speech API (SpeechSynthesis). I want speech to automatically pause when the surrounding environment becomes noisy and resume once the ...
Best practices
0
votes
1
replies
66
views
How to implement a global voice navigation system in React using the Web Speech API and Context API?
I'm building a React application with a global voice navigation feature using the Web Speech API. I'm managing speech recognition, speech synthesis, keyboard shortcuts, and page-specific voice ...
Best practices
0
votes
2
replies
53
views
Is using CryptoJS AES with a Firebase UID as the encryption key a secure approach?
import CryptoJS from 'crypto-js';
const GLOBAL_SALT = 'AarthSaathiEncryptSaltSecretKey';
/**
* Encrypts a field value client-side using a key derived from the user's UID.
* @param {string} value ...
Best practices
0
votes
3
replies
62
views
How to encrypt and decrypt specific fields in a React Context before storing them in Firestore?
// UserContext.jsx — global user profile state
// Handles missing Firebase gracefully (works without credentials during dev)
import { createContext, useContext, useState, useEffect } from 'react';
...
Score of 0
0 answers
74 views
How do I add a link to a draggable element that doesn't open when you drag it, only when you click it?
The drag works just how I'd like it to, but I'd like it not to trigger open link when dragged. I've tried fiddling around with my little knowledge of JavaScript, however I just can't seem to get it to ...
Score of 0
0 answers
93 views
image is cut off in HTML [closed]
function clamp(x, min, max) {
return Math.max(Math.min(x, max), min);
}
function b(canvas, x0, y0, x1, y1, color = '#000000', func) {
const ctx = canvas.getContext('2d');
x0 = Math.round(x0);
...