7 Questions with our Community #190646
-
π·οΈ Discussion TypeQuestion π¬ Feature/Topic AreaLearning Paths BodyI have 7 Questions with my Community Members. π1.βWhy do beginners fail after learning basics of programming?β βοΈ 2. βIs building projects better than completing courses for mastering development?β π» 3. βReact + Flask vs Full MERN β which is better for beginner full-stack projects?β π€ 4. βAre AI-based projects (like cheating detectors, emotion recognition) actually useful or just hype?β π 5. βWhat actually matters more in interviews: projects, DSA, or communication skills?β π§ͺ 6. βIβm building an AI cheating detection system β what features would make it truly useful?β π 7. βWhatβs the hardest bug youβve faced and how did you solve it?β Answer me for Oportunity Contribution with me! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
π¬ 1. Why do beginners fail after learning basics of programming? Most beginners fail because they stay in βtutorial modeβ instead of βproblem-solving mode.β They: Watch videos β feel productive π Real issue = no struggle, no debugging, no ownership Fix: Build small projects early Courses teach what exists π If you only do courses: You understand concepts π If you only do projects: Youβll get stuck often Best approach: 20% learning β 80% building π» 3. React + Flask vs MERN? Brutal answer: MERN β easier ecosystem (JS everywhere) π For YOUR project (AI cheating detection): Because: Python = AI libraries Most are hype demos, not real products. Examples: Emotion detection β often inaccurate π But still valuable because: Shows integration skills Truth: Itβs useful for learning, not production (yet) π 5. What matters in interviews? Depends on company, but generally: Freshers: π Reality: If you canβt explain your own project clearly β youβre rejected π§ͺ 6. AI Cheating Detector β what makes it useful? Right now, most versions (including yours probably) are: To make it REAL: Must-have features: π Think like: βCan a university trust this system?β π 7. Hardest bug & solution mindset Hard bugs are not about syntax β theyβre about logic and assumptions Typical example: Everything looks correct π Real skill is: Breaking problem into parts Golden rule: If you canβt explain the bug clearly, you canβt fix it |
Beta Was this translation helpful? Give feedback.
π¬ 1. Why do beginners fail after learning basics of programming?
Most beginners fail because they stay in βtutorial modeβ instead of βproblem-solving mode.β
They:
Watch videos β feel productive
But donβt build anything real
Panic when facing an empty screen
π Real issue = no struggle, no debugging, no ownership
Fix:
Build small projects early
Break things, fix them
Learn by doing, not watching
βοΈ 2. Projects vs Courses β which is better?
Courses teach what exists
Projects teach how to use it
π If you only do courses:
You understand concepts
But canβt build anything
π If you only do projects:
Youβll get stuck often
But youβll learn deeply
Best approach:
20% learning β 80% building
π» 3. Reaβ¦