Suppose I have a <div> whose child nodes are dynamically generated. I want to listen to those child node changes of the parent <div> And then later loop over those child node...
I know frontend , learning backend DB, but I struggle with database design/ relationships. Couldn't find a good resource for SQL dbs. Any good resources/tuts/projects you guy...
In my react app there is option to add images and I dont users to add profane/ adult images Is there any JS libray that checks images for that?
Is there a way to host a single file that acts as API? I tried GitHub gist, it works but after every edit the url changes
Whats the point of private in TS when compiled to JS i could still access the fields? A simple # could work ...?
On my server side I am doing res.send("Success") and on client i tried to log the response but "Success" string is not shown .. How can I get that res.send() value? So I had ...
setState(count+1) is async setState(p => p+1) is sync Right?
Does Discord or any messaging app use Sockets for their messaging? If yes, then every channel needs to have a separate socket connection right?
https://dribbble.com/shots/12571287-Sign-Up-Day-1?utm_source=Clipboard_Shot&utm_campaign=shubhamverma18&utm_content=Sign%20Up%20(Day%201)&utm_medium=Social_Share
In React, I need to loop over an array of objects, where the object keys and values are unknwon HOw can it be done? I tried Array.map> Object.keys(obj).map => return but it w...
How often are Generator, yield ,proxies, weakmap concepts used in JS? Worth learning?
Is doing something like this in React suggested? computing values and assinging to props?
Why am i getting error here and not for interface Person?
https://dribbble.com/shots/13927487-DailyUI-003-Landing-Page How is it? Honestly, I am not satisfied by it coz all I did was take a svg then extracted it color to apply.
Hi fellow Devs! I have a question for you. If in an interview, A company asked you to learn a dying tech (Ex:Angular ) (Don't bash on me for taking it as example ) What woul...
Got a question.. If apps likes Wa, Telegram, discord stores the msgs in encrypted form.. Then using the search features of these apps how are they able find the messages?
Here out my dumb question, How does blockchain provide privacy if everything can be tracked from its chain?
Are there any open source alternative to Google Drive | Dropbox that you guys use?
Is there a way to cache scripts tags? Suppose I use jquery script tag and now my internet is gone... on the next refresh the script tag wont load
I wrote a useFetch hook but that hook can only be used at root level, i want to use it within functions/ if-else How can it be done?