I think I should start off by mentioning I have Mac OS and am using Safari browser. This script is a web-scraper that is supposed to search for a given type of
I want to create custom component and build with webpack // packages/button/src/index.js import React from 'react'; function Button({ href }) { return <a
I am trying to dynamically import modules but getting following error - Compiled with problems:X WARNING in ./src/.../useCustomModule.js 21:21-56 Critical depen
Context and goal I have two fetch/then chains that build elements that I need for an event handler. The first chain loads data to build a <select> element
const AddItem = () => { const [user] = useAuthState(auth); const navigate = useNavigate(); const handleAddCar = (e) => { e.preventDefault()
Write a function that takes an array of consecutive (increasing) letters as input and that returns the missing letter in the array. It will be always exactly o
I have this set of data : [ { CIRPIC: 'SAL', ALLPIC: [7, 8, 9, 10] }, { CIRPIC: 'SUC', ALLPIC: [5, 6, 7] }, { CIRPIC: 'LI3', A
I have the following regular expression which matches on all double quotes besides those that are escaped: i.e: The regular expression is as follows: ((?<![
For as long as I can remember, Typescript didn't warn about unresolved/undefined types in .d.ts files. I could run tsc and it wouldn't have any errors. I alrea
I have been working with the react-native-gradient and I am getting the following error regarding the package. Error Invariant Violation: requireNativeComponent
i want to recreate this effect that is visible on https://www.tella.tv/ in tailwind css: i tried to inspect their source code but i couldn't make it work in my
I've built an authorization server with Express.js that works when testing with Postman where it saves the access and rotating refresh token as signed cookies.
I have a Modal that the user selects categories from, and then that category loads into a FlatList on their profile page. When the first category is selected, i
I'm trying to build a mobile application with expo and react-native, I have a screen where I need to generate a passphrase for the user and I'm using react-nati
I'm using snipcart in a nextjs with strapi app. I receive an error when processing a payment : A 'cart-confirmation' error occured in Snipcart. Reason: 'produc
What I want: Going on amazon.com typing in search "a book about 42" and then, without pressing enter or clicking on search-button, I want to start the search v
So I'm trying to make an API Fetch from a Form Input (The Search bar of my site), I Want to add Text to whatever was inputted to the Text Field and then send it
I am trying to validate a form. I am successful on that, but if the alert kicks in, the page refresh and since i am using a pop up, this one closes and i have t
I have store.js import {configureStore, combineReducers} from "@reduxjs/toolkit" import { persistStore, persistReducer, FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE,
I'm trying to create a simple web application form. It requires the user to input their information, and click submit which ideally would hit an api and store t