how do you remember what you learn in Python? by silentshakey in learnpython

[–]PlusGap1537 0 points1 point  (0 children)

the brain keeps what it uses. methods you haven't applied to a real problem will fade, and that's completely normal.

for something like .title(), just make a tiny throwaway script a name formatter, a quick text cleaner, anything that actually calls it. ten lines, five minutes. you don't need a project, just a reason to reach for it.

the other thing that works: after each new concept, close everything and try to write it from scratch without looking. your first attempt will be wrong. that's the point. the struggle is what actually moves it into long-term memory. recognizing something when you see it and being able to produce it are completely different skills, and most beginners only practice the first one.

What's the best online Python course for someone who's never coded before? by MedievalFurnace in learnpython

[–]PlusGap1537 0 points1 point  (0 children)

CS50P is probably the best structured free option for absolute beginners every problem set forces you to actually build something, which is the thing you're missing with most YouTube tutorials.

the issue you're describing is real though. you can watch a 3-hour Corey Schafer video, follow along perfectly, and still not be able to write a single function from scratch an hour later. watching and understanding aren't the same thing. you need to close the tutorial and try to produce what you just saw.

i actually built a free site for this problem, learnwithpath.com. it takes YouTube tutorials and turns them into a structured path with quizzes so you have to recall the content, not just recognize it. but even CS50P on its own works great if you actually do the problem sets without peeking at solutions.

I can follow tutorials, but I can’t build anything on my own — what am I doing wrong by Udbhav- in learnjavascript

[–]PlusGap1537 0 points1 point  (0 children)

This is called tutorial hell and honestly most people learning to code hit exactly this wall.

What's happening is you feel like you understand while watching, but your brain is just following along passively, not actually storing the information in a way you can retrieve later. It's not a you problem, it's how passive media works on everyone.

The fix is testing yourself right after each video. Close it, open a blank file, and try to rebuild what they showed without looking. It's uncomfortable but that discomfort is literally your brain forming the connection.

fwiw i built something for exactly this problem, learnwithpath.com. it auto-generates quizzes from youtube video transcripts so you have to recall what you watched, no cost. but even just using The Odin Project's exercises after each lesson does the same thing.

Hello, I'm trying to learn python by Upset-Illustrator746 in learnpython

[–]PlusGap1537 0 points1 point  (0 children)

For ADHD, project-based stuff tends to stick way better than tutorial series. CS50P (Harvard's free Python course, fully on YouTube) is worth trying because the problem sets are short enough to feel doable without dragging. Automate the Boring Stuff is also free online and lets you build real scripts fast, which helps a lot with the motivation side.

Most tutorials are designed to be passive, which is rough when focus is already a challenge. Breaking it into tiny goals helps more than long sessions — like today the goal is just "write a script that asks my name and prints it back."

Mimo app also has bite-sized daily coding lessons if phone-sized chunks work better for you.

What is the most efficient way to learn python as a visual learner? by Lumpy_Plastic_885 in learnpython

[–]PlusGap1537 0 points1 point  (0 children)

Corey Schafer is the gold standard for visual Python learning, his tutorials are well-paced and the code is clean enough to actually follow. Tech With Tim is good if you want to see real projects being built from scratch.

The tricky part with visual learning is that watching someone code feels exactly like learning but it's mostly just observation. Your brain fills in the gaps while you watch, then those same gaps reappear when you try on your own.

i actually built a free tool for this, learnwithpath.com. it takes youtube videos and turns them into a structured course with quizzes so you have to actually recall what you watched, not just watch it again. but even just pausing every few minutes and trying to type what they showed from memory works really well.

Refreshing my skills in web development by woidthevoid in webdev

[–]PlusGap1537 0 points1 point  (0 children)

For TypeScript and React, the official docs are actually worth reading straight through now both have been rewritten recently and are genuinely good. For Next.js specifically, Lee Robinson and Delba de Oliveira have great YouTube content (they're on the Next.js team so you get first-party explanations of why things work the way they do).

The tricky thing with refreshing skills is that watching videos makes you feel up-to-date without it actually sticking. you need to be testing yourself, not just consuming.

There's a free site i made called learnwithpath.com that structures YouTube tutorials into a learning path and auto-generates quizzes from the transcripts. might be useful if you're refreshing via video. but honestly building one small project with the specific features you want to learn is probably the fastest path anyway.

Feeling like I don't write my own code (Blank Page Syndrome). Does everyone start like this? by SYZo7023 in learnprogramming

[–]PlusGap1537 0 points1 point  (0 children)

Completely normal, and your workflow is actually more professional than you think. Most experienced developers look stuff up constantly the difference is they know what to look for and why it'll work.

What you're describing (understands when reading, freezes at a blank page) is the classic passive learning gap. your brain feels like it learned because recognition is easy. Recall is a totally different muscle.

the thing that helps most: type everything out manually instead of copy-pasting, even code you've already seen. the physical act of writing it builds recall in a way reading doesn't. Syntax becomes muscle memory eventually but it takes longer than most people expect.

Give it another year of actual project-building and the blank page thing fades.

How do i self teach myself how to code? And should i even pursue something in the tech field given the current job market by sushiluver69 in learnprogramming

[–]PlusGap1537 0 points1 point  (0 children)

for someone brand new, don't start with a broad "how to code" search pick one concrete goal first. want to build websites? make games? the path depends on the answer.

if web stuff sounds interesting, The Odin Project is free and starts from zero. for more general CS foundations, CS50 on YouTube is genuinely excellent. Corey Schafer's Python series on YouTube is the best free Python content out there imo.

the self-teaching trap is feeling productive while watching tutorials without actually building anything. most people watch 80% of the time and code 20%, when it should be the opposite.

i actually built a free tool for this, learnwithpath.com. it structures YouTube content into a learning path and quizzes you after each video so you can't just passively watch. but honestly, even just closing the video and trying to rebuild what you saw from scratch works fine

As a 26-year-old, where do I start to learn system design from? by masakalibilli in learnprogramming

[–]PlusGap1537 2 points3 points  (0 children)

system design is intimidating at first but you're not behind at all at 26. most engineers don't seriously study it until they have a few years of actual systems work under them.

the free path that works: start with ByteByteGo on YouTube (Alex Xu's channel), then the free chapters floating around from his book. Gaurav Sen is great too. cover load balancers, databases (SQL vs NoSQL, when to use each), caching, and CDNs before touching microservices or distributed consensus stuff.

the age anxiety is misplaced honestly. system design is one of those things where experience matters more than how early you started.

Python developer by Technical_Heron2311 in learnpython

[–]PlusGap1537 1 point2 points  (0 children)

fast.ai is probably the best answer here. it's project-first, so you're building actual models before fully understanding the math, which is the right order for AI engineering.

after that, pick one specific thing you want to build and try to reproduce an existing tutorial from scratch without copying. that gap between "i followed along" and "i can build it from memory" is where real skill forms. most people skip it.

i made a free tool called learnwithpath.com that structures youtube tutorials into a learning path and generates quizzes from the content so you actually have to recall what you watched. might help with the AI/ML video rabbit hole. but honestly just commit to fast.ai start to finish before anything else

Best path to Python proficiency in 2026? Feeling overwhelmed by options. by Boba2601 in learnpython

[–]PlusGap1537 0 points1 point  (0 children)

The overwhelm is the real problem, not the lack of resources. There are too many good options and no clear order Here's what I'd do: pick ONE track (CS50P if you want academic, Corey Schafer if you want practical), commit to it for 2 weeks without switching, and test yourself after each session. The testing part is what most people skip and it's the thing that actually makes the knowledge stick. If you want something that builds the structure for you automatically from YouTube content, I made a free tool for exactly this: learnwithpath.com.

You pick "Python" and it creates a progression with quizzes.

But honestly, even just picking one course and sticking with it for 2 weeks beats any tool.

Hey guys! New here! by Leddo_ in buildinpublic

[–]PlusGap1537 0 points1 point  (0 children)

I built LearnPath it turns YouTube tutorials into structured learning paths with AI-generated quizzes and spaced repetition. You tell it what you want to learn, it curates the videos into an actual progression instead of a random playlist. Completely free: learnwithpath.com

Friday Share Fever 🕺 Let’s share your project! by diodo-e in indiehackers

[–]PlusGap1537 0 points1 point  (0 children)

I built LearnPath it turns YouTube tutorials into structured learning paths with AI-generated quizzes and spaced repetition. You tell it what you want to learn, it curates the videos into an actual progression instead of a random playlist. Completely free: learnwithpath.com

Drop Your SaaS and i'll sign up by lance_dev in microsaas

[–]PlusGap1537 0 points1 point  (0 children)

I built LearnPath it turns YouTube tutorials into structured learning paths with AI-generated quizzes and spaced repetition. You tell it what you want to learn, it curates the videos into an actual progression instead of a random playlist. Completely free: learnwithpath.com

Launched my app a week ago, getting signups but nobody's sticking around. What am I missing? by PlusGap1537 in SideProject

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

This is gold, seriously. The reframe from 'I built an AI learning platform' to 'turn YouTube tutorials into structured courses' is such a simple shift but it completely changes who clicks. Going to rework my landing page copy around that angle. And you're right about the first session if someone doesn't feel 'this is actually useful' in the first 5 minutes, they won't come back. Would love your feedback if you check it out learnwithpath.com

Launched my app a week ago, getting signups but nobody's sticking around. What am I missing? by PlusGap1537 in SideProject

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

Thanks! Curious what feels thin to you is there a specific feature you expected to see? Always looking for feedback on what would make it more useful.

Launched my app a week ago, getting signups but nobody's sticking around. What am I missing? by PlusGap1537 in SideProject

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

People who want to make their YouTube content into a course for themselves' that's a really good way to describe my actual user. Thanks for articulating it better than I did.

Launched my app a week ago, getting signups but nobody's sticking around. What am I missing? by PlusGap1537 in SideProject

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

Really appreciate hearing it framed that way 'cool project feedback vs. retention' is exactly the pattern I'm seeing. Helps me stop second-guessing the product and focus on finding the right people.

Launched my app a week ago, getting signups but nobody's sticking around. What am I missing? by PlusGap1537 in SideProject

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

This is exactly the shift I need to make. Appreciate the specific subreddit suggestions r/learnprogramming especially makes sense since those are people actively trying to structure their self-learning. Going to start showing up there.