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

Поділитися
Вставка
  • Опубліковано 20 гру 2024

КОМЕНТАРІ • 1,2 тис.

  • @anishshrestha71
    @anishshrestha71 10 місяців тому +297

    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 місяців тому +101

      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 😂

  • @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.

  • @Billionaire-wh5fp
    @Billionaire-wh5fp 10 місяців тому +50

    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 24 дні тому

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

  • @Shubham_Kumar_Rastrbhakt
    @Shubham_Kumar_Rastrbhakt 10 місяців тому +15

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

  • @codingseekhoshivanshkesath9486
    @codingseekhoshivanshkesath9486 10 місяців тому +28

    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.

  • @enciridus2291
    @enciridus2291 10 місяців тому +39

    first intro Jabardast Harry Bhai. Bollywood per sagat hey apka

  • @Dheerajyadav0004
    @Dheerajyadav0004 10 місяців тому +198

    Watching your videos since 2020 , still love it ❤

  • @sonali7868
    @sonali7868 10 місяців тому +34

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

  • @Mehwishashfaq-tm1hq
    @Mehwishashfaq-tm1hq 10 місяців тому +8

    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 6 місяців тому

      @@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

  • @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

  • @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

  • @hamzafarooq4417
    @hamzafarooq4417 7 місяців тому +2

    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];
    }
    }

  • @ritikmalik6308
    @ritikmalik6308 10 місяців тому +16

    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

  • @souvikroy6099
    @souvikroy6099 10 місяців тому

    Thanks

  • @abdulsaboor2004.
    @abdulsaboor2004. 10 місяців тому +34

    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?

  • @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 🔥♥️

  • @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 🍫🍫🥰🥰🥰🥰

  • @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.

  • @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

  • @kakatuasharma
    @kakatuasharma 10 місяців тому +5

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

  • @ShivaniSoni-p2j
    @ShivaniSoni-p2j 8 місяців тому +2

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

  • @alizameeruddinkhan3916
    @alizameeruddinkhan3916 10 місяців тому +18

    Worth Watching every second ❤

  • @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

  • @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

  • @huzaifaamjad9802
    @huzaifaamjad9802 10 місяців тому +5

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

  • @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 🙌🙏

  • @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 9 місяців тому +1

      Already done by chatgpt

    • @gamesden8021
      @gamesden8021 9 місяців тому

      Means ky code ko optimized Kary

  • @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

  • @KabirBangash-u5o
    @KabirBangash-u5o 7 місяців тому +1

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

  • @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 😊❤

  • @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

  • @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..

  • @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

  • @codewithsoyeb
    @codewithsoyeb 10 місяців тому +4

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

  • @ashutoshsharma6088
    @ashutoshsharma6088 9 місяців тому +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.......

  • @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

  • @STUDYWITHPREM1722
    @STUDYWITHPREM1722 9 місяців тому +1

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

  • @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

  • @comingtomorrow
    @comingtomorrow 10 місяців тому +4

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

  • @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.

  • @krishnabiradar1745
    @krishnabiradar1745 10 місяців тому +10

    Bhai main se sigma web development suru Kiya hey❤

  • @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.

  • @Sharuthi727
    @Sharuthi727 10 місяців тому +3

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

  • @Sonic_Slowmo4083
    @Sonic_Slowmo4083 10 місяців тому

    yes!!!!!!!!dsa mai video dekh ke code krletahu but khi ques aya toh kr nhi pata hu

  • @unknown11188
    @unknown11188 10 місяців тому +4

    Much needed video for a beginner Harry bhai!!

  • @Neeraj_Bhatt_UK
    @Neeraj_Bhatt_UK 10 місяців тому +1

    Thanks puttar ❤❤❤

  • @WebSigmaBatchOP
    @WebSigmaBatchOP 10 місяців тому +8

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

  • @happy..7
    @happy..7 5 місяців тому

    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😊

  • @kashif-kazmi2050
    @kashif-kazmi2050 10 місяців тому +5

    Offff! That rubber duck method short clip 😂❤

  • @Manjar--CODER--Dhanbad
    @Manjar--CODER--Dhanbad 10 місяців тому +1

    Harry bhaiyya side income source per video banaiyye naa kyunki paison ki dikkat ho rhi hai bahut zyada and khud se kama ke apna pocket money nikalna hai 😢

  • @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'

  • @PRIYANSHUCHAKRABORTY-yv3mq
    @PRIYANSHUCHAKRABORTY-yv3mq 10 місяців тому +1

    thanks Harry bhai...earlier i used to think video dekhna galat baat hai but ab wishwaash ho rha ki am on right path....kuch na karne se better hai atleast tutorial dekhkr hi seekho atleast consistency toh maintain rhegi.

    • @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 🙌🙏

  • @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?

  • @mohammadumarshaikh7787
    @mohammadumarshaikh7787 10 місяців тому +1

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

  • @eshachauhan3105
    @eshachauhan3105 10 місяців тому +4

    thank you bhaiya

  • @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.

  • @Malicious_direction
    @Malicious_direction 10 місяців тому +14

    Every Thing Is Temporary But Rohan Is Permanent 😂😂

  • @AnsarThangalparambil
    @AnsarThangalparambil 6 місяців тому

    Yes!! I need to build logic in programming

  • @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.🎉🎉

  • @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. 🙃

  • @madhavsingla411
    @madhavsingla411 10 місяців тому +3

    1:13 yes

  • @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

  • @itzkirookiroo
    @itzkirookiroo 9 місяців тому

    MA SHA ALLAH really mind blowing
    ur way is awesome

  • @harshitStark10
    @harshitStark10 10 місяців тому +4

    Bard is now Gemini 😊

  • @subhanmalik.12
    @subhanmalik.12 Місяць тому

    Bhai kmal motivation aj sy apko subscribe kr leya ha😊

  • @coding-cafeee5729
    @coding-cafeee5729 10 місяців тому +6

    All things aside thanks for the home tour 😂

  • @Inspire_hub777
    @Inspire_hub777 10 місяців тому

    Thank bhai promblem solved ho gye
    👍

  • @ayushkhaire6244
    @ayushkhaire6244 10 місяців тому +104

    I waste my 3 4 hrs in silly mistakes 😢😢

    • @SarojKaushal-dn1kl
      @SarojKaushal-dn1kl 9 місяців тому +5

      Same 😢

    • @Rafian1924
      @Rafian1924 7 місяців тому +13

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

    • @fkwebdev
      @fkwebdev 7 місяців тому +18

      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 місяців тому +6

      @@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

  • @kamleshpatil1959
    @kamleshpatil1959 10 місяців тому

    Video me knowledge and representation bahut achha hai bhai...

  • @codewithashuu
    @codewithashuu 10 місяців тому +3

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

  • @369Gamer
    @369Gamer 10 місяців тому +1

    Harry bhai RUST ka course please bnalo. #sigma badge op

  • @YT_CRISP
    @YT_CRISP 9 місяців тому +8

    Bruh The Ringtone

    • @affairs9568
      @affairs9568 3 місяці тому

      Isq the gali vich no entry😅

  • @smarteveryday1606
    @smarteveryday1606 29 днів тому

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

  • @ZainiiHashmiii
    @ZainiiHashmiii 10 місяців тому +4

    I am from Pakistan but still love your work❤

  • @Shabareesha
    @Shabareesha 7 місяців тому

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

  • @syedzainulabideen4455
    @syedzainulabideen4455 10 місяців тому +198

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

  • @keshav2kumar
    @keshav2kumar 10 місяців тому

    Fun ke sath video me sikhne ko bhi mila
    Nice

  • @syedzainulabideen4455
    @syedzainulabideen4455 10 місяців тому +10

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

  • @DeepakMeenaA
    @DeepakMeenaA 10 місяців тому

    Sir ek video ai per topic covered
    1. Ai used in coding like chat gpt
    2. 5 ai to use in programming
    3. What is blackbox ai how to use
    4. How to choose in coding what is best for professional work one place and only learn about them not waste time in another
    5. Revise schedule of notes daily but after a month it's seem like booring
    Who agree like and also add some point for video
    ❤❤❤❤❤

  • @MehakBatool-u3h
    @MehakBatool-u3h Місяць тому +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.

  • @sanketganguly3290
    @sanketganguly3290 10 місяців тому +2

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

  • @shivaniawasthi2981
    @shivaniawasthi2981 10 місяців тому +1

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

  • @Gold_Fish369
    @Gold_Fish369 5 місяців тому +1

    Simply briliant, Thank you!

  • @coding-ka-badshah
    @coding-ka-badshah 10 місяців тому +1

    Monitor ko laptop se HDMI cable se connect karke coding experience share karo ispe detail video laoo plzz 🙏🙏

  • @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.

  • @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.

  • @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.

  • @Ekkadevilgaming
    @Ekkadevilgaming 10 місяців тому +1

    Logic building is a fully experience based ❤❤ experience badhao sab set hai 😊😊

  • @rudrashukla6008
    @rudrashukla6008 26 днів тому +1

    Felt so much useful video 😊😊

  • @ArbabRaheem
    @ArbabRaheem 10 місяців тому +2

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

  • @cheryrj8305
    @cheryrj8305 5 місяців тому

    it is very good idea to pair programming with AI , thnks

  • @asmashaikh3818
    @asmashaikh3818 6 місяців тому

    Sir logic building ka video bhi samajh gya or aapka ghar bhi dekh liya mast ghar hai color combination bhi axhe hai😅

  • @codeforpython6440
    @codeforpython6440 10 місяців тому +2

    The new style to make a video is awesome

  • @thankyoupwandarvindarorasi3813
    @thankyoupwandarvindarorasi3813 7 місяців тому +1

    yes, Thank you sir Harry

  • @mjnyc88
    @mjnyc88 8 місяців тому +1

    I am beginner, i want to learn python programming from scratch, which video or tutorial you recommend to start with?

  • @sagarbiswas5689
    @sagarbiswas5689 10 місяців тому +1

    Sir please complete the sigma web developemnt course...We are all waiting for new tutorial...

  • @Theworrier909
    @Theworrier909 5 місяців тому +1

    thanks a lot 😎😎😎😎

  • @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