Тёмный
Bro Code
Bro Code
Bro Code
Подписаться
Coding bootcamps hate him!
See how he can teach you to code with this one weird trick...

This channel is dedicated to providing free education to those that can't afford college, bootcamps, and whatever crap coding gurus try to sell you.

Subscribe to support free education! 👊🔔
React useRef() hook introduction 🗳️
11:18
3 месяца назад
React useEffect() hook introduction 🌟
19:52
4 месяца назад
JavaScript Full Course for free 🌐 (2024)
12:00:00
4 месяца назад
Learn JSON files in 10 minutes! 📄
10:09
4 месяца назад
JavaScript ASYNC/AWAIT is easy! ⏳
4:39
4 месяца назад
What are JavaScript PROMISES? 🤞
12:37
4 месяца назад
What is JavaScript CALLBACK HELL? 🔥
5:49
4 месяца назад
Learn JS METHOD CHAINING in 5 minutes! ⛓
5:27
4 месяца назад
Build this JS STOPWATCH in 18 minutes! ⏱
18:06
4 месяца назад
What are NodeLists in JavaScript? 📃
13:22
4 месяца назад
React JS how to update ARRAYS in state 🍎
9:01
5 месяцев назад
React JS how to update OBJECTS in state 🚗
9:10
5 месяцев назад
What are React updater functions? 🔄
7:15
5 месяцев назад
Learn DOM Navigation in 15 minutes! 🧭
15:27
5 месяцев назад
Комментарии
@user-fn4sz9nj4k
@user-fn4sz9nj4k 50 секунд назад
I watched his Java Script C++ course This Giga Chad guy deserves a Red Diamond play button
@yokin_owo
@yokin_owo 15 минут назад
good morini
@Ankitsarwal
@Ankitsarwal 27 минут назад
I like the explaining way
@LEAP05-wl6ei
@LEAP05-wl6ei 41 минуту назад
Really cool function
@imhung1702
@imhung1702 49 минут назад
tyyy
@sametkurum
@sametkurum 51 минуту назад
41
@iskimbett1246
@iskimbett1246 56 минут назад
🔥🔥🔥
@eumm11
@eumm11 59 минут назад
thank you bro, this was great!
@douggale5962
@douggale5962 Час назад
What about mama structures? It's pronounced day-ta, fool.
@user-hi4eh6lm8c
@user-hi4eh6lm8c Час назад
That theme in the cover photo, I’m begging to find its name.
@muskaanbukhari7412
@muskaanbukhari7412 Час назад
dropping this comment to see if i can complete this course (i get bored easily) :(
@komivibl5140
@komivibl5140 Час назад
bro code you aree the goat god bless you every day god bless your parents , your wife and your children
@iamTHIEN013
@iamTHIEN013 2 часа назад
Please do the road map, what to study in JAVA to get a job. Thank you so much
@hassansyed6087
@hassansyed6087 2 часа назад
"I think of parentheses as a pair of telephones talking to each other" I love on point analogies like this. It just helped me link so many things together with one good analogy.
@MasterEdit23-yl3re
@MasterEdit23-yl3re 3 часа назад
Normal height:250.5💀🙏
@muhammadazzam9894
@muhammadazzam9894 3 часа назад
Great vid 👍👍
@consciousness_7
@consciousness_7 3 часа назад
❤❤❤❤
@faithdaniel3480
@faithdaniel3480 3 часа назад
🥰🥰🥰🥰🥰such a clear video.Thank you
@MaakusHobby
@MaakusHobby 3 часа назад
I waited for 15 mins just to see how it really works, and then uses the magic eval function 🙂🤌✨
@isabellea5275
@isabellea5275 4 часа назад
Very much appreciated for sharing the knowledge of Java!!! Bro you are perfect!
@genos3148
@genos3148 4 часа назад
THE BEST!!!!
@Real_Ray128
@Real_Ray128 4 часа назад
helped me out
@Real_Ray128
@Real_Ray128 4 часа назад
thanks man
@yazanalkabbani1920
@yazanalkabbani1920 4 часа назад
thank you for the time you generously give to help us and make learning easy and fun i really hope you try giving a spring boot 3 course it would be super helpful for a lot of people who struggle to learn it
@bharathbharath1272
@bharathbharath1272 4 часа назад
❤🎉
@ibrahimhassoun2595
@ibrahimhassoun2595 5 часов назад
This course is AMAZING
@ibrahimhassoun2595
@ibrahimhassoun2595 5 часов назад
Thank you
@shogune_yt
@shogune_yt 6 часов назад
output not work
@Ari-pq4db
@Ari-pq4db 6 часов назад
Thank you sir , This has helped me a lot , keep it up !!❤
@nyagalynette3057
@nyagalynette3057 6 часов назад
I am at 10 hours 40 minutes and all I can say is Thank you very much. I am a total beginner here feeling like a pro. Although it has taken me 1 month, It was worth every second.
@Clipped45
@Clipped45 6 часов назад
can you do a course on git and github
@nia0608
@nia0608 6 часов назад
OK! I make two steps, but I don't wanna be subscribers)
@Greenbay-bn3yk
@Greenbay-bn3yk 7 часов назад
Hell yeah!👍 You are the best teacher I've ever found
@wzup23
@wzup23 7 часов назад
Dude I've been following this series for 3 days I think. Whenever I'm stuck or get bored while coding and reading stuffs, I go to these videos. You're a great teacher dude. Btw, since I was so used using for loops for the implementation for your other algos, I tried using that loop as well for this sorting. Here's mine: public class InsertionSort { public static void main(String[] args) { int array[] = { 9, 1, 8, 2, 7, 3, 6, 5, 4, 15, 12, 18, 1, 100 }; insertionSort(array); for (int i : array) System.out.print(i + " "); } public static void insertionSort(int array[]) { int temp; for (int i = 0; i < array.length; i++) { for (int j = i + 1; j > 0 && j < array.length; j--) { if ((array[j] < array[j - 1])) { temp = array[j - 1]; array[j - 1] = array[j]; array[j] = temp; } } } } }
@eugenezuev7349
@eugenezuev7349 7 часов назад
@lalit7562
@lalit7562 7 часов назад
import random running = True while running : name = input("Enter Your Name : ") a = ["sissor","stone","paper"] b = random.choice(a) print("sissor , stone , paper") print ("stop to stop playing") user = input("enter what you want to chose :") print("Your's choice :",user) print("Coumputer's choice : ",b) if (user == "sissor" and b == "paper"): print (f"{name} won") elif (user == "stone" and b == "paper"): print (f"{name} won") elif (user == "paper" and b == "paper"): print("tie") elif(user == "sissor" and b == "sissor"): print("tie") elif(user == "stone" and b == "sissor"): print(f"{name} won") elif(user == "paper" and b == "sissor"): print("computer won") elif(user == "paper" and b == "stone"): print ("computer won") elif(user == "stone" and b == "stone"): print ("tie") elif(user == "sissor" and b == "stone"): print ("coumputer won") elif (user == "stop"): break else: print ("Please Correct The Spelling")
@VivekScorp
@VivekScorp 7 часов назад
This is so good, thank you so much
@amirali3167
@amirali3167 7 часов назад
why nobody talking about nuclear launch codes in the files? 💀
@thanhcong1349
@thanhcong1349 8 часов назад
Thank you for a wonderful course
@Vincenzo_Tran
@Vincenzo_Tran 8 часов назад
good
@Baennit
@Baennit 8 часов назад
*personal* 2:16:43
@program.wrld07
@program.wrld07 8 часов назад
Your the best❤
@rinderurulade5785
@rinderurulade5785 8 часов назад
22:25 14:27 Create Tables 10:29 5:12 5/9/24
@hishamdebis9490
@hishamdebis9490 9 часов назад
awesome
@stevofiso319
@stevofiso319 9 часов назад
we are graduating with this one
@loke3969
@loke3969 9 часов назад
Hello Bro, can you make a video on the redux toolkit.
@feris2137
@feris2137 10 часов назад
Finally someone who makes tutorial that actually explains shit instead. Blessings of the Omnissiah be upon you
@arshadahamed988
@arshadahamed988 10 часов назад
Can we have more values in single usecontext hook??
@r3dwulf3
@r3dwulf3 10 часов назад
Finally, I understood this. The concept was very confusing when others tried to explain it, and this video made it very simple to understand. Thank you for breaking it down.
@Grays-wr7gc
@Grays-wr7gc 10 часов назад
1:38:30