Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All solutions

  • Submitted


    What are you most proud of, and what would you do differently next time?

    I decided to choose a small project for my first introduction to TypeScript. I am proud that in a fairly short time I was able to implement the project in TypeScript, now I feel more confident.

    What challenges did you encounter, and how did you overcome them?

    The difficulties mostly concerned TypeScript only, because the application itself is quite small and simple, and the technologies I used were no longer new to me, and with the help of this project, I mostly consolidated my knowledge.

    What specific areas of your project would you like help with?

    It would be great to get feedback on the architecture of the application, because I only recently got acquainted with FSD and, of course, everything related to TypeScript, interfaces.

    I'm still a beginner, so there are a lot of pitfalls hidden for my eyes, so if you see something in my project that needs to be paid attention to, please tell me about it!)

  • Submitted


    What are you most proud of, and what would you do differently next time?

    I am proud of this project as a whole, because it became my first solid and fairly large project on React for all the time I studied Frontend.

    I still lack the experience of commercial and collaborative application development to avoid such implementations, which can turn into problems when changing the Backend part or increasing the load. But I plan to implement more projects and connect new technologies to the stack.

    What challenges did you encounter, and how did you overcome them?

    One big difficulty for me was the Redux Toolkit. I have encountered many problems in understanding the order in which certain features work. Overcoming is simply the time, patience and perseverance that must be spent to solve the problem.

    What specific areas of your project would you like help with?

    I definitely have problems with a long download, as well as the occurrence of the "failed to fetch" error, which sometimes is and sometimes is not. It would be great if you could help me with this.

  • Submitted


    During the implementation of the project, I encountered a problem, namely the vertical centering of the element relative to the entire page.

    I'm not sure I chose a good solution. I wrapped the main element in a container, for which I set the following values:

       position: fixed;
       top: 0;
       bottom: 0;
       right: 0;
       left: 0;
       display: flex;
       justify-content: center;
       align-items: center;
    

    After that, the main element was centered vertically.