40,994 questions
-2
votes
0
answers
22
views
How do I connect my backend communicate to my fronend? [closed]
I am working on my first full-stack project, where the backend consist on spring boot, postgress, etc. and the frontend consists of nextjs. Now, I always used reactjs and Firebase for the backend-like ...
0
votes
0
answers
47
views
Issues installing Flutter on Huawei laptop (Windows OS)? [closed]
I’m trying to install and set up Flutter on my Huawei laptop running Windows 11. I want to use Flutter for mobile app development, but I’m not sure if there are any specific steps or requirements for ...
0
votes
0
answers
24
views
Geo IP locaton API for website [closed]
I am new user here. I am not sure if this is correct place to ask.
The question for one of the website we are working on is hostion.com we required a website should open in INR price when it is open ...
0
votes
1
answer
30
views
Get type for an object's values where each object is of type <string,function>, and each function have different argument
The object looks like this
export const templates = {
[EventType.EventType1 + OutputSources.Email]: (params: { documentName: string; link: string }) => {
return "some html data";
}...
0
votes
1
answer
1k
views
How to read qr-code from video , without passing deviceId in zxing's js library
The decodeFromInputVideoDevice function only works only when we pass the deviceID to it .
It there any other function where could directly pass the camera stream , without passing the deviceId
I ...
0
votes
1
answer
48
views
Why inner element's style doesn't apply in tailwind?
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<...
-1
votes
1
answer
112
views
Why is some of my website content not loading?
Every time I reload my website some of the assets or resources won't load. Sometimes everything loads, sometimes half of it loads. The resources will vary each time on reload. How would I fix this?
I ...
2
votes
0
answers
2k
views
Nativewind with React-native, <Image className="h-7 w-7"> does NOT show an image on the web
I am fairly new to coding and am trying out Nativewind for my react native app, I'm using expo and testing live with the web compiler as well as an Android emulator.
The following code works fine on ...
0
votes
2
answers
686
views
Azure giving error with long URL with Token
I have hosted a front end app using React and React Router Dom to Azure.
I have a reset password link with token as below
https://abc.azurewebsites.net/reset/CfDJ8AkOTLe70aJDl6Jq93G40f4OoMX35xv1bg73%...
-1
votes
1
answer
32
views
PHP Objects and functions difficulty [closed]
I am having trouble with objects/classes working with functions in php. This program should echo "New book created" twice for both books but it just has a blank page. In visual studio code ...
2
votes
0
answers
155
views
Implementing Github like network graph
I am trying to implement Github like network graph in a React app for my next project. The basic idea is to fetch commits in a repo through Github API (sample response: https://api.github.com/repos/...
0
votes
2
answers
205
views
My prettier format breaking vue code (ref<number>(0)) with typescript
Before Format:
const activeIndex = ref<number>(0)
After Format:
const activeIndex = ref < number > 0
Prettier Output:
enter image description here
Prettier Config:
{
"$schema"...
0
votes
1
answer
158
views
Python Selenium download button click
I'm trying to download some reports from amex site.
site screenshot
I faced a problem that the download button is not visible/clickable for the selenium.
selenium.common.exceptions....
1
vote
1
answer
309
views
Fetching Table from website | web scrapping - Powershell Invoke-webrequest
Trying to fetch the table of content using h3 tag.
link- https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates
Trying to fetch the whole table of 'SQL Server ...
0
votes
1
answer
34
views
Using Css separately at styled-components
I made a code using styled-components.
Used map function for making repeated components and it worked well.
But I want to use 'clr' in the 'cardProperty' array for color. So I need to deliever 'clr' ...