Hello @discord_support . My Discord account was compromised over a month ago by the hacker and the hacker put 2FA on both my discord and discord support accounts. I regained access to the email that was used to register this Discord and support account, can we escalate?
Hi @TeamYouTube ! My YouTube/Google account was hijacked by a hacker. The hacker deleted my YouTube and put a parental control over it. However, I found out 2 offline devices that has that account before it was hacked and I have proof of security code. Can we connect?
These are based on my experiences. I take mental notes of my interviews and write them down later to evaluate what I did right and wrong. I'm getting more and more progress to get my first full time development position.
Hope this helps for anyone's who's struggling!
3 - Don't drag it for too long.
So it means that you don't need to talk about every single projects you worked on. But you're free to ask the interviewer if they're interested to learn more about your projects.
@towernter I fell into that same pain when I first learned JS and React together in 2016. I learned my mistake and ended up picking up React years later.
Looking back to my work over half a year ago, I noticed the JSON output weren't as strong as I used to think. Instead of:
{ name: year, child: { name: 2020, child: ... }}
I should use (by my current standards):
[{ year: 2020, make: Toyota, model: Corolla, data: {...}, ...]
First thing first, I would like to demonstrate the login system for a login and editing system I built from the ground up. This is made in React + Typescript and PHP as the back end.
This is shortly after I learned the fundamentals of React. In this project, I learned how to handle:
- Larger data through API requests
- Writing a user login system
- Organizing multiple React components