2,522,284 questions
Score of -7
0 answers
91 views
Please help me with the design of an Agentic Chatbot System [closed]
so here is the situation:
- in my company i have assigned to build a chatbot/bot (will be internal, for ops and devs to identify and manage issues)
- what i have already build is, integrated it with ...
Score of -4
0 answers
39 views
Can't upload images using cloudinary and multer in my pern stack backend project
This error was shown when i send other data along with photo:
Image upload failed: Server returned unexpected status code:403
Actually, I was practicing a pern stack backend project using prisma ORM. ...
Score of -1
0 answers
49 views
jquery.ripples causes random glitches after running for some time
I'm using jquery.ripples (v0.6.3) as a full-screen background effect in a Next.js application.
The ripple effect initializes correctly and works as expected. However, after the page has been open for ...
Score of 1
0 answers
48 views
Text input stops receiving keyboard events after cancelling beforeunload confirmation in Chrome
Chrome/Edge lose keyboard input after cancelling beforeunload dialog when closing browser with multiple tabs
I'm investigating what appears to be a Chromium-specific issue and would like to know ...
Score of 2
1 answer
92 views
lit removing conditional checked attribute from radio
I have the following code which I am using to try check my radio button:
return html`<input type="radio" name="LogType" class="form__control form__control--radio" value="${Constants.LogTypes.Member}...
Score of -4
0 answers
55 views
Getting this error: Uncaught Error: Objects are not valid as a React child (found: object with keys [duplicate]
I'm trying to make a simple cart and I keep getting the error above in addToCart function.
My obj looks like this:
export const menu = [
{
id: 1,
name: "Opção 1",
opts: [
...
Score of 0
1 answer
80 views
Tree Shaking / Minifying Firebase using esbuild
I'm building a web app that uses Firebase Auth. I don't use any other Firebase features.
The current version of Firebase is over 600kb. The Firebase Auth package on NPM states "This package is ...
Score of -1
1 answer
99 views
Attempting to hide a video element once it finishes playing [duplicate]
My goal is that once someone enters a specific webpage, a full screen video plays for 3 seconds and then disappears once it's over, revealing the main content of the page. I know nothing about ...
Score of 0
0 answers
37 views
React Native Nested FlatList: Child FlatList viewability callbacks are triggered before the child is actually visible
I'm using a nested FlatList setup where the outer FlatList renders a vertical list of sections, and each section contains a horizontal FlatList. Both the parent and child lists use ...
Score of 0
1 answer
63 views
Content Security Policy (CSP) "unsafe-hashes" does not work as expected. Browser expecting different hash
Consider the following single HTML file:
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-hashes' 'sha256-5OdtjsKuRneco+...
Score of 2
1 answer
108 views
How to read the actual value of a cell as a string from an Excel file using Exceljs in Node.js?
I have written a function that reads in data from an Excel file using the Exceljs library:
const exceljs = require('exceljs');
async function readExcelFile(excelFile) {
const table = [];
...
Score of 0
1 answer
49 views
dynamic links with expo React Native useAudioPlayer
I am trying to play audio dynamically from a list with more than 1000 different audio files (only a few seconds each), but I keep getting the error "invalid call" when I try to load my audio ...
Score of 0
3 answers
106 views
Need help in 419 token Mismatch in Laravel Sanctum SPA [closed]
The issue what i am facing is like i have configured Laravel Sanctum SPA just hours ago. It was literally working and now when i again used it it did not work i configured everthing which i will show ...
Score of 0
1 answer
61 views
How to see service worker errors in Chromium debugger?
I have followed the instructions in the MDN page Using Service Workers.
My code is the same as on that page except, of course, for the specified array of resources to cache.
In the Chromium debugger, ...
Score of 0
1 answer
67 views
iOS keyboard breaks page layout when opened
I am using Vite + React + Bootstrap. This is my code:
componentDidMount() {
this.updateAppHeight();
if (window.visualViewport) {
window.visualViewport.addEventListener('resize', this....