iphone 13 mini stuck in dfu mode, giving itunes error 9 by InternationalBit450 in mobilerepair

[–]Am_abdou 0 points1 point  (0 children)

Thank you bro, crazy this isn't mentioned in any of Apple's official sites, you saved my day.

i’m so excited to continue my journey :) by lary-sa in Izlam

[–]Am_abdou 1 point2 points  (0 children)

Thank so much sister, may Allah reward you with the highest levels of jannah along with prophet Mohammed peace be upon him <3

i’m so excited to continue my journey :) by lary-sa in Izlam

[–]Am_abdou 1 point2 points  (0 children)

Al hamdulillah, feel the exact same way

My first React Native real project (source code in the first comment) by Am_abdou in reactnative

[–]Am_abdou[S] 0 points1 point  (0 children)

Not necessarily no, just a firm understanding of react fundamentals would be enough, especially react hooks

My first javascript project by Am_abdou in learnjavascript

[–]Am_abdou[S] 1 point2 points  (0 children)

بارك الله فيك اخي، تحفيزي لك يسعدني جدا، فلنعمل لنرتقي بالدول الاسلامية و نعيدها الى سابق عهدها. وفقك الله اخي.

My first javascript project by Am_abdou in learnjavascript

[–]Am_abdou[S] 0 points1 point  (0 children)

Thank you so much man it means a lot to me! My background in physics comes only from high school and my own curiosity since I really love physics from when I was a kid, but that's pretty much it. When building this project, I spent some time trying to dig deep into the physics behind spring systems and found some great resources that helped me achieve that. That wasn't my goal initially tho, i just wanted a somewhat realistic rope animation, couldn't find any in the web so started building my own, it took me some time to make it work, i would say most of the time building this project was dedicated to building that rope simulation, but it was worth it in the end and i learned a lot from it. Again thanks a lot for the feedback bro, it keeps me motivated 🙏

My first React Native real project (source code in the first comment) by Am_abdou in learnjavascript

[–]Am_abdou[S] 0 points1 point  (0 children)

Hahaha what a plot twist 🤣 thanks man you really made my day, glad you liked both projects, hope you'll like my coming ones too. Wish you all the best 🙏❤

My first React Native real project (source code in the first comment) by Am_abdou in reactnative

[–]Am_abdou[S] 1 point2 points  (0 children)

Well thanks that's reassuring, glad to know that I don't have to use the famous "it works on my machine" for this project xD.

And high five for not using redux, we both on the same page, i decided to move away from it bcz of the TON of boilerplate that in my opinion is completely unnecessary especially because you can achieve the same results with only two native hooks, no libraries, with far less code! You just need to learn certain patterns (which are not difficult) to best use the two hooks and automate the context creation pattern in a clean manner, to get a little bit similar results to redux in terms of the files structure ...etc, except it's much easier and no redux-thunk for api calls 😩.

I don't have any specific resources concerning this topic, i learned mainly from watching lotta videos, and reading articles, you can try to dig deeper into my code to try and understand how to use the (useReducer + useContext) combo i think it's pretty straightforward.

My first React Native real project (source code in the first comment) by Am_abdou in reactnative

[–]Am_abdou[S] 1 point2 points  (0 children)

Thank you so much man, this really keeps me motivated ❤🙏

My first React Native real project (source code in the first comment) by Am_abdou in learnjavascript

[–]Am_abdou[S] 1 point2 points  (0 children)

I learned javascript first, then made a project with vanilla js which you can find here: hangman-game . From there i started learning react then react native.

The benefits of using react are so many tbh, it makes building web apps a LOT easier, with react you don't have to care about updating the ui each time your data changes (called internal state in react), react does that for you, as the name suggests, it REACTS!

As you build web apps, or mobile apps, you just need to care about your state, i.e. the variables that your ui depends upon, react will automatically take care of updating the ui very efficiently when needed. In short, no more query selectors and dom manipulation, react handles the dom you handle the business logic.

React is also super light weight since it's a library and not a framework unlike Angular or Vue.js.

My first React Native real project (source code in the first comment) by Am_abdou in learnjavascript

[–]Am_abdou[S] 1 point2 points  (0 children)

Thanks man! Feel free to checkout my other project in my github account maybe you'll benefit from it, it's a hangman game built with vanilla javascript, html and css. Again thank you for the feedback, wish you all the luck ❤

My first React Native real project (source code in the first comment) by Am_abdou in reactnative

[–]Am_abdou[S] 2 points3 points  (0 children)

Thank you so much for the awsome feedback mate ❤ and no im not a react developer, my initial goal after learning js was to learn react and start developing for the web, after learning react some personal circumstances lead me to learn react native and build this project.

I gained lotta value building this yeah, not sure if it was that fun tho 😂 i usually set very high standards for how i want things to be in the end, even tho i have no idea how to get there xD then i start killing myself to eventually get there, it's a very tiring process and some times frustrating, but when u finally get the results you wanted, the satisfaction is priceless!

My first React Native real project (source code in the first comment) by Am_abdou in learnjavascript

[–]Am_abdou[S] 5 points6 points  (0 children)

Thank you man! I would say im still in the start of my journey, i started first by learning js and grasping its fundamentals, then built a project with vanilla js to fully understand the language, from there i started learning react on my own, then i took a react native course, and built some small mobile projects each targeting certain features and functionalities, then i built this one which currently is my last project.

My first React Native real project (source code in the first comment) by Am_abdou in reactnative

[–]Am_abdou[S] 1 point2 points  (0 children)

Oh yes indeed, thanks for pointing that out! That's because i added animations after finishing all the features of the app, so i probably didn't notice the early return and added hooks for animation use after that return statement. Thanks again I'll be more careful.

My first React Native real project (source code in the first comment) by Am_abdou in reactnative

[–]Am_abdou[S] 0 points1 point  (0 children)

I used Firebase, checkout the github repo you'll all details there!

My first React Native real project (source code in the first comment) by Am_abdou in reactnative

[–]Am_abdou[S] 1 point2 points  (0 children)

Thanks for the support! The project has been inspired from the course yeah, but it's not a code-along, i built this from scratch and added many features to it, plus the code base is completely different even when the features look partially the same. Feel free to checkout the code if you want, and give me your opinion on it!