Logic Building in Programming - 5 Proven Strategies (2024) 🔥

Поделиться
HTML-код
  • Опубликовано: 26 дек 2024

Комментарии • 1,3 тыс.

  • @anishshrestha71
    @anishshrestha71 10 месяцев назад +301

    I also want to add Reverse Engineering
    get somebody's code try to understand it break it modify add your own masala to it do whatever you want to do with it and observe there outputs
    try to add those methods in your problems if possible
    this method helped me a lot to learn coding and logic building

    • @CodeWithHarry
      @CodeWithHarry  10 месяцев назад +102

      Yes looking at other people's code and learning from it has immensely helped me especially during my earlier days of learning to code.

    • @3LineOfCode
      @3LineOfCode 10 месяцев назад +19

      Muje to aj tak reply nahi kia bhai, 3 saal me

    • @parasmanku7536
      @parasmanku7536 10 месяцев назад +20

      ​@@3LineOfCode Aur tu firse ignore ho gya XD 😂

    • @techrawat4802
      @techrawat4802 10 месяцев назад

      @@parasmanku7536 lol

    • @GOJOANDSUKUNAFAN
      @GOJOANDSUKUNAFAN 10 месяцев назад +3

      ​@@parasmanku7536 bc kismat khrab bichare ki 😂

  • @codingseekhoshivanshkesath9486
    @codingseekhoshivanshkesath9486 10 месяцев назад +33

    Bro I am watching your videos since 4 Years and I have learned so many things even I got a job in a company by only doing you courses.
    You have helped a lot of people and by just creating videos you have solved lot's of peoples problems.

  • @Shubham_Kumar_Rastrbhakt
    @Shubham_Kumar_Rastrbhakt 10 месяцев назад +16

    थैंक यू भैया
    मैं शुभम् बिहार से हूं।
    मेरे भी मन में यही डाउट कितने दिनों से चल रहा था आज आपकी कृपा से मुझे सहानुभूति मिल गई। आपका चैनल भी सब्सक्राइब कर दिया ।कोटि कोटि धन्यवाद आपको

  • @Billionaire-wh5fp
    @Billionaire-wh5fp 10 месяцев назад +52

    Bhai bahut bahut thank you aapko. Jo pichle 4 saal me nahi mila vo bas 13 min me milgaya.

    • @GALACTOxOP
      @GALACTOxOP 7 месяцев назад +2

      Practice kaise krne hoti hai? And javascript kaise sikhni hoti, and kya kya dhyan dena hota kaafi time hogya but mai abhi bhi shayad zero hu, koi bata sakta hai

    • @vanshdureja35
      @vanshdureja35 Месяц назад

      @@GALACTOxOP bhai ab ka kya status hai, kuch smj aaya

  • @ShafenBadar
    @ShafenBadar 10 месяцев назад +10

    Great suggestions, but I believe it's not perfect list
    You can include
    Spend some time understanding problem at hand
    Break it down to smaller problems (like if hangman, then only consider win case and ignore losing cases)
    Plot it visually on flowchart
    Try writing pseudo code
    Do dry runs on paper first (with variable states changing etc) instead of checking the output of your written code
    Use Thonny
    Repeat
    This will be a better way of training yourself for problem solving (aka logic building) in programming
    Additional tip is do some tasks of Neuroplasticity
    All the above tips are from my personal 8y+ experience, and I was called "Logic Master" by my peers

    • @kaizoku5883
      @kaizoku5883 10 месяцев назад +1

      Nice.. :)

    • @learning8160
      @learning8160 2 месяца назад +2

      Thank you so much. I was looking for the importance of pseudocode before writing any code because when I directly write code, I feel like, 'This would be much better and less time-consuming if I had written pseudocode first.

  • @sonali7868
    @sonali7868 10 месяцев назад +36

    I really felt hopeful today after this video.U gave the absolute logic building roadmap.
    Thanks!!

  • @Dheerajyadav0004
    @Dheerajyadav0004 10 месяцев назад +200

    Watching your videos since 2020 , still love it ❤

  • @biswajeet9826
    @biswajeet9826 7 месяцев назад +2

    YES!!
    Logic Building is the most fundamental thing to master!!
    And true the more you indulge in different aspects the better!!
    Thanks Harry Bhai!!

  • @codyandersan
    @codyandersan 10 месяцев назад +133

    The editing, backgrounds, concept everything is just 🔥♥️

  • @enciridus2291
    @enciridus2291 10 месяцев назад +40

    first intro Jabardast Harry Bhai. Bollywood per sagat hey apka

  • @hamzafarooq4417
    @hamzafarooq4417 7 месяцев назад +3

    To build code logic of any program, you must learn concept of mathematics such as even or odd numbers or prime numbers. For mathematics in computer programming, you must know operators given below:
    Arithmetic Operators:
    + Addition 1+1=2
    - Subtraction 2-1=1
    * Multiplication 2*2=4
    / Division 6/2=3
    % Modulus if 6/2=3 then 6%2 is equal to 0 that means 6 is even number. if 7/2=3.5 and 3.5 is decimal value then 7%2 is not equal to 0 that means 7 is odd number
    Assignment Operator:
    int x = 10;
    x=x+5; // x=15
    Comparison Operators:
    == Equal to if(x == y){}else{}
    != Not equal if(x != y){}else{}
    > Greater than if(x > y){}else{}
    < Less than if(x < y){}else{}
    if statement condition is true then then program inside if(){} will execute but if statement condition is false then program inside else will execute
    Another syntax:
    if(){
    }
    else if(){
    }
    else{
    }
    if statement condition is true then then program inside if(){} will execute but if statement condition is false then program inside else if(){} will execute
    Google search how to find greatest number or calculate prime factor of a number. Read and understand from starting of JavaScript tutorials and check if variable declaration and initialization is useful in finding greatest number. Read and understand from JavaScript tutorials and check if arithmetic operator is useful in finding greatest number. Read and understand from JavaScript tutorials and check if relational operator is useful in finding greatest number and so on. Program 1 to find the greatest number from 3,1 and 5 given below:
    const arr = [3,1,5]; //arr[0]=3, arr[1]=1, arr[2]=5
    var i=0;
    var greatest=arr[i]; //greatest=3
    i=i+1; //i=1
    if(greatest>arr[i]){ //if(3>1)
    }else{
    }
    i=i+1; //i=2
    if(greatest>arr[i]){ //if(3>5)
    }else{
    greatest=arr[i]; //greatest=5
    }
    Program 2 using loop to find the greatest number from 3,1 and 5 given below:
    const arr = [3,1,5];
    var i=0;
    var greatest=arr[i];
    // while loop is executed 2 times because we have written i=i+1 and if(){}else(){} 2 times //previous in Program 1 given above
    while(iarr[i]){
    }
    else{
    greatest=arr[i];
    }
    }

  • @souvikroy6099
    @souvikroy6099 10 месяцев назад

    Thanks

  • @abdulsaboor2004.
    @abdulsaboor2004. 10 месяцев назад +36

    It's not only a coding tutorial, It's a Cinematic masterpiece 💖

    • @Ohhh7777
      @Ohhh7777 8 месяцев назад

      Kya cinematic tha isme ?

    • @abdulsaboor2004.
      @abdulsaboor2004. 8 месяцев назад

      @@Ohhh7777 Have u seen mrwhosetheboss and channels like that?

  • @mubashirhussain3158
    @mubashirhussain3158 10 месяцев назад +2

    Harry bhai
    Ap ki videos bahut helpful hein mein ne December 2023 mein start kia our ajj mein php mein login system complete ho gia hy
    Thanks Harry bhai

  • @ritikmalik6308
    @ritikmalik6308 10 месяцев назад +17

    1.Practice.
    2.Clean structure code.
    3.Dry code.
    4.Duck explain code.

    • @Rohit-nv4cq
      @Rohit-nv4cq 10 месяцев назад +2

      Bhaiya muje question bhi mil rahe practice krne ke Lia koi website vatao jo basic questions bataiye har ek topic pe pleace reply 🙌🙏

    • @TalhaKing-bw1cs
      @TalhaKing-bw1cs 5 месяцев назад

      Plz muja bi btao ​@@Rohit-nv4cq

  • @annanay007
    @annanay007 10 месяцев назад +3

    Harry bhai aapki videos ko dekhte dekhte 3 saal ho gye pata hi nhi chala par bhit kuch seekhne ko mila
    Luv U

  • @Mehwishashfaq-tm1hq
    @Mehwishashfaq-tm1hq 10 месяцев назад +9

    I had no idea of programming when I started my bachelors and I have worked a lot hard spent hours solving problems still I'm trying my best and no doubt I have seen improvement in my logic building

    • @GALACTOxOP
      @GALACTOxOP 7 месяцев назад +1

      Practice kaise krne hoti hai? And javascript kaise sikhni hoti, and kya kya dhyan dena hota kaafi time hogya but mai abhi bhi shayad zero hu, koi bata sakta hai

    • @Mehwishashfaq-tm1hq
      @Mehwishashfaq-tm1hq 7 месяцев назад

      @@GALACTOxOP actually ma c++ seekh rhi hu so javascript ka idea to ni ha but consistencency is needed try kry ka aik din bhi coding skip na ho and try to solve problems . starting ma solve ni bhi ho gi but aram aram sy samaj ay ga

  • @addictivepcmbyazaan4700
    @addictivepcmbyazaan4700 10 месяцев назад +7

    Harry bhai Best Programming tutor , bhai i followed your full python ,javascript course i love the way you teach amazing you are

  • @amantrivedi3573
    @amantrivedi3573 10 месяцев назад +20

    Harry bhai we all are waiting for your new video on Sigma Web Development please complete that playlist. That will be very beneficial for all of us.

  • @smarteveryday1606
    @smarteveryday1606 Месяц назад

    10:27 nice portfolio website layout, i will steal it now

  • @WebSigmaBatchOP
    @WebSigmaBatchOP 10 месяцев назад +8

    kamalll Harry Sir
    The editing, backgrounds, concept everything is just 🔥♥

  • @SaileeGawande
    @SaileeGawande Месяц назад

    Thank you @Harry for this video. I almost gave up practicing the DSA , but this video gave me a boost to keep going. We need such encouraging and motivating conversation that's it and nothing else. Everyone knows they can just need someone to say that . I never write usually on any channel but this video made me to write that deserves appreciation.

  • @alizameeruddinkhan3916
    @alizameeruddinkhan3916 10 месяцев назад +18

    Worth Watching every second ❤

  • @kajalverma5136
    @kajalverma5136 10 месяцев назад +5

    Hello sir hm apko 2 year se follow kr re h bht kuchh seekha h sir hmne apse nd thnkyuuu so muchh sir apke vedios bht achhe h sb smjh m ata h nd bht hi positive vibes ate h apse sir next month first interview h mera python developer ke liye plz achhi si blessings de dijye rply m 🍫🍫🥰🥰🥰🥰

  • @OneMoreAngle
    @OneMoreAngle 10 месяцев назад +6

    Harry! You are convaying Avery good message by these role play concepts.
    Usually we get angry with how people treat us.. but how you are reacting in these acts is like a mirror to us to self examine...
    And by watching your reactions to someone's expectations with anger is reviving.. Good job man thanks for introducing such inspiring concepts..

  • @mohammadumarshaikh7787
    @mohammadumarshaikh7787 10 месяцев назад +1

    1:11 Yes But better than before after watching your videos Harry Bhai. Thanks a lot for all this ❤.

  • @kakatuasharma
    @kakatuasharma 10 месяцев назад +5

    Itna accha to mujeha koi nahi samjya sir love you from purulia❤❤❤❤❤❤❤❤

  • @rulesofsuccessfullife6098
    @rulesofsuccessfullife6098 10 месяцев назад +1

    the line you said "no one can say he is a 100% in programming" , is the main point, if someone will say that he has everything, it means he has learnt nothing. You are a pro Harry bhai, I watch your videos often, you are my first teacher and thanks for that.

  • @codewithsoyeb
    @codewithsoyeb 10 месяцев назад +4

    00:27 VS code ke badle aap to Premiere Pro chala rahe ho, Editor ji

  • @amir4ever148
    @amir4ever148 10 месяцев назад +1

    thank you harry bhai as a failed web dev learner from last 2 year I am restarting my journey than you so much and this time I will get my first job I am pretty much confident now

  • @kashif-kazmi2050
    @kashif-kazmi2050 10 месяцев назад +5

    Offff! That rubber duck method short clip 😂❤

  • @BryanJohnson1478
    @BryanJohnson1478 8 месяцев назад

    I have learned more than half of Python from your course alone. You are like the godfather of programming, according to us. I hope you will also bring a new course on Django.

  • @comingtomorrow
    @comingtomorrow 10 месяцев назад +4

    Watching your Videos from 2019, and you are just too amazing. Love you

  • @zishankhan6618
    @zishankhan6618 10 месяцев назад +1

    Haris ali khan bahut khushi hue apka naaam maloom hone ke bad apke video bahut dino se dekhta hoon haris bhai bahut help hoti hai

  • @MusicLifeRingtone
    @MusicLifeRingtone 10 месяцев назад +10

    I have tried to code many times but failed due to lack of daily practice and proper planning...... but this video really gives me lot of planning and clarity....Thanks #HarryBhai for making this useful video..💌💌💌💌💌💌

    • @GALACTOxOP
      @GALACTOxOP 7 месяцев назад

      Practice kaise krne hoti hai? And javascript kaise sikhni hoti, and kya kya dhyan dena hota kaafi time hogya but mai abhi bhi shayad zero hu, koi bata sakta hai

  • @harikirandurgaprasad-hj5gw
    @harikirandurgaprasad-hj5gw 10 месяцев назад

    1.make multiple code (example 50)
    2.plan before writing code
    3. break your code into multiple blockes which you can reuse it again.write dry(do not repeat your self) code
    4.fey man method
    5.work on real life projects

  • @technicalresi5451
    @technicalresi5451 10 месяцев назад +3

    Rentionng mast ha 😂😂😂😂 video ka last ma do tutorial dakhna ka bat Kia or complete karna bola right thank you so much bhai 😊❤

  • @ashutoshsharma6088
    @ashutoshsharma6088 10 месяцев назад +1

    sir very very thank you for this playlist, but i have some doubts please answer-
    1. after doing this 100 days of course what should i do like any playlist regarding python i have to watch or its enough.
    2. will just after seeing this course can i shift to amazon machine learning course ?
    3. regarding DSA i am confused like i do with JAVA OR C++, Although i watched the vedios and having my notes for this.
    Please answer for this , it will be very helpful for me sir.......

  • @huzaifaamjad9802
    @huzaifaamjad9802 10 месяцев назад +5

    Level ha harry bhai aap ka love from Pakistan.. ❤

  • @CodeWithGillix
    @CodeWithGillix 10 месяцев назад +2

    Harry bhaiya
    aapke jaisa koi nahi samjha sakta is duniya me
    Aap hamare liye itna sab karte hai harry bhaiya aap jaise bahut kam log hai is duniya me main aapse dil se pyar karta hu ❤

  • @arunkumar-th1by
    @arunkumar-th1by 10 месяцев назад +8

    Respect too Harry sir and I am also watching Sigma batch op

  • @Shabareesha
    @Shabareesha 7 месяцев назад

    I started programming by watching your videos, Harry bhai. Love you!
    you are the best.

  • @unknown11188
    @unknown11188 10 месяцев назад +4

    Much needed video for a beginner Harry bhai!!

  • @aarimandinayashow4227
    @aarimandinayashow4227 3 месяца назад

    NOT always YES, sometimes i am able to successfully execute my ideas but in more complex problems, it is indeed very difficult to build logic......BTW AWESOME VIDEO!

  • @Sharuthi727
    @Sharuthi727 10 месяцев назад +3

    Your videos will always motivate to improve myself bhai ,thank you so much

  • @KishanKumar-xu9cd
    @KishanKumar-xu9cd 3 месяца назад

    Good knowledge provided by you and realise no any one is perfect, start with small project or level increasing. One good line is coder stop a point which who not solve them it is colder level like starting level, mid level or professional level coder. But try everything is possible by continuous practice.

  • @R4HGaming5
    @R4HGaming5 10 месяцев назад +3

    Thank you harry bhai main 3-5 days sa shuru kiya hai ya platform mai logic building but 3-4 din sa na hone ki wajah sa mai depressed ho gaya tha but apka video dakh phir se mera motivation is back i will do coding next day i solve 4 question after seeing this video and it s fun many many thanks harry bhai ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

    • @Rohit-nv4cq
      @Rohit-nv4cq 10 месяцев назад

      Bhaiya muje question bhi mil rahe practice krne ke Lia koi website vatao jo basic questions bataiye har ek topic pe pleace reply 🙌🙏

    • @R4HGaming5
      @R4HGaming5 10 месяцев назад

      @@Rohit-nv4cq coding bat only for java or python else language you download question pdf for practice

  • @krishnabiradar1745
    @krishnabiradar1745 10 месяцев назад +10

    Bhai main se sigma web development suru Kiya hey❤

  • @ArbabRaheem
    @ArbabRaheem 10 месяцев назад +2

    All the things Harray bhai told were reality based! Always to the point👍

  • @RahulSingh-mw9vm
    @RahulSingh-mw9vm 10 месяцев назад +3

    Main thing as a beginner i have experienced and felt is that once u solve a simple problem and when your code works it really gives an immense confidence and it gives u the energy as well to solve bigger problems 🎉🎉🎉🎉. So , CONFIDENCE Boosts your logic building ✨
    And about talking to the duck i would suggest record your video and explain it to yourself, this will improve your communication too.🎉🎉

  • @Anonymous-wx8kk
    @Anonymous-wx8kk 3 месяца назад

    Thank you so much❤aaj bahot dukhi tha mai... Logic build ho raha tha but 5lines of code ko 30 lines me likh raha tha isliye bura lag raha tha... Mere pass koi nahi tha iss chij ka jawab dene ke liye... Aap ne de diya❤thank you again.

  • @H12123
    @H12123 10 месяцев назад +6

    SHARE
    EVERY ONE IS SENDED FOR ONE PURPOSE,NO MATTER WHO YOU ARE NEVER LEAVE THIS SUPPLICATION'ALLAH MAKE MY WORK EASY FOR ME'

  • @jitinder11
    @jitinder11 2 дня назад

    Thank you Harry Bhai...Amazing..I got my answer

  • @Malicious_direction
    @Malicious_direction 10 месяцев назад +14

    Every Thing Is Temporary But Rohan Is Permanent 😂😂

  • @codewalabhai25
    @codewalabhai25 2 дня назад

    i always discuss my concept with my father because he was a employee in google now i am learning ml/dl harry bhai love from pakistan

  • @Billionaire-wh5fp
    @Billionaire-wh5fp 10 месяцев назад +16

    00:08 Logic building problems can be solved with proven strategies
    01:31 Practice is key to understanding and mastery
    02:56 Logic building is dynamic programming.
    04:43 Emphasize module separation and reusability for better code structure and flexibility.
    06:25 Using the DRY principle reduces redundant code and increases code reusability.
    07:52 Rubber Duck Method helps in understanding and explaining concepts effectively
    09:17 Work on real-world projects to develop programming skills.
    11:28 Continuous improvement in logic building is key to programming

  • @NeerajSharma-sg3mk
    @NeerajSharma-sg3mk 10 месяцев назад

    Akhir kar ab jake mein kafi anubhavi kotlin programmer hun. Khud se android Video calling solution bnaya (Koi library ka istemaal nhi) MediaCodec istemaal kiya aur Khud ka TURN CLIENT Bnaya. Bhaisaab kya samay gya mera isme. 😅 Jo bhi ho kafi kuchh sikha mene.

  • @eshachauhan3105
    @eshachauhan3105 10 месяцев назад +4

    thank you bhaiya

  • @Neeraj_Bhatt_UK
    @Neeraj_Bhatt_UK 10 месяцев назад +1

    Thanks puttar ❤❤❤

  • @Dexter_06
    @Dexter_06 10 месяцев назад +3

    Bro please help me to solve this problem 😢
    Q. Given a set of items with weights and values, and a maximum weight capacity, find the combination of items that maximizes the total value without exceeding the capacity.

    • @ritvikreddy3959
      @ritvikreddy3959 10 месяцев назад

      Can you give the link to the problem?

  • @KabirBangash-u5o
    @KabirBangash-u5o 7 месяцев назад +1

    I am a beginner of coding programming and Meta AI is really help full

  • @madhavsingla411
    @madhavsingla411 10 месяцев назад +3

    1:13 yes

  • @GlobalCoding
    @GlobalCoding 7 месяцев назад

    Sir you help me alot to again start my work with new spirit and devotion. Thank you very much.

  • @coding-cafeee5729
    @coding-cafeee5729 10 месяцев назад +6

    All things aside thanks for the home tour 😂

  • @SinghUtkarsh-tc9vf
    @SinghUtkarsh-tc9vf 10 месяцев назад

    9:51 Sir, Chatterjee or Germenjii (Bard Now, Gemini)

  • @3LineOfCode
    @3LineOfCode 10 месяцев назад +26

    Mera motto hai ki mai aisa dashboard banau ki koi code enter kare bade bade and mera code usse summarise karke short bana de, in python

    • @Trendi_Vibes
      @Trendi_Vibes 10 месяцев назад +1

      Already done by chatgpt

    • @gamesden8021
      @gamesden8021 9 месяцев назад

      Means ky code ko optimized Kary

  • @tejas0707
    @tejas0707 3 месяца назад

    Thank u harry bhai! My confidence is stepping up now❤️🫶🏼

  • @3LineOfCode
    @3LineOfCode 10 месяцев назад +13

    Poora dashboard bana lia hai sir Chatgpt se and aapke sare django puthon ke videos dekh dekh ke. but react me problem hoti hai and new sigma ka playlist abhi review baki hai 14 video pe hi pahocha hu

    • @saxenabhavesh6941
      @saxenabhavesh6941 10 месяцев назад

      Kya problem hai mere se puch lo

    • @dragonemperor8648
      @dragonemperor8648 7 месяцев назад

      ​@@saxenabhavesh6941React mein logic kaise strong kare?

    • @saxenabhavesh6941
      @saxenabhavesh6941 7 месяцев назад +1

      @@dragonemperor8648 bhai pehle ek kaam karo js ke string and array method ke basic 5-10 questions solve Karo like filter find and map on maping on nested object , spread operator and itc this topic will help to build a logic in react as well

  • @happy..7
    @happy..7 6 месяцев назад

    thank you so much bhaiya maine app se hi python sikhi hai aap bahaut accha samjate ho ..... we give more time logic building making
    salute you bhaiya😊

  • @ayushkhaire6244
    @ayushkhaire6244 10 месяцев назад +108

    I waste my 3 4 hrs in silly mistakes 😢😢

    • @SarojKaushal-dn1kl
      @SarojKaushal-dn1kl 9 месяцев назад +6

      Same 😢

    • @Rafian1924
      @Rafian1924 8 месяцев назад +14

      Be like a robot.. no emotions are applicable.. keep on doing it..

    • @fkwebdev
      @fkwebdev 7 месяцев назад +19

      Don't disappoint yourself because these silly mistakes will make you pro coder.
      Never forget practice makes man perfect.
      Once I wasted 1-2 hours due to missing of just semicolon😂

    • @ayushkhaire6244
      @ayushkhaire6244 7 месяцев назад +7

      @@fkwebdev 😁😂😂 ❤
      I code in python 😉

    • @fkwebdev
      @fkwebdev 7 месяцев назад +1

      @@ayushkhaire6244 exactly python doesn't have any semicolons😂 but here Laravel which h is PHP framework

  • @shivaniawasthi2981
    @shivaniawasthi2981 10 месяцев назад +1

    you are a hero of programming world .I just love the way you teach❤

  • @harshitStark10
    @harshitStark10 10 месяцев назад +4

    Bard is now Gemini 😊

  • @DaVinci_27
    @DaVinci_27 10 месяцев назад +1

    12:04 Sir kya Html ke lines likhne se be logic build hota he?

  • @ZainiiHashmiii
    @ZainiiHashmiii 10 месяцев назад +4

    I am from Pakistan but still love your work❤

  • @ShivaniSoni-p2j
    @ShivaniSoni-p2j 8 месяцев назад +2

    Thankyou harry.............is vedio ki bahut zada jarurat thi

  • @SejalJha-l1y
    @SejalJha-l1y 24 дня назад +3

    Mai mobile se project kaise banau

  • @tusharghode3454
    @tusharghode3454 9 месяцев назад

    Sir you explained everything in very clean and detail manner. I am very much interested in Web automation testing so can you help us with Automation Tutorial like selenium or playwright tools.
    Humble Request
    Thank you

  • @YT_CRISP
    @YT_CRISP 10 месяцев назад +8

    Bruh The Ringtone

    • @affairs9568
      @affairs9568 3 месяца назад

      Isq the gali vich no entry😅

  • @heetmansuriya3975
    @heetmansuriya3975 10 месяцев назад

    I have learned all things from your videos harry bhai, but practice jyada kaise karu ? Apki video ke sath code ho bhi jata hai lekin jaab apne ap kuch create karne baithe to nahi hota develop. And I am on your channel since my college start 2020. We love watching your videos. Please don't stop creating videos in future.🙂❤❤❤

  • @codewithashuu
    @codewithashuu 10 месяцев назад +3

    main uninstall kr rha hun vs code yrr , mere se nhi ho rha h yrrr...🤣🤣🤣

  • @cheryrj8305
    @cheryrj8305 6 месяцев назад

    i was lil bit upset today becuz i am not really good in simplew programming , thanks for motivation and guiding a way to become better , harry

  • @syedzainulabideen4455
    @syedzainulabideen4455 10 месяцев назад +199

    Those who eats their lunch and come here or eating now😂

  • @sanketganguly3290
    @sanketganguly3290 10 месяцев назад +2

    Please make a playlist on Java Full Stack Development🙏with proper Roadmap

  • @syedzainulabideen4455
    @syedzainulabideen4455 10 месяцев назад +10

    Those who above 18 =like. Those who under 18 = comment.

  • @ameerausman3822
    @ameerausman3822 9 месяцев назад

    Thank you so much Harry bhai. It's beneficial video. I needed this type of video🌸

  • @codeforpython6440
    @codeforpython6440 10 месяцев назад +2

    The new style to make a video is awesome

  • @mohitgandhi2418
    @mohitgandhi2418 10 месяцев назад +2

    Bhai you always deliver quality and great content 👌 👏

  • @Deepak__Ghimire
    @Deepak__Ghimire 6 месяцев назад +1

    8:32 epic😂❤!!

  • @madhavsingla3975
    @madhavsingla3975 10 месяцев назад

    harry bhai, coding ka toh ptah nhi, but aapki videos ko sunn sunn ke meri listening skills enhance hogyi, now watching your videos at 2x. 🙃

  • @reetachaurasia4243
    @reetachaurasia4243 10 месяцев назад +1

    love you bhai apne mujhe bahut motivate kiya apne meri sari problems ka solution de diya

    • @Rohit-nv4cq
      @Rohit-nv4cq 10 месяцев назад

      Bhaiya muje question bhi mil rahe practice krne ke Lia koi website vatao jo basic questions bataiye har ek topic pe pleace reply 🙌🙏

  • @khalilullah4129
    @khalilullah4129 6 месяцев назад

    Thank you sir, for such amazing programming tutorials. I learned too much out of these videos. ❤

  • @STUDYWITHPREM1722
    @STUDYWITHPREM1722 10 месяцев назад +1

    this video is very helpful for me thank's harry bhai

  • @rudrashukla6008
    @rudrashukla6008 Месяц назад +1

    Felt so much useful video 😊😊

  • @Code_Kingdom999
    @Code_Kingdom999 6 месяцев назад

    Bdi Solid Veido bane Lage ho Harry Bhai ap To ab Super Just Like Web Series and Marvel Movies

  • @jitendrapaljittu6036
    @jitendrapaljittu6036 3 месяца назад

    Thanks Harry bhai - Today's my last video on logic building ❤😊

  • @pskilleryt6685
    @pskilleryt6685 4 месяца назад

    These points are solid valid that can never been neglected

  • @AnsarThangalparambil
    @AnsarThangalparambil 6 месяцев назад

    Yes!! I need to build logic in programming

  • @dushyantchaudhry4654
    @dushyantchaudhry4654 10 месяцев назад

    9:18 Harry is it a good idea for my 15 year old sun to keep improving on coding? He seems to like it. In your opinion is there a future or is that changing?

  • @MehakBatool-u3h
    @MehakBatool-u3h 2 месяца назад +2

    Kindly sir make a video on vs code error every new learner face like [Running ], [Build ], lauch.json, task.json, gcc not recognized, undefined etc. Every time when i usw vs code it show me numerous error in a confusing manner. Please make just one vdo to resolve this issue.

  • @siriusplayz5871
    @siriusplayz5871 10 месяцев назад

    Thanks so much dude, this video helped a lot. This is exactly what I needed today, you explained my situation 100%.