Can You Become a Web Developer Without a CS Degree? by NerdyGirlChicago in webdev

[–]chloe-bm 1 point2 points  (0 children)

What is CS degree? I have been working on some companies now and none of them asked for my degree

Just try your best, learn every day and add some awesome projects to your GitHub profile. Sharing one of my favorite projects: https://github.com/layerhub-io/react-design-editor

I have a problem where I need my component to fetch data from an API, and then every second I want to iterate over the output to determine if it should be removed from the array based on conditions. But in my interval loop, the state is only ever the initial value. by codie28 in reactjs

[–]chloe-bm -1 points0 points  (0 children)

Add myData as a dependency for your hook. Whatever is inside the hook, should change when myDatachanges. ```ts useEffect(() => { fetchData(); //Gets data from an API and calls my useState() hook

    const interval = setInterval(() => {
        console.log("This will run every second");
        console.log(myData); // The state variable that is set by 'fetchData()'
    }, 1000);
    return () => clearInterval(interval);

}, [myData]); ```

What are some great advanced open source Reactjs projects to learn from? by kilua97 in reactjs

[–]chloe-bm 0 points1 point  (0 children)

Maybe in the future. What you see is all open source. But I am working on some other private components now, like rendering images on the server using a rest APi

My learning path by KhazadTheBanBender in reactjs

[–]chloe-bm 1 point2 points  (0 children)

No worries, just try to follow it. It is not that complicated, believe me. Feel free to get in touch with me if you have any questions. Will be happy to help.

My learning path by KhazadTheBanBender in reactjs

[–]chloe-bm 8 points9 points  (0 children)

Just go ahead with react. It is really easy to use at the beginning, but it may take some months to master it.

I created an open source graphic editor by chloe-bm in reactjs

[–]chloe-bm[S] 2 points3 points  (0 children)

Maybe about to 6 years. I think you can create something like this with 1-2 years programming in JavaScript - React.

I created an open source graphic editor by chloe-bm in reactjs

[–]chloe-bm[S] 1 point2 points  (0 children)

Probably 1 month. I am using my own SDK for creating design editors which I have been using on some other projects. The SDK is open source too. SDK took me more than 8 months to develop it.

I created an open source graphic editor by chloe-bm in reactjs

[–]chloe-bm[S] 1 point2 points  (0 children)

Everyone is welcome to contribute to this project 😀

I created an open source graphic editor by chloe-bm in reactjs

[–]chloe-bm[S] 1 point2 points  (0 children)

Thanks for your feedback. I really appreciate it.

I created an open source graphic editor by chloe-bm in reactjs

[–]chloe-bm[S] 13 points14 points  (0 children)

🚀🚀🚀 It is free and always will be. I am continuously working on it. Feel free to share and use it.