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
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.
थैंक यू भैया मैं शुभम् बिहार से हूं। मेरे भी मन में यही डाउट कितने दिनों से चल रहा था आज आपकी कृपा से मुझे सहानुभूति मिल गई। आपका चैनल भी सब्सक्राइब कर दिया ।कोटि कोटि धन्यवाद आपको
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
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
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.
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]; } }
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
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
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
@@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
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.
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 🍫🍫🥰🥰🥰🥰
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..
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.
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
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.
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..💌💌💌💌💌💌
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
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
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.......
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 ❤
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!
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.
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 ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
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.🎉🎉
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.
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
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.
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.
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
@@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
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😂
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
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.🙂❤❤❤
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?
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.
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
Yes looking at other people's code and learning from it has immensely helped me especially during my earlier days of learning to code.
Muje to aj tak reply nahi kia bhai, 3 saal me
@@3LineOfCode Aur tu firse ignore ho gya XD 😂
@@parasmanku7536 lol
@@parasmanku7536 bc kismat khrab bichare ki 😂
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.
थैंक यू भैया
मैं शुभम् बिहार से हूं।
मेरे भी मन में यही डाउट कितने दिनों से चल रहा था आज आपकी कृपा से मुझे सहानुभूति मिल गई। आपका चैनल भी सब्सक्राइब कर दिया ।कोटि कोटि धन्यवाद आपको
Bhai bahut bahut thank you aapko. Jo pichle 4 saal me nahi mila vo bas 13 min me milgaya.
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
@@GALACTOxOP bhai ab ka kya status hai, kuch smj aaya
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
Nice.. :)
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.
I really felt hopeful today after this video.U gave the absolute logic building roadmap.
Thanks!!
Watching your videos since 2020 , still love it ❤
Thanks buddy :)
Awesome video harry bro ❤
YES!!
Logic Building is the most fundamental thing to master!!
And true the more you indulge in different aspects the better!!
Thanks Harry Bhai!!
The editing, backgrounds, concept everything is just 🔥♥️
right 👍👍
Thanks :)
first intro Jabardast Harry Bhai. Bollywood per sagat hey apka
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];
}
}
Thanks
It's not only a coding tutorial, It's a Cinematic masterpiece 💖
Kya cinematic tha isme ?
@@Ohhh7777 Have u seen mrwhosetheboss and channels like that?
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
1.Practice.
2.Clean structure code.
3.Dry code.
4.Duck explain code.
Bhaiya muje question bhi mil rahe practice krne ke Lia koi website vatao jo basic questions bataiye har ek topic pe pleace reply 🙌🙏
Plz muja bi btao @@Rohit-nv4cq
Harry bhai aapki videos ko dekhte dekhte 3 saal ho gye pata hi nhi chala par bhit kuch seekhne ko mila
Luv U
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
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
@@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
Harry bhai Best Programming tutor , bhai i followed your full python ,javascript course i love the way you teach amazing you are
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.
10:27 nice portfolio website layout, i will steal it now
kamalll Harry Sir
The editing, backgrounds, concept everything is just 🔥♥
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.
Worth Watching every second ❤
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 🍫🍫🥰🥰🥰🥰
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..
1:11 Yes But better than before after watching your videos Harry Bhai. Thanks a lot for all this ❤.
Itna accha to mujeha koi nahi samjya sir love you from purulia❤❤❤❤❤❤❤❤
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.
00:27 VS code ke badle aap to Premiere Pro chala rahe ho, Editor ji
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
Offff! That rubber duck method short clip 😂❤
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.
Watching your Videos from 2019, and you are just too amazing. Love you
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
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..💌💌💌💌💌💌
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
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
Rentionng mast ha 😂😂😂😂 video ka last ma do tutorial dakhna ka bat Kia or complete karna bola right thank you so much bhai 😊❤
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.......
Level ha harry bhai aap ka love from Pakistan.. ❤
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 ❤
Respect too Harry sir and I am also watching Sigma batch op
same
I started programming by watching your videos, Harry bhai. Love you!
you are the best.
Much needed video for a beginner Harry bhai!!
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!
Your videos will always motivate to improve myself bhai ,thank you so much
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.
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 ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
Bhaiya muje question bhi mil rahe practice krne ke Lia koi website vatao jo basic questions bataiye har ek topic pe pleace reply 🙌🙏
@@Rohit-nv4cq coding bat only for java or python else language you download question pdf for practice
Bhai main se sigma web development suru Kiya hey❤
All the things Harray bhai told were reality based! Always to the point👍
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.🎉🎉
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.
SHARE
EVERY ONE IS SENDED FOR ONE PURPOSE,NO MATTER WHO YOU ARE NEVER LEAVE THIS SUPPLICATION'ALLAH MAKE MY WORK EASY FOR ME'
Thank you Harry Bhai...Amazing..I got my answer
Every Thing Is Temporary But Rohan Is Permanent 😂😂
Shubam is also
@@YawarHussain-y8u 😂😂
😅
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
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
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.
thank you bhaiya
Thanks puttar ❤❤❤
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.
Can you give the link to the problem?
I am a beginner of coding programming and Meta AI is really help full
1:13 yes
Sir you help me alot to again start my work with new spirit and devotion. Thank you very much.
All things aside thanks for the home tour 😂
9:51 Sir, Chatterjee or Germenjii (Bard Now, Gemini)
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
Already done by chatgpt
Means ky code ko optimized Kary
Thank u harry bhai! My confidence is stepping up now❤️🫶🏼
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
Kya problem hai mere se puch lo
@@saxenabhavesh6941React mein logic kaise strong kare?
@@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
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😊
I waste my 3 4 hrs in silly mistakes 😢😢
Same 😢
Be like a robot.. no emotions are applicable.. keep on doing it..
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😂
@@fkwebdev 😁😂😂 ❤
I code in python 😉
@@ayushkhaire6244 exactly python doesn't have any semicolons😂 but here Laravel which h is PHP framework
you are a hero of programming world .I just love the way you teach❤
Bard is now Gemini 😊
12:04 Sir kya Html ke lines likhne se be logic build hota he?
Nah bro 😂😂
I am from Pakistan but still love your work❤
Thankyou harry.............is vedio ki bahut zada jarurat thi
Mai mobile se project kaise banau
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
Bruh The Ringtone
Isq the gali vich no entry😅
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.🙂❤❤❤
main uninstall kr rha hun vs code yrr , mere se nhi ho rha h yrrr...🤣🤣🤣
😂😂😂😂
Any desk de do 😂😂😂
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
Those who eats their lunch and come here or eating now😂
Bhai tujhe kaise malum 😂😂
Dinner
same here bro 😂
dinner
Meri baat kon leak kr rha h
Please make a playlist on Java Full Stack Development🙏with proper Roadmap
Those who above 18 =like. Those who under 18 = comment.
Thank you so much Harry bhai. It's beneficial video. I needed this type of video🌸
The new style to make a video is awesome
Bhai you always deliver quality and great content 👌 👏
8:32 epic😂❤!!
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. 🙃
love you bhai apne mujhe bahut motivate kiya apne meri sari problems ka solution de diya
Bhaiya muje question bhi mil rahe practice krne ke Lia koi website vatao jo basic questions bataiye har ek topic pe pleace reply 🙌🙏
Thank you sir, for such amazing programming tutorials. I learned too much out of these videos. ❤
this video is very helpful for me thank's harry bhai
Felt so much useful video 😊😊
Bdi Solid Veido bane Lage ho Harry Bhai ap To ab Super Just Like Web Series and Marvel Movies
Thanks Harry bhai - Today's my last video on logic building ❤😊
These points are solid valid that can never been neglected
Yes!! I need to build logic in programming
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?
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.
Thanks so much dude, this video helped a lot. This is exactly what I needed today, you explained my situation 100%.