With over seven years of professional experience working with startups, I am a seasoned front-end developer who is passionate about staying up-to-date with the latest technology. Alongside my professional work, I also actively contribute to open-source projects and enjoy experimenting with new tools and techniques.
I have mostly worked with JavaScript, React, Next.js, TypeScript, Tailwind CSS and Styled Components. I have also built apps with Redux, Zustand, Material UI, Chakra UI, Ant Design, Vite and GraphQL. I also have experience working on Ruby on Rails applications.
Nothing here yet.
Consider a state for a blog where you have the following states: ui (which contains loading and error) data (which contains the blogs) metadata (which contains other flags like hasNewBlogs which is yet to be fetched from the server) How will you ma...
AAaron commentedSuppose I want to create an app which has forums, blogs and groups. Now, each of them can have comments. Should I create tables like ForumComments , BlogComments and GroupComments separately or should there be only one Comments model and I should st...
Join discussionIt's about how you go on implementing and re-wiring things so that both of these things works smoothly. Do you use any more plugins to help working with this? Material UI: http://www.material-ui.com Styled Components: https://styled-components.com
MMax commentedSuppose you have a bunch of toggles and they all fire async requests. Now, how would you fire the requests? Would you store all the requests in a queue and fire only the last request since it would contain the current ui state? Or, would you fire one...
PPhilip commented