Практика Shadowing: How I Learned to Code in 4 Months & Got a Job! (No CS Degree, No Bootcamp) - Изучайте разговорный английский с YouTube

B2
I dropped out of college, was in debt, working 60 hours a week, hated my job, and most importantly, I felt stuck.
⏸ Пауза
121 предложений
Если предложения слишком короткие или длинные, нажмите Edit, чтобы их изменить.
1
I dropped out of college, was in debt, working 60 hours a week, hated my job, and most importantly, I felt stuck.
2
This is the story of how I learned how to code within four months, and I got a job.
3
I did it with no computer science degree or a coding BootCamp I am going to explain exactly what I learned, how I got a job, and how much that job paid.
4
Let's go. Before I got into tech, I was working a lot of dead end sales jobs, because I dropped out of community college and I didn't really have any other skills.
5
I didn't like the idea of always having to hop from job to job If I didn't like something.
6
I wanted something with a little bit more career mobility long term.
7
I didn't even really know what coding was.
8
I just knew that the tech industry was, let's say, a great environment for $180 grand now $200 ish $250,000 $400,000 annually growth... Yeah.
9
By the way, I'm not knocking sales.
10
I think sales is a really important skill to learn.
11
I just needed a change, and it really just wasn't for me long term.
12
And I wanted to gain the ability to build something of my own.
13
The idea of building something from zero to one seemed like a superpower to me.
14
Day one, I just went on Google and I typed in how to code.
15
That's when I found a site called FreeCodeCamp, and I started to learn about web development.
16
I quickly learned about HTML, CSS, and I learned about my first real programming language called JavaScript.
17
There's a bunch of different programming languages that you could learn, but I personally chose JavaScript because I wanted to build web apps.
18
Even major companies like Uber and Airbnb use it, and there's a massive demand for it in the job market.
19
By using FreeCodeCamp, I started to learn the basics of coding.
20
I learned things like variables, loops, objects, and functions.
21
But even after doing the tutorials, I didn't really feel like I could apply to anything.
22
And I still didn't even know how to do something as basic as building a website.
23
And I realized that I learned how to code, not exactly how to program.
24
I was writing code to solve logic problems, but I didn't know how to program, which is using the code to build something useful.
25
At this point, though, already I was starting to love the journey.
26
I really liked problem solving, and I could see myself doing something like this long term.
27
So I did what any sane person would do and I quit my job and I moved to Korea to minimize my expenses.
28
And I decided to learn full time.
29
Learning full time was a lot harder than I thought.
30
I've actually never studied anything this complicated or tough before, and I was quickly starting to realize that I didn't really know how to study at this pace.
31
I would sit in front of my computer and hours and hours would go by.
32
That was when I went online, I typed in how to learn.
33
And I found a course called "Learning how to Learn" by Barbara Oakley.
34
This course was life changing.
35
My two main takeaways were one, it taught me how to learn in space segments, A technique called Pomodoros.
36
And the course taught me that I needed to create a dedicated space for learning.
37
So I joined a Coworking space, so I could focus better.
38
Now, armed with new knowledge, I got back to studying. And it worked.
39
Here's what a normal day looked like.
40
08:00 a.m wake up.
41
8:30, Head to the train station.
42
09:00 a.m. Arrive at the coworking space.
43
9:15, Coffee Journaling reviewing the curriculum.
44
9:30 to 12:30, I would have my first study session, where I did 30 minutes increments of Pomodoros.
45
From 12:30 to 1:30, I would eat lunch and take a small break, then back to studying.
46
From 02:00 p.m to 6:30, it was more 30 minutes increments of Pomodoros until I was ready to head out.
47
From 6:30 to 7:30, I would gym three times a week, And then 8:30 to 9:00, I would eat dinner with my grandma, then help her clean.
48
This was my schedule for six days a week, no exceptions.
49
The next part of FreeCodeCamp was a lot more challenging.
50
Front end projects.
51
They essentially give you a list of projects that you have to build using HTML, CSS and JavaScript.
52
To me, this felt like a massive jump because I never actually built anything before.
53
I felt stuck at this stage until I found a YouTube channel of this guy named Stephen who would stream himself building these projects line by line.
54
By copying him and recreating what he was doing, I was able to use that experience and build the next couple of projects on my own.
55
I also found a great resource called watchandcode.com, where you watch and code.
56
By following along once again and modeling others, the concepts really started to take hold, and I was really starting to understand what I was doing, not just solving a math problem.
57
In exactly one month, I ended up earning my FreeCodeCamp Front End Developer certificate.
58
I was learning a lot, but I never actually built anything full stack before.
59
Something with a front end or an interface, the thing that you see within the browser.
60
A database where all the information lives, essentially, and a server which handles and manipulates all the data in the back end by taking in requests from the front end.
61
So I still felt like an imposter and not a real developer.
62
You're not an intellectual. You're a fake and a fraud.
63
So to become a programmer, I decided to build my first full stack project.
64
Remember Stephen with a YouTube channel?
65
I reached out to him to get his assistance to help me build my first full stack web app, we decided to meet three times a week.
66
Here's what we did.
67
We picked one major overarching project which will teach me the basics of CRUD, which is Create, read, update and delete.
68
These are the foundations for any web application.
69
I decided to clone Pinterest.
70
I honestly don't think I would have gotten a job without this next part, so pay attention.
71
I asked Stephen to treat me like a real junior developer working at a company.
72
We implemented a project management tool called Jira.
73
We used Jira to compartmentalize the entire project and write the requirements of exactly what I'd be building.
74
This taught me how to estimate my work and plan how to build an entire web app from zero to launch.
75
We also set the project up on GitHub, which is a version control application.
76
This taught me how to develop different branches for when I was working on certain features, and I could learn how to control different versions of the code.
77
Most tech companies use some version of the two applications because being a developer isn't just about knowing how to code.
78
It's about knowing how to work collaboratively with other people as well.
79
Stephen grilled me on our pair of programming sessions.
80
He was very strict about me keeping the deadlines and the estimates that I originally wrote out for myself.
81
He would constantly question why I was doing what I was doing.
82
And he even taught me the concept of DRY, just Don't Repeat Yourself, or essentially just making reusable code.
83
I had to learn how to build by Googling for answers and using sites like Stack Overflow.
84
And he would leave me a lot of comments on things that I needed to change.
85
So I learned how to debug my code on my own.
86
This made me feel like I was a real developer.
87
at this time, I supplemented my learning journey with Udemy courses on React and Node because these were the two frameworks that I chose to build my Pinterest clone.
88
As a result of building my first full stack project, I ended up learning how to do things like how to design a database, build APIs, set up Auth, and eventually push the app to a cloud server.
89
These are all things I would have never learned by just doing tutorials.
90
And in around two months, I finished my first full-stack web app.
91
I remember when I finished the app, I felt like a real programmer.
92
That's when reality set in and I realized I'm still broke.
93
I haven't made a single penny in over a couple of months, and I still needed to find a job.
94
It was time to see if everything that I learned was actually worth anything.
95
First, I defined the job that I wanted.
96
I wanted to be remote. And most importantly, I wanted to work for a small to medium sized company, because I hate working in a corporate environment.
97
I found all the jobs that fit my parameters on sites like weworkremotly.com and remoteok.io And instead of just applying to these jobs, I found the contact information of the hiring managers and developers who worked at the company, and I messaged them to introduce myself.
98
I explained exactly what I had learned up until this point,what I was looking for.
99
I even included the link to my GitHub so they could see the projects that I had built.
100
Most importantly, I included an offer that I know that they couldn't refuse.
101
I offered to work for free.
102
And I understand guys, not everyone can afford to do this, but I had originally estimated that this was going to take me around four months anyways.
103
And I had another month of time that I could essentially dedicate to learning.
104
I knew all I had to do was get my foot into a company,I could essentially learn there and then prove my worth over time to leverage that into a real job long term.
105
Overall, I found around 22 jobs I thought fit the parameters of what I was looking for.
106
I got around six responses. From those responses, I got four interviews.
107
And out of the four interviews, I ended up getting three legitimate job offers.
108
Even though I had offered to work for free, after the technical interviews, the employers thought that I had enough skills at that point where I was worth hiring for a full time job.
109
I ended up choosing the company with the best opportunity to learn, and that also happened to have the best compensation package as well.
110
My first salary was $50,000 a year, and then after my probationary period, I was making $65,000 a year.
111
My benefits kicked in like health and dental.
112
But the biggest perk for me was that I got to work remotely the entire time as long as I worked the US time zone.
113
I'm not saying that you'll be an expert developer if you follow this plan.
114
I'm just sharing what I did to learn just enough to land me a job, as most of the progress that I've had as a developer all came on the job.
115
No luck here, just focused effort.
116
Now, I've been working in tech for over a decade, and let me be the first to tell you that nobody cares about your credentials.
117
Learning how to code was mainly two things learning how to solve problems, and two, persisting until you find the answer that you're looking for.
118
If you're interested in seeing us learn more cool stuff, make sure to subscribe to the channel.
119
And also, if you want to see me apply these principles to something other than coding, like something artistic, click on this video.
120
Where we're going to put it?
121
Here?

Скачать приложение

ИИ-оценка каждого произнесённого вами предложения

Сканировать для скачивания
Сканировать для скачивания
TRENDING

Популярные

Контекст и фон

В этом видео рассказывается история о том, как автор сумел изучить программирование всего за четыре месяца и найти работу, не имея высшего образования в области компьютерных наук или участия в курсах. Он делится своими переживаниями о том, как жизнь в продажах была несчастливой и как стремление к карьерному росту привело его в мир технологий. В видео он описывает свой путь от новичка до программиста и основные шаги, которые ему помогли усвоить необходимые навыки.

Топ-5 фраз для повседневного общения

  • Я ненавижу свою работу. - Указывает на негативные чувства к текущей деятельности.
  • Я хочу изменить свою карьеру. - Выражение стремления к переменам.
  • Как учить программирование? - Вопрос, который может возникнуть у новичков.
  • Я люблю решать логические задачи. - Помогает понять интересы и увлечения оратора.
  • Все, что мне нужно, это время для учебы. - Подчеркивает важность концентрации на обучении.

Пошаговое руководство по теневому повторению

Если вы хотите улучшить произношение английского и освоить навыки программирования, предлагаю пошаговое руководство для эффективного shadow speech используя этот видеотренинг:

  1. Слушайте внимательно: Прослушайте видео с фоновым звуком. Обратите внимание на произношение и интонацию.
  2. Повторяйте за спикером: Используйте метод shadow speaks. Постепенно повторяйте фразы за оратором, следя за произношением.
  3. Записывайте себя: Зафиксируйте ваше произношение. Это поможет вам сравнить его с оригиналом.
  4. Оцените свои результаты: Слушайте свои записи и анализируйте, где вы можете улучшить.
  5. Регулярные занятия: Занимайтесь каждый день, увеличивая длительность и сложность заданий.

Следуя этим шагам, вы сможете учить английский с YouTube более эффективно и значительно улучшить свои навыки разговорной речи, что поможет вам в обучении и профессиональной жизни. Не забывайте, что настойчивость и регулярность - ключевые факторы успеха!

Что такое техника Shadowing?

Shadowing — это научно обоснованная техника изучения языка, изначально разработанная для подготовки профессиональных переводчиков и популяризированная полиглотом доктором Александром Аргуэльесом. Метод прост, но эффективен: вы слушаете аудио на английском от носителей языка и немедленно повторяете вслух — как тень, следующая за говорящим с задержкой в 1–2 секунды. В отличие от пассивного прослушивания или грамматических упражнений, Shadowing заставляет мозг и мышцы рта одновременно обрабатывать и воспроизводить реальные речевые паттерны. Исследования показывают, что это значительно улучшает точность произношения, интонацию, ритм, связную речь, понимание на слух и беглость речи — что делает его одним из самых эффективных методов для подготовки к IELTS Speaking и реального общения на английском.

Угостите нас кофе