I learned to code from scratch in 1 year. Here's how.

  Переглядів 288,278

Thomas Frank

Thomas Frank

День тому

Here's everything I used to learn how to code - free learning resources, tools, learning hacks, and a couple of secret weapons.
🧠 ULTIMATE BRAIN (Full Second-Brain Template - use code LETSGO2023 to get $50 off):
thomasjfrank.com/brain/
🎥 CREATOR'S COMPANION (Notion template for content creators)
thomasjfrank.com/creators-com...
✈️ FLYLIGHTER (The best way to capture articles and higlights to Notion):
flylighter.com/
🎙️ TAKE NOTES WITH YOUR VOICE (Easy tutorial):
• How I Use ChatGPT to T...
📚 NOTION API POKEDEX TUTORIAL:
• Notion API - Full Cour...
🛠 MORE COURSES AND RESOURCES:
thomasjfrank.com/templates/
thomasjfrank.com/courses/
🐦Connect with me:
Twitter ➔ / tomfrankly (best way to interact with me)
Instagram ➔ / tomfrankly
Notion Tutorials ➔ @ThomasFrankExplains
Music ➔ @ThomasFrankMusic
⏱ TIMESTAMPS:
00:00 - Introduction
01:02 - How I Chose My Language
05:42 - Learning Resources
13:22 - Secret Weapon #1
18:02 - Secret Weapon #2
25:24 - 3 Best Learning Hacks
31:18 - My Favorite Coding Tools
36:31 - Black Friday Deal
🔗 VIDEO LINKS (All resources and tools are linked here):
thomasfrank.notion.site/How-I...
👐 BUSINESS:
Please contact my agent at thomasfrank@standard.tv
🎞 SPECIAL THANKS
Video clips supplied by Getty Images
💰 I'm fortunate enough to work with great sponsors who support my work, so I don't use Patreon or any other crowdfunding service. However, if you'd like to support a worthy cause, consider donating to help more children get access to a high-quality education: fundraise.pencilsofpromise.or...

КОМЕНТАРІ: 328
@williamvikanstromsnes8162
@williamvikanstromsnes8162 4 місяці тому
as a person working in this field, your advice is very good for beginners
@Reedfender
@Reedfender 5 місяців тому
“Have something in mind to build” This is solid gold advice for people getting into programming. Once you get that “aha” moment and you build something for yourself, it feels so good. Use this to develop your passion for programming, and slowly start building more and more complex projects.
@ez7125
@ez7125 4 місяці тому
@chillmechanic11
@chillmechanic11 5 місяців тому
As a programmer of 4 years, this is really useful for someone who wants to start programming.
@user-qr9df1uf8e
@user-qr9df1uf8e 5 місяців тому
I find it so cool that I have been listening to college info geek for years and following you and now I got into coding too this year and here you're making content about that
@abelsantiagocortes4609
@abelsantiagocortes4609 4 місяці тому
Crazy how, if you remove all the technical details about programming, the video still does an excellent job explaining how to learn anything proficiently within a year. Congrats Thomas.
@laraprudencio8337
@laraprudencio8337 5 місяців тому
Your real talents are: time management and learning skills! Super impressive video, Thomas! You can do anything!
@MG_Jad
@MG_Jad 5 місяців тому
Super helpful and inspiring video. I recently started learning JS and was feeling frustrated with my progress, and you've highlighted the mistakes I've been making in my journey. I'm going to get back in to it now - thank you!
@kylemckell
@kylemckell 5 місяців тому
Your excitement for learning code reminds me of when I started my self learning journey 5 years ago (albeit, yours is much more productive and focused!) I've been slacking lately with my personal coding, but this video has triggered something in my brain to start coding for myself again. Amazing video, and congrats on your learning!
@DiegoLlamozas
@DiegoLlamozas 4 місяці тому
This video is brilliant, a new series about Thomas learning different stuff and showing us the process would be really cool.
@ElieBeth___
@ElieBeth___ 5 місяців тому
Great to see you post videos again 👏 As always, you provide clear and holistic advice. Couldn’t be more timely as I’d like to learn JavaScript for Notion and website 👌
@its_past_here
@its_past_here 5 місяців тому
My hero is back with the right video I needed right now. 😅❤❤❤❤ Massive love for you Thomas Frank
@djo_shorts6154
@djo_shorts6154 5 місяців тому
Really happy for you bro.. welcome back 🎉
@diegolikescode
@diegolikescode 5 місяців тому
before even watching I gotta say this: really respect the timeframe. 1 year is enough to get a pretty good grasp of programming and I'm saying this because 3 months is not enough, 3 weeks is a joke, but 1 year is alright. Good content as always, Thomas
@Thomasfrank
@Thomasfrank 5 місяців тому
Agreed. Three months in, I still felt very lost when looking at documentation. I was definitely still a beginner. At the one year mark, I felt pretty confident.
@HrissW
@HrissW 5 місяців тому
I started learning code in 2021 and still struggling to learn, now on verge to quitting :((
@VTSheriff-uo4ed
@VTSheriff-uo4ed 4 місяці тому
How many hours are recommended daily??
@kirida7044
@kirida7044 3 місяці тому
​@@HrissWhey, how are you there? 1 month passed, but wanna say: be strong. But if you were, there's no shame in revaluating your goals
@irgendwer4577
@irgendwer4577 5 місяців тому
This is truthfully top notch and high quality Content. I thank you wholeheartedly.
@malawianprogrammer
@malawianprogrammer 3 місяці тому
Been in the industry for some months now after completing a CS degree - your video was really good and informative for an early-stage career programmer like me - particularly your recommendations. Gosh, I wasn't aware that so many tools to improve programming efficiency existed! Thank you for the deep dive.
@tadaspetra
@tadaspetra 5 місяців тому
Couple tips from someone that has been coding for over a decade. Your idea with the test functions is great, and has worked well. Another level of this is writing all your code with this idea in mind. Basically separating your in a way where each function or piece of logic (aka concern) works independently from other code, and thus can be tested independently. This is called separation of concerns 😊 Also another small tip, VSCode has an ability to create custom "snippets" that you can give a keyword for and it can load those in for extra efficiency.
@ICantMakeUpAName100
@ICantMakeUpAName100 5 місяців тому
Came over from Nebula to comment on both of these, glad to see another seasoned programmer. I was waiting for him to mention **unit testing** which is the next step up from creating test functions. For Thomas-- instead of manually running each individual function you're focused on, you can define a suite of tests that can run with a single command. It affords you the piece of mind that your expectations of your code won't change over time, and if it does it'll give you an error that you can trace through and adapt to. It also closes the loop by allowing your tests to run on file save if you run your test runner on "watch" mode. Jest is the go-to library in JavaScript for most developers. If this is a topic that resonates with anyone, check functional testing, integration testing, and test-driven development (TDD; when tests are designed before code is written). Regarding snippets, 100% this AND VSCode has extensions that provide snippets so you don't need to write all your snippets. Perhaps a new programming project is compiling Thomas' snippets into an extension pack :^)
@shuvbhowmickbestin
@shuvbhowmickbestin 4 місяці тому
So bascially you're talking about TDD using Unit Testing right?
@seg_fault
@seg_fault 5 місяців тому
I started around a year ago. I'm in the middle of working on a client ecommerce site. From scratch! Love to feel so related with your journey. We've been in sync since notion days.
@Spok2go
@Spok2go 5 місяців тому
ecommerce from scratch is a bad idea, use pre-existing services and CRMs
@jizamurai
@jizamurai 2 місяці тому
Dude took almost a year to explain with this vid
@the_horror_fan
@the_horror_fan 5 місяців тому
It is good to see you on youtube again. I have a BS in Computer Science and a Masters in Information Technology. I am glad you are talking about your journey and really want to see what you got to say. Welcome back.
@GETHIRED_ILENE_REIN
@GETHIRED_ILENE_REIN 4 місяці тому
Absolutely amazing!
@claudiumihai7269
@claudiumihai7269 5 місяців тому
I've been waiting for this video for a while. The level of excitement that overcame me upon seeing the thumbnail was embarrassingly high.
@exeohe
@exeohe 4 місяці тому
thank you for your energy.
@hellobro9280
@hellobro9280 4 місяці тому
This guy is truly a genius, he is a full-time youtuber and owner of several businesses and at the same time he learned programming and achieved a good level. I have been learning coding for some time now and it's not actually easy at all.
@valenciawalker6498
@valenciawalker6498 25 днів тому
Thank you for the beneficial advice.
@nourmahmoud2078
@nourmahmoud2078 5 місяців тому
I can't believe you're back here again!!! I couldn't believe my eyes when I saw the notification, welcome back!
@SofiaBaezzato
@SofiaBaezzato 5 місяців тому
That's so cool Thomas! I did the same this year 🤙 a wannabe fullstack web dev here 🚀 I hope I'll find a job soon!
@darkrinji
@darkrinji 5 місяців тому
Would love it if this was supplemented with another video that dives deep into your systems, habits and mindset that you adopted to pull all this off. I'm thoroughly impressed by your dedication.
@matthewglenguir7204
@matthewglenguir7204 5 місяців тому
Exactly
@alphadonut
@alphadonut 5 місяців тому
Hope this doesn’t come off as rude. Thomas actually has a ton of his systems and mindset videos scattered through his main channel. Like how he uses notion to track his tasks, productivity tips, and a ton of other stuff like setting up your calendar. I genuinely recommend checking it out. It’s taught me a lot during college and in work.
@darkrinji
@darkrinji 4 місяці тому
@@alphadonut It doesn't come off as rude. I am very aware of his video stockpile. I only made this request because it's possible he has come across new information or a new approach to learning for these types of projects.
@alphadonut
@alphadonut 4 місяці тому
@@darkrinji oh very cool, yeah some new Thomas Frank productivity vids would also rock!
@mohdjibly6184
@mohdjibly6184 5 місяців тому
Great video...thanks for sharing Thomas :)
@mayraamaral7267
@mayraamaral7267 4 місяці тому
I work with Software Engineering since 2021 and I study programming since 2015. Your video is one of the best made in UKposts that I've seen. Congrats on your learning journey, I'm excited about what you will build next!
@alexanderaugust229
@alexanderaugust229 5 місяців тому
This video is really wonderful. I am currently struggling with builiding my own tools in Unity. Your use of chat GPT is really useful and I will implement it in my own workflow :)
@theapril20
@theapril20 5 місяців тому
I missed you Thomas Frank Glad to see you again
@kevinhughes9801
@kevinhughes9801 4 місяці тому
Excellent video thank you for the breakdown
@klone57
@klone57 4 місяці тому
Great job on this! Super useful
@user-tp9bu1cq5f
@user-tp9bu1cq5f 4 місяці тому
Thanks Tommy the app that you recommended in the previous videos was and is useful .
@zarakhan5170
@zarakhan5170 26 днів тому
been following you since 2017 love your videos
@ruloderp9162
@ruloderp9162 5 місяців тому
Been following since Listen Money Matters you are a great inspiration!
@makarand1985
@makarand1985 2 місяці тому
Wonderful Video !!! God bless you Brother !!!
@kennethjoseph9309
@kennethjoseph9309 5 місяців тому
Nice seeing you again Thomas.
@fwdflashwebdesign
@fwdflashwebdesign 3 місяці тому
Great job!
@jordanrowland2049
@jordanrowland2049 3 місяці тому
I taught myself to code 6 or so years ago and now work full time as a software engineer. I 100% recommend the "become obsessed with coding" technique. I started reading a bunch of blogs and subscribed to a bunch of coding subreddits just to become completely immersed in the craft, and I think it helped a lot.
@user-tj2vm7rp8k
@user-tj2vm7rp8k 2 місяці тому
This is awesome, thank you! The point you made about 'fast feedback loops' is so critical. To add to this, something that I have really been digging into is 'test driven development' which leverages this fastest feedback first idea: effectively you write unit tests first, force them to fail, then write the code to make them pass. Not only do you get fast feedback, but people are more likely to trust your code if it has tests :)
@dennystreet2454
@dennystreet2454 4 місяці тому
I opened this beautiful world of codes a couple of days ago and now I am fully addicted ❤
@MahmoodHasand3
@MahmoodHasand3 4 місяці тому
Good to see you back @Thomas
@Mcoder2023
@Mcoder2023 3 місяці тому
Your advice is really useful
@jimmysan202
@jimmysan202 4 місяці тому
Glad to see you back
@kirillsulim
@kirillsulim 27 днів тому
So. This is basically 45 minutes advertising for pipe.
@suzanadsuza4819
@suzanadsuza4819 5 місяців тому
Thank You ! I wanted to know this
@WylieBayes
@WylieBayes 4 місяці тому
Where my powershell friends at, lol! You are so spot on with your advice. Love your journey man!
@Hehe15066
@Hehe15066 5 місяців тому
im not into coding, im watching the video anyway because im glad you're posting again :) welcome back
@callmefred
@callmefred 3 місяці тому
Very nice presentation. You've packed A LOT of value in this video. I totally share your point re: the fact that you should learn programming with a personal passion project in mind. That's exactly what I did to ship my AI Jingle Maker. I'm older than you (I'm 49) and started coding when I was 48. And it's probably the best decision I've taken in a very long time. AI coding assistants have helped me a lot to transform my vision into a consumer product in a pretty short time frame (3 months to learn Python basics, then, after a few months of practice, less than a week to ship the MVP of the app).
@lckillah
@lckillah 2 місяці тому
I have some experience in scripting using python and I was a sql engineer so mostly sql and database stuff. I want to really dig into programming this year and I think I am going to start with CS50. That notion voice notes is a great idea! I think I am going to build that as my first project. Thanks for the idea!
@phy6geniuxYTcreations
@phy6geniuxYTcreations 5 місяців тому
This is a gem.
@doomerman965
@doomerman965 5 місяців тому
Its great to hear back from you Frank. It would be cool to see a video of you working on a project or something as I am learning right now to be a full-stack developer.
@thetahayaseen
@thetahayaseen 5 місяців тому
I considered myself a good programmer whereas now you just helped me excel!
@nickaustin4368
@nickaustin4368 2 місяці тому
This is wonderful.
@Bilal_Rauf
@Bilal_Rauf 5 місяців тому
Hate to see this video short on views, this is a gem!
@ierax29
@ierax29 5 місяців тому
MAH BOI IS BACK 🎉
@MondSemmel
@MondSemmel 4 місяці тому
Major kudos for your works - in particular, I still use your awesome voice notes automation all the time. That said, just what did the poor computer at 3:50 ever to do you? You monster =(.
@blackcheetah4550
@blackcheetah4550 3 місяці тому
Wow, you can't maek bad videos, man, I just watched the first secret weapon and I can tell that your videos are incredibly awesome 💜
@LearnAvecAmeen
@LearnAvecAmeen 4 місяці тому
My friend, you have an excellent abstraction and explanation skill, all the best insh'Allah
@zach.intech
@zach.intech 25 днів тому
Mapping is fun. I love how JavaScript triggers even experienced programmers lol 😅
@ByteOfMichael
@ByteOfMichael 3 місяці тому
Hey Thomas! It was great to meet you at the Vidcon Creator Panel, and awesome video!
@samiha_humayra_
@samiha_humayra_ 5 місяців тому
Good to see you
@vascoguerreiro341
@vascoguerreiro341 4 місяці тому
this video is amazing
@algoseekee
@algoseekee 13 днів тому
As a professional software engineer with 10+ yoe in web development, I can testify this is a must watch video for all beginners. Good luck, folk!
@fabienpineau1580
@fabienpineau1580 4 місяці тому
Could you make a video on Anytype please ? Would love to have your review on this new second brain 😁
@paula_morelin
@paula_morelin 4 місяці тому
Tom! You’re back! 😊
@Rayfano1002
@Rayfano1002 4 місяці тому
On a whole other note, Thomas is looking huge! 💪
@engineeringmadeasy
@engineeringmadeasy 5 місяців тому
I'm very Jealous but in a Positive Way. 😂 . Going to watch second by second your video. Thanks for this video man. Much Needed.
@timpook
@timpook 4 місяці тому
great video
@amirulrostam5485
@amirulrostam5485 4 місяці тому
this guy is a better programmer than me and ive been coding for almost ten years
@mvemjsunp8
@mvemjsunp8 5 місяців тому
I literally just did a UKposts search for “how to learn to code” and saw this video by Thomas frank from 35 minutes ago and thought “huh that’s weird” before checking my subscription feed and seeing that it wasn’t just an illusion. What wonderful timing
@pstandlee
@pstandlee 4 місяці тому
He’s back!!
@Indian_swan
@Indian_swan 5 місяців тому
I'm proud of you because you're smart.I want to be brainy too 😢
@SamFigueroa
@SamFigueroa 4 місяці тому
28:53 I suggest you start looking into automated software tests, this will let you automate testing the individual components without having to constantly copy and paste things and manually check the result against your expectation.
@Thomasfrank
@Thomasfrank 4 місяці тому
That's a great suggestion. I've heard about stuff like unit testing, but haven't yet gotten into it!
@kushtrimabdiu
@kushtrimabdiu 4 місяці тому
As a programmer myself this guide is 100% effective and I would do exactly the same if I were to start again from zero
@D_24-vn8ro
@D_24-vn8ro 2 місяці тому
Ckemi shof qe je programer Po mundohem edhe une te behem Programer ku mund tja nis flm ??
@kushtrimabdiu
@kushtrimabdiu 2 місяці тому
@@D_24-vn8ro Fillo me HTML & CSS e pastaj me Javascript. Ka plot resurse free ne internet do shembuj i ke edhe te kjo videoja. Mbasi te kesh pak ide se cka esht programimi, fillo krijo projekte te thjeshta. Perdore ChatGPT te te ndihmoj per cdo pyetje. Copy paste kod ne chatGPT nese ke nevoj per sqarim se si funksjonon kodi. Fillo me proekte te thjeshta e gjith ideja esht qe te shkruajsh kod sa me teper, mos hup koh shum me tutoriale. ... Suksese
@edmondasu9209
@edmondasu9209 7 годин тому
Just got interested in learning how to code, please I need your guide.
@michaelfeeney6108
@michaelfeeney6108 5 місяців тому
This video came at the perfect time. I’ve been in tutorial hell. Do you have a particular laptop (or laptops) you’d recommend? Right now all I have is a chromebook, which isn’t great for this.
@Thomasfrank
@Thomasfrank 5 місяців тому
The only laptop I can really recommend is a MacBook Air or Pro - I’ve used a few Windows laptops in the last 8-10 years but all have had pretty poor battery life. That said, Dave2D is a good source for recommendations beyond Apple! For programming, I’d personally look for good battery life and a good screen. Most of my programming is not super intensive so it doesn’t need monstrous hardware.
@michaelfeeney6108
@michaelfeeney6108 5 місяців тому
@@Thomasfrank Thank you!
@qwerty11111122
@qwerty11111122 5 місяців тому
30:32 I have a word document called "useful unix commands" The most common use for it is to remind me that making a soft link is "ln -s FILE LINK" because I always forget the order of link and file
@rushikeshkarande1314
@rushikeshkarande1314 4 місяці тому
This is lit...🔥🔥
@quaziz
@quaziz 2 місяці тому
Its experience that makes a good developer.
@oz4549
@oz4549 5 місяців тому
Maybe not important but saying you picked JavaScript because notion's api is in JavaScript is kind of wrong but i understand what you mean. You can use any language with their api. What you are referring to is the sdk written in Javascript which is just a bunch of wrappers around the api such that you don't have to worry about url resources. Good job and i wish you all the best.
@Quball87
@Quball87 3 місяці тому
Thomas Frank is the guy from the Limitless TV series while on NZT
@frankfernandez1569
@frankfernandez1569 Місяць тому
good advice i have come across
@orueom7720
@orueom7720 3 місяці тому
please do a video on using chatGPT and optimum methods for constructing prompts!
@b_warsame
@b_warsame 5 місяців тому
My favourite way of my car is the leather seats but the eject button is a close second.
@IconML
@IconML 2 місяці тому
This guy is a 10x programmer, normal people can’t do it that fast
@Thomasfrank
@Thomasfrank 2 місяці тому
I really don't think I'm 10x. I've met people who at least seem like 10x developers to me. I do think I'm fairly good at knowing how to accelerate my learning when I need to, and hopefully this video has shared some of those strategies well enough!
@user-xh5zp5dr5w
@user-xh5zp5dr5w 2 місяці тому
My app works now!!!!!
@sayedhossainkingdom9255
@sayedhossainkingdom9255 5 місяців тому
This video came out exactly when I enter into Computer engineering subject in Bachelor degree. So, My starting language is C. Nothing to choose. But, I determine to learn Java as part of C.
@vertexion5337
@vertexion5337 5 місяців тому
Thank God ,you're still Uploading. I genuinely thought you left the channel and we will never see you again.
@Thomasfrank
@Thomasfrank 5 місяців тому
Upload frequency will be ramping up too. I've got a major project I want to do that will involve making a lot of videos :)
@kareenar8749
@kareenar8749 2 місяці тому
Doesn't Code Runner do the same thing as the Play/Run button in VS Code?
@digishabi
@digishabi 4 місяці тому
Exactly I did all the steps🥴🤠
@YatendraRai
@YatendraRai 4 місяці тому
good video
@spotlight761
@spotlight761 2 дні тому
Is the freecodecamp course suitable for the absolute beginner?
@silvrsurfer
@silvrsurfer 4 місяці тому
Do you soeed up your videi before uploading ir di you naturally talk thst fast? (Perfectly understandable btw, dint change a thing! I just realized you doeak much faster than me lol)
@arcticheroh
@arcticheroh 5 місяців тому
I would use VsCodium, its a fork of VScode without the telemetry.
@Brad-cb2dt
@Brad-cb2dt 5 місяців тому
Instead of a test folder, you could start creating and using branches in a version control tool like git. Also, you should look into writing test code if you haven't already. Automated testing can help you prevent bugs before they happen when making changes later down the road. The time it takes to test things manually adds up quickly.
@Rayowag
@Rayowag 3 місяці тому
I'm laughing at all the long term programmers in the comments that are taking your thumbnail way too seriously. I might get into coding once I start my degree, probably gonna be Python or something else that can be combined well with the things I'm studying.
@SoreBrain
@SoreBrain 5 місяців тому
I wish I saw this video when I got started
@exeohe
@exeohe 4 місяці тому
do you have your service you created available on open source? i could use it for lectures to help source the key points and review them later …
@Thomasfrank
@Thomasfrank 4 місяці тому
It's not completely open-source, as I want to use the code for Flylighter. But I did make it public, and you're free to use and modify it for personal use: github.com/TomFrankly/pipedream-notion-voice-notes
@exeohe
@exeohe 4 місяці тому
@@Thomasfrank THANK you bro!
Learn To Code Like a GENIUS and Not Waste Time
9:41
The Coding Sloth
Переглядів 948 тис.
How to get everything you want this year
20:53
Thomas Frank
Переглядів 113 тис.
Genial gadget para almacenar y lavar lentes de Let's GLOW
00:26
Let's GLOW! Spanish
Переглядів 36 млн
Is Coding still worth it in 2024? (as an ex-Google programmer)
13:36
How to Learn to Code FAST (Do This or Keep Struggling)
11:00
Andy Sterkowitz
Переглядів 677 тис.
Do NOT do this when learning to code
6:44
The Tech Dad
Переглядів 4,4 тис.
How Thomas Frank Accidentally Started a $100k/Month Side Hustle
25:13
Ali Abdaal - Appendix
Переглядів 133 тис.
Watch this if you’re having an “off day”
7:45
Thomas Frank
Переглядів 183 тис.
7 Things Organized People Do That You (Probably) Don't Do
12:44
Thomas Frank
Переглядів 3,1 млн
Learn to code with an unfair advantage.
15:05
Jason Goodison
Переглядів 143 тис.
This VS Code AI Coding Assistant Is A Game Changer!
14:27
codeSTACKr
Переглядів 88 тис.
How to Achieve More in 1 Week than Most People Do in 12 months
18:40
Clark Kegley
Переглядів 33 тис.
Genial gadget para almacenar y lavar lentes de Let's GLOW
00:26
Let's GLOW! Spanish
Переглядів 36 млн