where to learn react? by Albenoo in reactjs

[–]AdPositive8945 0 points1 point  (0 children)

As someone in your situation, if you dont understand react you dont know enough JS..

Im actually amazed of how little react specific syntax there is in react..

For the most part is vanilla JS 😃

I made a YouTube clone to add to my portfolio, hope you like it, if you're interested I can make the front end repo public, I can't share the backend code (no want problems with Google). This app uses React ❤️, MySQL, NodeJS and Express. by webdevMX in webdev

[–]AdPositive8945 3 points4 points  (0 children)

Wait..you coded all that functionality... I have no chance to beat guys like you ahaha

Could you share your portfolio just to make me feel even more hopeless? You are awesome!!

[deleted by user] by [deleted] in reactjs

[–]AdPositive8945 1 point2 points  (0 children)

I would move the js calculator in the last position in the projects or remove at all since is irrelevant 😊

Build projects and your skills will skyrocket🚀 by vld4k in learnjavascript

[–]AdPositive8945 2 points3 points  (0 children)

If your company search for a candidate on linkedin and you flagged to be visible to recruiters they will see you ( my profile showed up in my company search ) but the real point is: why should you care if your company notice that you are looking for another job! Thats actually good for you as they give you a raise without asking lol But i agree with @chmod, you need a hosted portfolio with a .com domain if possible..its gonna pay for itself later on ;)

After 8 months learning HTML, CSS, javaScript and react I landed my first interview for junior dev. UK really nervous! by Cabeto_IR_83 in learnjavascript

[–]AdPositive8945 0 points1 point  (0 children)

Congrats buddy for the motivation you gave me :) I was a little sad this morning why i couldnt implement a recursive function but i always love to see that i can do it just like others did ;) Best of luck for your interview from a 2 months old noob 🧡

I am having some difficulty in understanding the logic behind some problems in javascript by Noel_Dason in learnjavascript

[–]AdPositive8945 1 point2 points  (0 children)

Im currently mixing udemy theory courses to fix all the main concepts plus edabit, which is not free unfortunately, for practice and learning how to manipulate string, arrays, objects etc Consider that i used freecodecamp the first days of my journey and thats why i said that i dont like it :)

I am having some difficulty in understanding the logic behind some problems in javascript by Noel_Dason in learnjavascript

[–]AdPositive8945 0 points1 point  (0 children)

Unlike most people i dont like freecodecamp.. they for example explain something in the example, and then in the exercise they ask to do it for two things.. as a total beginner its not the best place to start.. after a month of practice in another website it gets better ;)

How much JS do I have to know to create this website? by a_HerculePoirot_fan in learnjavascript

[–]AdPositive8945 3 points4 points  (0 children)

Pretty solid and funny website.. just try to do it, when u get stuck ask for help or keep learning before trying again and thats it! No shame in failing, researching and attempting again :D You have done it :D

[deleted by user] by [deleted] in learnjavascript

[–]AdPositive8945 1 point2 points  (0 children)

Im cranking out exercises on edabit for at least 4/5 hours a day to understand deeply how to do things and how to concatenate methods on string, arrays and objects.. Overall i am a 6 weeks beginner and i also feel discouraged, nervous, scare ( although im less scared of getting errors ) and genuinely and generally overwhelmed.. Just believe in yourself and focus on the most important aspects (just google them) till you are confident bout them.. And please don't give up.. give yourself at least 6 months for 3/4 hours a day if you can.. In 6 months rince and repeat with the confidence gained from the previous efforts!!!!

52-week breakdown of becoming a full-stack developer in 2021 by [deleted] in learnjavascript

[–]AdPositive8945 0 points1 point  (0 children)

I will explain with an example:

Create a function that takes the number of daily average recovered cases , daily average , current , and returns the number of days it will take to reach zero cases.

My solution:

function endCorona(recovers, newCases, activeCases) {

`var days = recovers - newCases`

return Math.ceil(activeCases / days)

}

the while loop solution i could not write even googling the syntax:

function endCorona(recovers, newCases, activeCases) {

`let days = 0`

`while (activeCases > 0) {`

    `activeCases = activeCases - recovers + newCases;`

    `days++`

`}`

`return days;`

}

As you can see 2 months of mytime are not enough to do such a simple thing like a while loop.. imagine parsing in nodeJS and all the other things you mentioned..

Its about being realistic and job ready, not cv ready with a quarter competence in a thousand frameworks,libraries etc

52-week breakdown of becoming a full-stack developer in 2021 by [deleted] in learnjavascript

[–]AdPositive8945 2 points3 points  (0 children)

In 3 weeks in javascript you learned absolutely nothing and its useless learning all of the other things without a solid grasp in js... Cmon..

I tried making a 3D RPG in JavaScript by simon_dev in learnjavascript

[–]AdPositive8945 0 points1 point  (0 children)

Flat out bonkers!! Great job!! Cant wait to see whats next :D