@brocodez Bro CodeBro Code posts on YouTube about python, how to, javascript, engineering the most. They currently have [---------] followers and [---] posts still getting attention that total [------] engagements in the last [--] hours.
Social category influence technology brands 3.49% stocks 1.94% social networks 1.55% gaming 0.39%
Social topic influence python #94, how to 15.89%, javascript #43, engineering #601, tutorial #951, code #381, data #217, java #29, artificial #762, artificial intelligence #410
Top accounts mentioned or mentioned by @christencodes @property @fakecom @learnwithw3schools @override @abstractmethod @ssword @gmailcom @htech @curzedg
Top assets mentioned Microsoft Corp. (MSFT) Alphabet Inc Class A (GOOGL) PostCoin (POST)
Top posts by engagements in the last [--] hours
"Start using Matplotlib in [--] minutes ๐ #python #coding #matplotlib Matplotlib is a Python library used for data visualization. It provides a MATLAB-like interface for quick plotting. After finishing this series I would recommend learning linear algebra Scikit-learn or more advanced Matplotlib topics. python matplotlib tutorial intro coding programming python matplotlib tutorial intro coding programming"
YouTube Link 2025-09-29T12:25Z 3.1M followers, 26.3K engagements
"Learn Java abstraction in [--] minutes ๐ซ #java #javatutorial #javacourse public class Main public static void main(String args) // abstract = Used to define abstract classes and methods. // Abstraction is the process of hiding implementation details // and showing only the essential features. // Abstract classes CAN'T be instantiated directly. // Can contain 'abstract' methods (which must be implemented) // Can contain 'concrete' methods (which are inherited) Circle circle = new Circle(3); Triangle triangle = new Triangle(4 5); Rectangle rectangle = new Rectangle(6 7); circle.display();"
YouTube Link 2024-12-05T17:02Z 3.1M followers, 28.3K engagements
"PHP $_GET and $_POST explained PHP get and post super global variables 00:00:00 intro 00:02:53 $_GET 00:05:30 $_POST 00:07:00 exercise php get php post php $_get php $_post php tutorial php course php get php post php $_get php $_post php tutorial php course"
YouTube Link 2024-05-20T01:13Z 3.1M followers, 71.7K engagements
"Functions in Python are easy ๐ #python #tutorial #course 00:00:00 functions 00:01:49 arguments 00:04:28 exercise #1 00:06:12 return 00:08:27 exercise #2 00:10:08 conclusion # ---------- EXAMPLE [--] ---------- def display_invoice(username amount due_date): print(f"Hello username") print(f"Your bill of $amount:.2f is due: due_date") # display_invoice("BroCode" [-----] "01/02") # display_invoice("JoeSchmo" [------] "02/03") # ---------- EXAMPLE [--] ---------- def create_name(first last): first = first.capitalize() last = last.capitalize() return first + " " + last full_name = create_name("spongebob""
YouTube Link 2022-11-26T15:00Z 3.1M followers, 1.1M engagements
"Learn Insertion Sort in [--] minutes ๐งฉ Data structures and algorithms insertion sort #insertion #sort #algorithm // Insertion sort = after comparing elements to the left // shift elements to the right to make room to insert a value // Quadratic time O(n2) // small data set = decent // large data set = BAD // Less steps than Bubble sort // Best case is O(n) compared to Selection sort O(n2) music credits ๐ผ : =========================================================== Take It Easy - by Bad Snacks link: https://youtu.be/UxvSQ0u_-OU ==========================================================="
YouTube Link 2021-06-08T14:00Z 3.1M followers, 472.5K engagements
"Learn MySQL joins in [--] minutes #MySQL #course #tutorial 00:00:00 intro 00:01:46 INNER JOIN 00:03:48 LEFT JOIN 00:04:20 RIGHT JOIN 00:04:45 conclusion -- INNER JOIN selects records that have a matching key in both tables. SELECT * FROM transactions INNER JOIN customers ON transactions.customer_id = customers.customer_id; -- LEFT JOIN returns all records from the left table -- and the matching records from the right table SELECT * FROM transactions LEFT JOIN customers ON transactions.customer_id = customers.customer_id; -- RIGHT JOIN returns all records from the right table -- and the matching"
YouTube Link 2022-10-30T14:26Z 3.1M followers, 854.3K engagements
"METHODS in Java are easy ๐ #java #javatutorial #javacourse 00:00:00 introduction 00:01:38 methods 00:03:37 arguments 00:04:37 parameters 00:08:23 return 00:10:30 example [--] 00:11:10 example [--] 00:12:41 example [--] public class Main public static void main(String args) // method = a block of reusable code that is executed when called () happyBirthday("Spongebob" 30); static void happyBirthday(String name int age) System.out.println("Happy Birthday to you"); System.out.printf("Happy Birthday dear %sn" name); System.out.printf("You are %d years oldn" age); System.out.println("Happy Birthday to"
YouTube Link 2024-12-05T16:58Z 3.1M followers, 53K engagements
"PHP $_SESSION explained #PHP #course #tutorial 00:00:00 introduction 00:00:34 creating a new php file 00:00:54 session_start() 00:01:52 $_SESSION 00:04:29 exercise 00:09:59 session_destroy() 00:11:35 conclusion PHP course PHP tutorial PHP coding PHp sessions PHP $_SESSION PHP course PHP tutorial PHP coding PHp sessions PHP $_SESSION"
YouTube Link 2024-05-20T01:22Z 3.1M followers, 43.5K engagements
"Learn HTML video in [--] minutes ๐ฅ HTML how to add a video to a webpage website tutorial example explained #HTML #video #website How to create html5 videos and embed videos create html5 video embed vimeo videos in html html embed html html5 html5 video player html5 video player youtube html5 video autoplay html5 video controls embed youtube videos in html html tutorial embed videos using html css css tutorial Learn HTML and CSS Basics of CSS mmtuts html tutorial for beginners How to insert videos using HTML html5 video tutorial html video tutorial html5 video html embed tutorial How to create"
YouTube Link 2021-08-19T15:00Z 3.1M followers, 352.5K engagements
"Java inheritance ๐ช Java inheritance tutorial example #Java #inheritance #tutorial #example java inheritance java inheritance tutorial java inheritance example java inheritance explained inheritance java tutorial example parent class child class subclass superclass java inheritance java inheritance tutorial java inheritance example java inheritance explained inheritance java tutorial example parent class child class subclass superclass"
YouTube Link 2020-09-29T21:09Z 3.1M followers, 400.6K engagements
"Python lists sets and tuples explained ๐ #python #tutorial #course Python list set tuple tutorial example explained 00:00:00 intro 00:00:49 list 00:09:40 set 00:12:40 tuple 00:14:22 conclusion # List = ordered and changeable. Duplicates OK # Set = unordered and immutable but Add/Remove OK. NO duplicates # Tuple = () ordered and unchangeable. Duplicates OK. FASTER Python tutorial for beginners python course Python tutorial for beginners python course"
YouTube Link 2022-11-04T14:23Z 3.1M followers, 671.2K engagements
"Learn HTML tables in [--] minutes ๐ HTML table tutorial example explained How to create a table in HTML #HTML #table #tutorial Table In HTML and CSS how to create a table in html and css how to create a table table html table how to style a table how to style an html table html html tutorial css tutorial css tutorial mmtuts html th html tr html td html table cell table cell how to create rows and columns in a table Table In HTML and CSS how to create a table in html and css how to create a table table html table how to style a table how to style an html table html html tutorial css tutorial css"
YouTube Link 2021-08-24T14:28Z 3.1M followers, 448.6K engagements
"JavaScript Full Course for free ๐ #javascript #tutorial #course Time Stamps #1 00:00:00 JavaScript tutorial for beginners ๐ #2 00:12:32 Variables ๐ฆ #3 00:25:20 Arithmetic operators โ #4 00:33:47 Accept user input ๐ฌ #5 00:39:09 Type conversion ๐ฑ #6 00:44:48 Constants ๐ซ #7 00:52:30 Counter program ๐ข #8 01:01:46 Math object ๐งฎ #9 01:07:23 Random number generator #10 01:15:59 If statements ๐ค #11 01:31:56 Checked property โ
#12 01:42:03 Ternary operator โ #13 01:48:49 Switches ๐ก #14 01:55:33 String methods ๐งต #15 02:03:35 String slicing โ #16 02:11:36 Method chaining โ #17 02:17:03"
YouTube Link 2024-01-01T14:30Z 3.1M followers, 4.9M engagements
"Java object passing ๐ฌ Java pass objects as arguments parameters #Java #object #pass #arguments #parameters pass by value and pass by reference in java call by value and call by reference in java object passing in java passing object as parameter in java java tutorial for beginners pass by value and pass by reference in java call by value and call by reference in java object passing in java passing object as parameter in java java tutorial for beginners"
YouTube Link 2020-09-29T21:09Z 3.1M followers, 96.6K engagements
"Java GUI intro [--] minutes Java GUI intro JOptionPane #Java #GUI #into #JOptionPane Java GUI java gui java gui tutorial java gui swing java gui JoptionPane JOptionPane joptionpane messageDialog inputDialog java Java GUI java gui java gui tutorial java gui swing java gui JoptionPane JOptionPane joptionpane messageDialog inputDialog java"
YouTube Link 2020-10-13T22:46Z 3.1M followers, 257.5K engagements
"Java for loops are easy ๐ #java #javatutorial #javacourse A for loop in Java is used to repeat a block of code a specific number of times with control over initialization condition and update of a loop variable within a single statement. The loop runs as long as the condition is true executing the body and updating the variable until the condition becomes false. 00:00:00 introduction 00:00:23 example [--] 00:04:25 example [--] 00:06:33 project java tutorial java course java programming java exercises java projects java coding java programming coding java for loop java for loops for loops java loop"
YouTube Link 2024-12-05T16:57Z 3.1M followers, 78.1K engagements
"Encryption program in Python ๐ #python #course #tutorial import random import string chars = " " + string.punctuation + string.digits + string.ascii_letters chars = list(chars) key = chars.copy() random.shuffle(key) #ENCRYPT plain_text = input("Enter a message to encrypt: ") cipher_text = "" for letter in plain_text: index = chars.index(letter) cipher_text += keyindex print(f"original message : plain_text") print(f"encrypted message: cipher_text") #DECRYPT cipher_text = input("Enter a message to encrypt: ") plain_text = "" for letter in cipher_text: index = key.index(letter) plain_text +="
YouTube Link 2022-11-17T15:44Z 3.1M followers, 180.2K engagements
"Learn HTML forms in [--] minutes ๐ HTML forms tutorial example explained #HTML #forms #tutorial html forms html forms tutorial html form html form tutorial html form validation html form tag html input html input tutorial html input tag html input tag tutorial html registration form html registration form tutorial html form attributes html input types html checkbox html radio button html label html button html for beginners html beginner html form beginner html forms easy html forms html forms tutorial html form html form tutorial html form validation html form tag html input html input"
YouTube Link 2021-09-01T12:51Z 3.1M followers, 624.9K engagements
"Learn Binary search trees in [--] minutes ๐ Binary search tree data structures and algorithms java #binary #search #tree Binary Search Tree Computer Technology technology computer science Computer Science (Industry) programming interview algorithms course school college university Student enterprise corporate training skill Software Binary Search Tree Computer Technology technology computer science Computer Science (Industry) programming interview algorithms course school college university Student enterprise corporate training skill Software"
YouTube Link 2021-11-10T15:22Z 3.1M followers, 322.2K engagements
"HTML & CSS Full Course for free ๐ #HTML #CSS #course TIME STAMPS #1 00:00:00 Introduction to HTML ๐ 00:01:56 VSCode download 00:02:38 project folder setup 00:02:57 index.html 00:03:16 live server extension 00:03:35 html basics #2 00:11:07 hyperlinks ๐ #3 00:15:15 images ๐ผ #4 00:21:33 audio ๐ #5 00:26:49 video ๐ฅ #6 00:31:20 favicons ๐ฟ #7 00:34:19 text formatting ๐ฌ #8 00:38:10 span & div ๐ #9 00:42:57 lists ๐ #10 00:49:31 tables ๐ #11 00:54:13 buttons ๐ #12 00:59:28 forms ๐ #13 01:17:22 headers & footers ๐คฏ #14 01:23:10 Introduction to CSS ๐จ #15 01:31:10 colors ๐ #16 01:35:22"
YouTube Link 2023-05-31T14:00Z 3.1M followers, 5.3M engagements
"Python Object Oriented Programming Full Course ๐ #python #pythontutorial #pythonprogramming 00:00:00 Python Object Oriented Programming Intro ๐ 00:12:17 class variables ๐ 00:20:33 inheritance ๐จ๐ฆ๐ฆ 00:27:29 multiple inheritance ๐ 00:35:31 abstract classes ๐ป 00:42:33 super() ๐ด 00:55:38 polymorphism ๐ญ 01:03:44 duck typing ๐ฆ 01:08:03 aggregation ๐ 01:14:41 composition ๐ 01:22:02 nested classes ๐ 01:31:50 static methods โก 01:37:46 class methods ๐ซ 01:44:31 magic methods ๐ 01:58:07 @property decorator โ Python tutorial python course python programming python oop python object oriented"
YouTube Link 2024-07-07T13:23Z 3.1M followers, 338.5K engagements
"Java lambda java lambda tutorial example explained #java #lambda #tutorial Java lambda Java lambda tutorial Java lambda expressions Java lambda expressions tutorial Java lambda functions Java lambda tutorial for beginners Java lambda expressions explained Java lambda Java lambda tutorial Java lambda expressions Java lambda expressions tutorial Java lambda functions Java lambda tutorial for beginners Java lambda expressions explained"
YouTube Link 2020-06-18T22:25Z 3.1M followers, 125.9K engagements
"Python py to exe ๐ python convert .py to .exe file tutorial example explained #python #py #exe *********************************************************** (Windows Defender may prevent you from running) (make sure pip and pyinstaller are installed/updated) [--]. cd to directory that contains your .py file [--]. pyinstaller . -F (all in [--] file) -w (removes terminal window) -i icon.ico (adds custom icon to .exe) clock.py (name of your main python file) [--]. exe is located in the dist folder *********************************************************** Bro Code merch store ๐ :"
YouTube Link 2021-02-11T15:14Z 3.1M followers, 102.5K engagements
"Java abstraction ๐ป Java abstract class method tutorial explained #Java #abstract #tutorial abstract classes in java abstract methods in java abstraction in java abstract class java abstract java abstract java tutorial abstract class java tutorial java abstraction java abstract class java abstract class and interface abstract class vs interface in java java interface java abstract methods abstract method abstract class abstract class in java java tutorial what is abstraction in java abstraction example abstract class example abstract classes in java abstract methods in java abstraction in"
YouTube Link 2020-10-06T18:08Z 3.1M followers, 208.5K engagements
"C++ tutorial for beginners ๐จ๐ป #C++ #tutorial #beginners (00:00:00) Why you should learn C++ (00:02:48) VS Code install (00:03:54) create a project folder (00:04:14) create a C++ file (00:04:35) documentation (00:05:05) GCC compiler for Linux (00:05:28) Clang compiler for Mac OS (00:05:41) GCC compiler for Windows (00:09:10) Your first C++ program download: https://code.visualstudio.com documentation: https://code.visualstudio.com/docs C++ tutorial C++ programming tutorial learn C++ C++ language tutorial learn C++ programming learn C++ language C++ tutorial for beginners C++ programming"
YouTube Link 2022-04-15T05:24Z 3.1M followers, 437.8K engagements
"Learn Java threading in [--] minutes ๐งต #java #javatutorial #javacourse import java.util.Scanner; public class Main public static void main(String args) // Threading = Allows a program to run multiple tasks simultaneously // Helps improve performance with time-consuming operations // (File I/O network communications or any background tasks) // How to create a Thread // Option [--]. Extend the Thread class (simpler) // Option [--]. Implement the Runnable interface (better) Scanner scanner = new Scanner(System.in); MyRunnable myRunnable = new MyRunnable(); Thread thread = new Thread(myRunnable);"
YouTube Link 2024-12-25T11:39Z 3.1M followers, 37.9K engagements
"Learn NumPy in [--] hour ๐ข #coding #python #numpy This video serves as an introduction to the NumPy Python library. Well cover the basics of NumPy so you can start working with it on your own. After finishing this video I recommend learning either Pandas linear algebra or more advanced NumPy topics. 00:00:00 introduction to NumPy ๐ข 00:05:07 multidimensional arrays ๐ง 00:12:54 slicing โ 00:24:04 arithmetic โ 00:33:21 broadcasting ๐ก 00:39:42 aggregate functions ๐ 00:43:48 filtering ๐งฒ 00:52:03 random numbers ๐ฒ Copyright Disclaimer: This video is the intellectual property of Bro Code. All"
YouTube Link 2025-08-05T17:49Z 3.1M followers, 317.8K engagements
"How to include a CSS background image ๐ #CSS #tutorial #course CSS background image tutorial example explained body background-image: url(background.jpg); background-repeat: no-repeat; background-position: center; background-attachment: fixed; background-size: cover; CSS background CSS background-image CSS course CSS tutorial CSS background CSS background-image CSS course CSS tutorial"
YouTube Link 2023-09-21T16:56Z 3.1M followers, 390K engagements
"Learn JavaScript OBJECTS in [--] minutes ๐ง #JavaScript #tutorial #course // object = A collection of related properties and/or methods // Can represent real world objects (people products places) // object = key:value // function() const person1 = firstName: "Spongebob" lastName: "Squarepants" age: [--] isEmployed: true sayHello: function()console.log("Hi I am Spongebob") eat: function()console.log("I am eating a Krabby Patty") console.log(person1.firstName); person1.sayHello(); person1.eat(); javascript javascript tutorial javascript full course javascript course course full course web"
YouTube Link 2023-11-14T15:52Z 3.1M followers, 143K engagements
"C sort an array ๐ฑ C sort an array program tutorial example explained #C #sort #array language for beginners youtube lesson tutorial lectures arrays functions pointers structures how to learn education class Array Data Structure C (Programming Language) Computer Programming (Conference Subject) language for beginners youtube lesson tutorial lectures arrays functions pointers structures how to learn education class Array Data Structure C (Programming Language) Computer Programming (Conference Subject)"
YouTube Link 2021-10-06T20:54Z 3.1M followers, 143.6K engagements
"Java static keyword โก Java static keyword modifier tutorial explained #Java #static #keyword #modifier #tutorial #explained Java static keyword Java static modifier Java static modifier keyword tutorial java block variable method works class loader heap memory object example Java static keyword Java static modifier Java static modifier keyword tutorial java block variable method works class loader heap memory object example"
YouTube Link 2020-09-29T21:09Z 3.1M followers, 155.3K engagements
"What are data structures and algorithms ๐ Data structures and algorithms tutorial example explained #data #structures #algorithms data structures and algorithms data structures and algorithms tutorial data structures tutorial algorithms tutorial linked lists arrays hash maps hash tables java python data structures and algorithms data structures and algorithms tutorial data structures tutorial algorithms tutorial linked lists arrays hash maps hash tables java python"
YouTube Link 2021-11-10T16:27Z 3.1M followers, 384.8K engagements
"Build a music player with Python ๐ถ #python #coding #programming We're going to walkthrough how to create an mp3 music player using Python. This video is meant for beginner to intermediate Python programmers to serve as a practice project for the Python playlist. python machine learning artificial intelligence coding programming music mp3 project exercise python machine learning artificial intelligence coding programming music mp3 project exercise"
YouTube Link 2025-11-20T16:51Z 3.1M followers, 42.2K engagements
"Learn Graphs in [--] minutes ๐ Graph data structure and algorithms tutorial example explained #graph #data #structure Graph Data Structure (Literature Subject) Computer coding programming algorithm interview computer science Graph Data Structure (Literature Subject) Computer coding programming algorithm interview computer science"
YouTube Link 2021-10-27T14:00Z 3.1M followers, 295.9K engagements
"Convert decimal to octal EASY #coding #programming #computerscience #coding #programming #computerscience An easy way to convert decimal to octal is by repeatedly dividing the original number by [--] and keeping track of the remainders. Octal is used for file permissions in Unix/Linux and older computer architectures. octal decimal binary computer science coding programming octal decimal binary computer science coding programming"
YouTube Link 2025-07-19T12:35Z 3.1M followers, 32.3K engagements
"Java ArrayList ๐งพ Java arraylist tutorial explained #Java #ArrayList #ArrayLists java arraylists arraylists java java arraylist arraylist java java arraylist tutorial java arraylists tutorial arraylists tutorial java arraylist tutorial java arraylists java explained arraylist java explained array vs arraylist arraylist vs array arraylist methods java arraylist implementation java arraylists arraylists java java arraylist arraylist java java arraylist tutorial java arraylists tutorial arraylists tutorial java arraylist tutorial java arraylists java explained arraylist java explained array vs"
YouTube Link 2020-10-19T14:37Z 3.1M followers, 218.5K engagements
"Start coding with JAVA in [--] minutes โ #java #javatutorial #javacourse This is a beginner's course to help you get started coding with Java โ 00:00:00 intro 00:01:00 JDK download 00:01:57 IDE download 00:03:34 new project setup 00:04:09 Main.java 00:04:30 Zoom in/out 00:05:01public static void main(String args) 00:05:43 How to run a java program 00:06:10 print() 00:07:28 println() 00:07:46 n escape sequence 00:08:36 single line comments 00:09:06 multi-line comments 00:09:33 tips & tricks JDK download: https://www.oracle.com/java/technologies/downloads/ IDE download:"
YouTube Link 2024-12-30T18:03Z 3.1M followers, 350.3K engagements
"Learn Merge Sort in [--] minutes ๐ช Merge sort algorithm tutorial example explained #merge #sort #algorithm // merge sort = recursively divide array in [--] sort re-combine // run-time complexity = O(n Log n) // space complexity = O(n) music credits ๐ผ: =========================================================== Title: Wallflowers Artist: Bad Snacks Link: https://youtu.be/WyOdBcADtp8t=1599 =========================================================== Merge sort merge merge sorting merge sort algorithm recursive sort recursion mergesort Merge sort merge merge sorting merge sort algorithm recursive"
YouTube Link 2021-07-12T14:12Z 3.1M followers, 578.6K engagements
"SQL Full Course for free ๐ฌ #MySQL #SQL #tutorial MySQL SQL tutorial for beginners ๐ฌ TIME STAMPS #1 00:00:00 MySQL intro + installation 00:02:22 Windows installation 00:06:05 MAC OS installation #2 00:10:29 DATABASES #3 00:14:29 TABLES #4 00:22:38 INSERT ROWS #5 00:28:32 SELECT #6 00:33:32 UPDATE & DELETE #7 00:37:03 AUTOCOMMIT COMMIT ROLLBACK #8 00:39:41 CURRENT_DATE() & CURRENT_TIME() #9 00:42:26 UNIQUE #10 00:47:09 NOT NULL #11 00:50:01 CHECK #12 00:53:58 DEFAULT #13 01:02:16 PRIMARY KEYS #14 01:07:41 AUTO_INCREMENT #15 01:11:36 FOREIGN KEYS #16 01:19:52 JOINS #17 01:24:55 FUNCTIONS #18"
YouTube Link 2023-01-02T15:00Z 3.1M followers, 3.4M engagements
"Slicing in NumPy is easy โ #coding #numpy #python Slicing in NumPy allows you to extract portions of an array using a start:stop:step syntax. It works similarly to Python lists but is more powerful especially for multi-dimensional arrays. 00:00:00 row slicing 00:05:08 column slicing 00:08:38 row & column slicing coding programming computerscience numpy python slicing coding programming computerscience numpy python slicing"
YouTube Link 2025-07-27T15:25Z 3.1M followers, 17.9K engagements
"Learn Python VARIABLES in [--] minutes โ #python #pythontutorial #pythoncourse # Variable = A container for a value (string integer float boolean) # A variable behaves as if it was the value it contains # Strings first_name = "Bro" food = "pizza" email = "Bro123@fake.com" # Integers age = [--] quantity = [--] num_of_students = [--] # Float price = [-----] gpa = [---] distance = [---] # Boolean is_student = True for_sale = False is_online = True print(f"Hello first_name") print(f"You are age years old") print(f"Your gpa is: gpa") if is_student: print("You are a student") else: print("You are NOT student")"
YouTube Link 2024-08-17T13:01Z 3.1M followers, 195.5K engagements
"Python keyword arguments are awesome ๐ #python #tutorial #course 00:00:00 example [--] 00:03:20 example [--] 00:04:36 exercise 00:06:19 conclusion # keyword arguments = arguments prefixed with the names of parameters # order of the arguments doesnt matter # helps with readability # ----- EXAMPLE [--] ----- def hello(greeting title first last): print(f"greeting titlefirst last") hello("Hello" title="Mr." last="John" first="James") # ----- EXAMPLE [--] ----- for number in range(1 11): print(number end=" ") print("1" "2" "3" "4" "5" sep="-") # ----- EXERCISE ----- def get_phone(country area first last):"
YouTube Link 2022-11-30T15:00Z 3.1M followers, 56.1K engagements
"String indexing in Python is easy โ #python #tutorial #course 00:00:00 string indexing 00:05:17 last [--] digits exercise 00:06:27 reverse a string exercise 00:07:06 conclusion # indexing = accessing elements of a sequence using (indexing operator) # start : end : step credit_number = "1234-5678-9012-3456" print(credit_number0) print(credit_number0:4) print(credit_number:4) print(credit_number4:8) print(credit_number4:) print(credit_number-1) print(credit_number-4:) print(credit_number::2) print(credit_number::3) # EXERCISE [--] credit_number = "1234-5678-9012-3456" # last_digits = credit_number-4:"
YouTube Link 2022-10-18T14:01Z 3.1M followers, 128K engagements
"Learn Priority Queue data structures in [--] minutes ๐ฅ Priority queues data structures and algorithms tutorial example explained #priority #queue #java Heap Heap sort priority queue priority queues heapify Heap Heap sort priority queue priority queues heapify"
YouTube Link 2021-10-17T19:13Z 3.1M followers, 240.8K engagements
"Learn Python in [--] hour ๐ #python #pythontutorial #pythoncourse This is a quick introduction to the Python programming language. If you would like to learn more I have a FREE 12-hour course on my YouTube channel and a separate playlist with [--] videos. Python [--] Hour Full Course for free ๐: https://www.youtube.com/watchv=ix9cRaBkVe0 My original Python [--] Hour course ๐: https://www.youtube.com/watchv=XKHEtdqhLK8 Full Python playlist ๐: https://www.youtube.com/watchv=Sg4GMVMdOPo&list=PLZPZq0r_RZOOkUQbat8LyQii36cJf2SWT #1 (00:00:00) introduction to python ๐ (00:00:19) python interpreter"
YouTube Link 2024-08-18T14:00Z 3.1M followers, 497.6K engagements
"Learn Python ABSTRACT CLASSES in [--] minutes ๐ป # Abstract class: A class that cannot be instantiated on its own; Meant to be subclassed. # They can contain abstract methods which are declared but have no implementation. # Abstract classes benefits: # [--]. Prevents instantiation of the class itself # [--]. Requires children to use inherited abstract methods from abc import ABC abstractmethod class Vehicle(ABC): @abstractmethod def go(self): pass @abstractmethod def stop(self): pass class Car(Vehicle): def go(self): print("You drive the car") def stop(self): print("You stop the car") class"
YouTube Link 2024-06-13T13:55Z 3.1M followers, 45.6K engagements
"Learn CSS display property in [--] minutes ๐งฑ #CSS #tutorial #explained CSS display block inline inline-block tutorial example explained CSS display CSS block CSS inline CSS inline-block CSS display CSS block CSS inline CSS inline-block"
YouTube Link 2023-09-21T16:55Z 3.1M followers, 163.8K engagements
"C do while loop ๐คธโ C do while loop tutorial example explained #C #do #loop do while do while loop do while in c do while loop in c do while loop in c programming do while example example of do while loop difference between do while and while loop difference between while loop and do while loop do while statement syntax of do while loop use of do while loop do while loop explanation while loop dowhile c language c programming loops loops in c c programming for gate do while do while loop do while in c do while loop in c do while loop in c programming do while example example of do while loop"
YouTube Link 2021-10-06T20:49Z 3.1M followers, 93.6K engagements
"Convert decimal to binary EASY #coding #programming #computerscience An easy way to convert decimal to binary is by repeatedly dividing the original number by [--] and keeping track of the remainders. coding programming binary computer science decimal coding programming binary computer science decimal"
YouTube Link 2025-07-18T13:51Z 3.1M followers, 22.8K engagements
"React Full Course for free โ #reactjs #course #tutorial This is a beginners React JS course that should be enough to get you started using the React Library. There are still many more hooks and concepts that are beyond the scope of the beginner level. This video should at least give you a solid foundation. [--]. 00:00:00 React tutorial for beginners โ [--]. 00:20:26 card components [--]. 00:32:24 add CSS styles ๐จ [--]. 00:40:40 props๐ง (defaultProps are now deprecated in React 19+ ) [--]. 00:52:49 conditional rendering โ [--]. 01:03:04 render lists ๐ [--]. 01:29:43 click events ๐ [--]. 01:42:04 useState() hook"
YouTube Link 2024-01-16T15:55Z 3.1M followers, 3.6M engagements
"Data cleaning in Pandas is easy ๐งน #coding #python #programming Data cleaning is the process of fixing or removing: incomplete incorrect or irrelevant data. 75% of work done with Pandas is data cleaning. python pandas coding tutorial programming data cleaning python pandas coding tutorial programming data cleaning"
YouTube Link 2025-09-10T14:00Z 3.1M followers, 19K engagements
"MySQL: How to INSERT rows into a TABLE #mysql -- EXAMPLE [--] -- INSERT INTO employees VALUES (1 "Eugene" "Krabs" [-----] "2023-01-02"); SELECT * FROM employees; -- EXAMPLE [--] -- INSERT INTO employees VALUES (2 "Squidward" "Tentacles" [-----] "2023-01-03") (3 "Spongebob" "Squarepants" [-----] "2023-01-04") (4 "Patrick" "Star" [-----] "2023-01-05") (5 "Sandy" "Cheeks" [-----] "2023-01-06"); SELECT * FROM employees; -- EXAMPLE [--] -- INSERT INTO employees (employee_id first_name last_name) VALUES (6 "Sheldon" "Plankton"); SELECT * FROM employees; MySQL INSERT INTO MySQL INSERT MYSQL row MySQL INSERT table"
YouTube Link 2022-10-11T13:02Z 3.1M followers, 221.6K engagements
"๐ข NumPy summarized in [--] seconds #coding #programming #numpy #coding #programming #numpy This is how I would explain NumPy to a beginner in Python coding programming computerscience numpy coding programming computerscience numpy"
YouTube Link 2025-07-22T15:23Z 3.1M followers, 25.9K engagements
"Learn Java Object Oriented Programming in [--] minutes ๐งฑ #java #javatutorial #javacourse public class Main public static void main(String args) // Object = An entity that holds data (attributes) // and can perform actions (methods) // It is a reference data type Car car = new Car(); System.out.println(car.make); System.out.println(car.model); System.out.println(car.year); System.out.println(car.price); System.out.println(car.isRunning); car.drive(); car.brake(); public class Car String make = "Ford"; String model = "Mustang"; int year = 2025; double price = 58000.99; boolean isRunning ="
YouTube Link 2024-12-05T17:01Z 3.1M followers, 45.5K engagements
"Tree data structures in [--] minutes ๐ณ Tree data structure tutorial example explained #tree #data #strucutre software class training school university College Student univeristy hiring job Campus data structure computer science my code school c++ java coding programming C (Programming Language) college degree technology information Information Technology (Industry) recruitment interview programming interview tree computer science software class training school university College Student univeristy hiring job Campus data structure computer science my code school c++ java coding programming C"
YouTube Link 2021-11-08T15:00Z 3.1M followers, 153.8K engagements
"Start using NumPy in [--] minutes ๐ข #coding #programming #numpy This is an introduction to how to get started working with NumPy [--]. open a terminal [--]. pip install numpy [--]. import numpy as np [--]. array = np.array(1 [--] [--] 4) numpy python coding programming artifical intelligence machine learning numpy python coding programming artifical intelligence machine learning"
YouTube Link 2025-07-22T15:11Z 3.1M followers, 57.6K engagements
"Java interface ๐ฆ
Java interface interfaces tutorial explained example #Java #interface #tutorial java interface java interface tutorial java interface examples interface java interface in java interfaces java interfaces in java interfaces in java explained interface in java with example how to use interface in java java interfaces java interface example java interface java interface tutorial java interface examples interface java interface in java interfaces java interfaces in java interfaces in java explained interface in java with example how to use interface in java java interfaces java"
YouTube Link 2020-10-06T18:08Z 3.1M followers, 300K engagements
"Learn Java generics in [--] minutes ๐ฆ #java #javatutorial #javacourse This is an introduction to the concept of generics in Java. // Generics = A concept where you can write a class interface or method // that is compatible with different data types. // type parameter (placeholder that gets replaced with a real type) // type argument (specifies the type) java tutorial java course java programming java exercises java projects java coding java programming coding generics java beginner lesson generics in java java generics java generics interview questions generics java java generics wildcards"
YouTube Link 2024-12-21T19:29Z 3.1M followers, 63.3K engagements
"Learn HTML in [--] hour ๐ HTML full course tutorial for beginners #HTML #course #tutorial Time Stamps #1 (00:00:00) HTML tutorial for beginners ๐ #2 (00:09:40) hyperlinks ๐ #3 (00:12:41) images ๐ท #4 (00:16:30) audio ๐ #5 (00:19:10) video ๐ฅ #6 (00:21:37) text formatting ๐ฌ #7 (00:23:42) lists ๐ #8 (00:28:18) tables ๐ #9 (00:32:16) colors ๐ #10 (00:35:56) span & div ๐ #11 (00:38:07) meta tags ๐ท #12 (00:42:03) iframes ๐ผ #13 (00:45:59) buttons ๐ #14 (00:51:06) forms ๐ Copyright Disclaimer: This video is the intellectual property of Bro Code. All rights reserved. No part of this video"
YouTube Link 2021-09-01T14:02Z 3.1M followers, 3.6M engagements
"Learn Python LAMBDA in [--] minutes ๐ฎ # Lambda function = A small anonymous function for a one time use (throw away function) # They take any number of arguments but have only [--] expression # Helps keep the namespace clean and is useful with higher-order functions # 'sort()' 'map()' 'filter()' 'reduce()' # lambda parameters: expression Python tutorial python course python programming python lambda lambda python lambda function Python tutorial python course python programming python lambda lambda python lambda function"
YouTube Link 2024-07-14T14:00Z 3.1M followers, 54.2K engagements
"Request API data using Python in [--] minutes #python #pythonprogramming #pythontutorial https://pokeapi.co/ 00:00:00 Pokeapi intro 00:00:40 import requests 00:01:09 pip install requests 00:01:44 url 00:03:17 response.get(url) 00:03:35 response.status_code 00:06:22 display API data # How to connect to an API using Python import requests base_url = "https://pokeapi.co/api/v2/" def get_pokemon_info(name): url = f"base_url/pokemon/name" response = requests.get(url) if response.status_code == 200: pokemon_data = response.json() return pokemon_data else: print(f"Failed to retrieve data"
YouTube Link 2024-07-17T13:00Z 3.1M followers, 245.3K engagements
"Learn Python for loops in [--] minutes ๐ #python #course #tutorial 00:00:00 iterate forwards 00:01:39 iterate backwards 00:02:15 step 00:02:44 iterate over a string 00:03:26 continue 00:04:19 break 00:04:35 conclusion # for loops = execute a block of code a fixed number of times. # You can iterate over a range string sequence etc. # ---------------- EXAMPLE [--] ---------------- for x in range(1 11): print(x) # ---------------- EXAMPLE [--] ---------------- for x in reversed(range(1 11)): print(x) print("Happy New Year") # ---------------- EXAMPLE [--] ---------------- for x in range(1 [--] 2): print(x) #"
YouTube Link 2022-10-23T17:33Z 3.1M followers, 842.9K engagements
"Java Swing GUI Full Course โ Java GUI tutorial for beginners swing graphics #Java #GUI #tutorial #beginners #1 (00:00:00) frames ๐ผ #2 (00:12:09) labels ๐จ๐ป #3 (00:29:35) panels ๐ฅ #4 (00:42:27) buttons ๐ #5 (00:56:19) BorderLayout ๐งญ #6 (01:07:25) FlowLayout ๐ #7 (01:14:53) GridLayout ๐ณ #8 (01:19:45) JLayeredPane ๐ #9 (01:27:54) open new window ๐ป #10 (01:38:12) JOptionPane ๐ #11 (01:50:03) textfields ๐ #12 (01:59:36) checkboxes โ #13 (02:07:58) radio buttons ๐ #14 (02:18:16) combo boxes ๐ #15 (02:28:12) sliders ๐ก #16 (02:40:45) progress bar ๐ #17 (02:51:23) menubars ๐ #18"
YouTube Link 2020-09-14T15:00Z 3.1M followers, 2.6M engagements
"Python variables for beginners โ #Python #variables #type (00:00:00) What are variables (00:01:15) string concatenation (00:02:23) separate arguments (00:03:20) f-strings (00:04:04) [--] basic data types (00:04:16) integers (00:05:51) floats (00:07:21) strings (00:08:45) booleans (00:11:26) tips & tricks Python tutorial for beginners Python variables and data types python python tutorial programming coding coding tutorial for beginners programming tutorial for beginners javascript tutorial for beginners java tutorial for beginners C++ tutorial for beginners python variables python python"
YouTube Link 2022-10-03T15:00Z 3.1M followers, 300.1K engagements
"Python dictionaries are easy ๐ #python #tutorial #course # dictionary = a collection of key:value pairs # ordered and changeable. No duplicates capitals = "USA": "Washington D.C." "India": "New Delhi" "China": "Beijing" "Russia": "Moscow" # print(dir(capitals)) # print(help(capitals)) # print(capitals.get("Japan")) # if capitals.get("Russia"): # print("That capital exists") # else: # print("That capital doesn't exist") # capitals.update("Germany": "Berlin") # capitals.update("USA": "Detroit") # capitals.pop("China") # capitals.popitem() # capitals.clear() # keys = capitals.keys() # for key"
YouTube Link 2022-11-10T15:14Z 3.1M followers, 486.7K engagements
"Learn Linked Lists in [--] minutes ๐ LinkedList data structures and algorithms tutorial example explained #linkedlist #linkedlists #tutorial // ******************************************************* // LinkedList = Nodes are in [--] parts (data + address) // Nodes are in non-consecutive memory locations // Elements are linked using pointers // advantages // [--]. Dynamic Data Structure (allocates needed memory while running) // [--]. Insertion and Deletion of Nodes is easy. O(1) // [--]. No/Low memory waste // disadvantages // [--]. Greater memory usage (additional pointer) // [--]. No random access of"
YouTube Link 2021-04-19T15:00Z 3.1M followers, 703.9K engagements
"Java switch [--] minutes Java switch statement #Java #switch #statement public class Main public static void main(String args) // switch = statement that allows a variable to be tested for equality against a list of values String day = "Friday"; switch(day) case "Sunday": System.out.println("It is Sunday"); break; case "Monday": System.out.println("It is Monday"); break; case "Tuesday": System.out.println("It is Tuesday"); break; case "Wednesday": System.out.println("It is Wednesday"); break; case "Thursday": System.out.println("It is Thursday"); break; case "Friday": System.out.println("It is"
YouTube Link 2020-10-19T14:36Z 3.1M followers, 179.9K engagements
"Learn type casting in [--] minutes ๐ฑ # type casting = The process of converting a value of one data type to another # (string integer float boolean) # Explicit vs Implicit name = "Bro" age = [--] gpa = [---] student = True # print(type(name)) # print(type(age)) # print(type(gpa)) # print(type(student)) age = float(age) print(age) gpa = int(gpa) print(gpa) student = str(student) print(student) name = bool(name) print(name) 00:00:00 what is type casting 00:01:24 type function 00:02:23 explicit cast 00:06:17 implicit cast #type #cast #casting java type casting java type casting tutorial java"
YouTube Link 2022-10-06T14:00Z 3.1M followers, 246.7K engagements
"JavaScript SPREAD OPERATOR in [--] minutes ๐ // spread operator = . allows an iterable such as an // array or string to be expanded // in to separate elements // (unpacks the elements) // ------------- EXAMPLE [--] ------------- let numbers = [--] [--] [--] [--] 5; let maximum = Math.max(.numbers); let minimum = Math.min(.numbers); console.log(maximum); // ------------- EXAMPLE [--] ------------- let username = "Bro Code"; let letters = .username; console.log(letters); // ------------- EXAMPLE [--] ------------- let fruits = "apple" "orange" "banana"; let vegetables = "carrots" "celery" "potatoes"; let foods ="
YouTube Link 2023-11-07T14:42Z 3.1M followers, 85.4K engagements
"Start coding with PYTHON in [--] minutes ๐ #python #pythontutorial #pythoncourse This is the introductory video to my new FREE [--] Hour Python course. There is an extended playlist with [--] videos as well where I cover even more topics. NEW Python [--] Hour Full Course for free ๐: https://www.youtube.com/watchv=ix9cRaBkVe0 Learn Python in [--] HOUR : https://www.youtube.com/watchv=8KCuHHeC_M0 My original Python [--] Hour course ๐: https://www.youtube.com/watchv=XKHEtdqhLK8 Full Python playlist ๐: https://www.youtube.com/watchv=Sg4GMVMdOPo&list=PLZPZq0r_RZOOkUQbat8LyQii36cJf2SWT Python"
YouTube Link 2024-08-16T16:08Z 3.1M followers, 646K engagements
"Learn Pandas in [--] hour ๐ผ #coding #python #programming This video serves as an introduction to the Pandas Python library. Well cover the basics of Pandas so you can start working with it on your own. After finishing this video I recommend learning either Matplotlib linear algebra or more advanced Pandas topics. 00:00:00 Intro to Pandas ๐ผ 00:02:18 Series [--] 00:13:09 DataFrames ๐ข 00:22:14 Importing ๐ฅ 00:27:15 Selection ๐ฏ 00:36:32 Filtering ๐ 00:43:06 Aggregation โ 00:50:57 Data cleaning ๐งน Copyright Disclaimer: This video is the intellectual property of Bro Code. All rights reserved. No"
YouTube Link 2025-09-11T13:57Z 3.1M followers, 194.8K engagements
"Learn HTML span & div in [--] minutes ๐ #HTML #course #tutorial HTML span div tutorial example explained HTML course HTML tutorial HTML span HTML div HTML CSS HTML course HTML tutorial HTML span HTML div HTML CSS"
YouTube Link 2023-09-21T16:50Z 3.1M followers, 225.9K engagements
"JavaScript TERNARY OPERATOR in [--] minutes โ 00:00:00 intro 00:00:32 example [--] 00:02:37 example [--] 00:03:36 example [--] 00:04:30 example [--] javascript javascript tutorial javascript full course javascript course course full course web development web developer software engineer software engineering coding tutorial learn to code tutorial html css javascript javascript tutorial javascript full course javascript course course full course web development web developer software engineer software engineering coding tutorial learn to code tutorial html css"
YouTube Link 2023-10-23T13:54Z 3.1M followers, 57.8K engagements
"What is the ternary operator โ #C++ #ternary #operator C++ ternary operator tutorial example explained condition expression1 : expression2 C++ ternary operator C++ ternary operator"
YouTube Link 2022-04-21T12:36Z 3.1M followers, 44.5K engagements
"Java arrays ๐ Java arrays tutorial explained #Java #arrays #array java arrays arrays java java arrays and loops java arrays tutorial java arrays explained java array tutorial java array explained java array array arrays java arrays arrays java java arrays and loops java arrays tutorial java arrays explained java array tutorial java array explained java array array arrays"
YouTube Link 2020-10-19T14:36Z 3.1M followers, 333.5K engagements
"Learn JavaScript ES6 Modules in [--] minutes ๐ข #javascript #tutorial #course // ES6 Module = An external file that contains reusable code // that can be imported into other JavaScript files // Can contain variables classes functions . and more // Introduced as part of ECMAScript [----] update // ---------- index.js ---------- import PI getCircumference getArea getVolume from './mathUtil.js'; console.log(PI); const circumference = getCircumference(10); const area = getArea(10); const volume = getVolume(10); console.log($circumference.toFixed(2)cm); console.log($area.toFixed(2)cm2);"
YouTube Link 2023-11-29T15:48Z 3.1M followers, 43.9K engagements
"Learn HTML hyperlinks in [--] minutes ๐ HTML hyperlink tutorial example explained #HTML #hyperlink #tutorial How to create links in HTML how to create links how to create html links how to create website links website links html links links html css html tutorial css tutorial html link tutorial html anchor anchor html anchor element anchor element anchor tag html go to another page create a link in html anchor tag tutorial website link tutorial create website links mmtuts link to subpages link to other page link html anchor tag link to page How to create links in HTML how to create links how to"
YouTube Link 2021-08-27T15:12Z 3.1M followers, 255.8K engagements
"Learn JavaScript CALLBACKS in [--] minutes ๐ค 00:00:00 introduction 00:00:50 example [--] 00:04:00 example [--] // callback = a function that is passed as an argument // to another function. // used to handle asynchronous operations: // [--]. Reading a file // [--]. Network requests // [--]. Interacting with databases // "Hey when you're done call this next." hello(goodbye); function hello(callback) console.log("Hello"); callback(); function goodbye() console.log("Goodbye"); JavaScript callbacks JavaScript tutorial JavaScript course JavaScript javascript javascript tutorial javascript full course javascript"
YouTube Link 2023-11-08T16:13Z 3.1M followers, 164.6K engagements
"JavaScript reduce() method in [--] minutes โป // .reduce() = reduce the elements of an array // to a single value // ----------- EXAMPLE [--] ----------- const prices = [--] [--] [--] [--] [--] 20; const total = prices.reduce(sum); console.log($$total.toFixed(2)); function sum(accumulator element) return accumulator + element; // ----------- EXAMPLE [--] ----------- const scores = [--] [--] [--] [--] [--] 95; const maximum = scores.reduce(getMax); const minimum = scores.reduce(getMin); console.log(maximum); console.log(minimum); function getMax(accumulator element) return Math.max(accumulator element); function"
YouTube Link 2023-11-11T13:14Z 3.1M followers, 85.4K engagements
"Python Full Course for free ๐ #python #tutorial #beginners Python tutorial for beginners' full course [----] Learn Python in [--] HOUR : https://www.youtube.com/watchv=8KCuHHeC_M0 My original Python [--] Hour course ๐ : https://www.youtube.com/watchv=XKHEtdqhLK8 Full Python playlist ๐: https://www.youtube.com/watchv=Sg4GMVMdOPo&list=PLZPZq0r_RZOOkUQbat8LyQii36cJf2SWT = project #1 (00:00:00) python tutorial for beginners ๐ #2 (00:05:49) variables โ #3 (00:16:05) type casting ๐ฑ #4 (00:21:15) user input #5 (00:32:42) madlibs game ๐ #6 (00:37:55) arithmetic & math ๐ #7 (00:51:46) if"
YouTube Link 2024-08-20T13:00Z 3.1M followers, 8.9M engagements
"Learn Python iterators in [--] minutes โก #python #coding #programming # Iterator = An object that returns elements one at a time # from a sequence (or data stream) # and remembers its position between calls. # A Python object is an iterator if it has: # iter() Returns the iterator object itself # next() Returns the next item in the sequence # (raises StopIteration when there's no more items) python machine learning artificial intelligence coding programming iterators iterables python machine learning artificial intelligence coding programming iterators iterables"
YouTube Link 2025-11-10T14:21Z 3.1M followers, 19.9K engagements
"Convert decimal to hexadecimal EASY #coding #programming #computerscience #coding #programming #computerscience An easy way to convert decimal to hexadecimal is by repeatedly dividing the original number by [--] and keeping track of the remainders. Then convert each remainder to its hexadecimal equivalent. coding programming computerscience decimal hexadecimal binary octal coding programming computerscience decimal hexadecimal binary octal"
YouTube Link 2025-07-20T14:51Z 3.1M followers, 47.3K engagements
"User input in Python is easy + exercises #user #input #python How to accept user input in Python tutorial example explained 00:00:00 user input 00:03:29 #1 mad libs 00:07:10 #2 area calculator 00:09:42 #3 shopping cart tutorial java python beginner user input output user input command line input cmd command line how to print function message type data when how use index eval pass command line tutorial java python beginner user input output user input command line input cmd command line how to print function message type data when how use index eval pass command line"
YouTube Link 2022-10-07T13:31Z 3.1M followers, 214K engagements
"Java printf() is really useful ๐จ #java #javatutorial #javacourse public class Main public static void main(String args) // printf() is a method used to format output // % flags width .precision specifier-character // specifier-character String name = "Spongebob"; char firstLetter = 'S'; int age = 30; double height = 60.5; boolean isEmployed = true; System.out.printf("Hello %sn" name); System.out.printf("Your name starts with a %cn" firstLetter); System.out.printf("You are %d years oldn" age); System.out.printf("You are %f inches talln" height); System.out.printf("Employed: %bn" isEmployed);"
YouTube Link 2024-12-05T16:53Z 3.1M followers, 32K engagements
"JavaScript VARIABLES are easy ๐ฆ 00:00:00 declaration & assignment 00:01:51 numbers 00:04:29 strings 00:06:57 booleans 00:09:24 exercises // variable = A container that stores a value. // Behaves as if it were the value it contains. let fullName = "Bro Code"; let age = 25; let isStudent = false; document.getElementById("p1").textContent = Your name is $fullName; document.getElementById("p2").textContent = You are $age years old; document.getElementById("p3").textContent = Enrolled: $isStudent; javascript javascript tutorial javascript full course javascript course course full course web"
YouTube Link 2023-11-01T14:13Z 3.1M followers, 210.2K engagements
"Learn Java overloaded methods in [--] minutes ๐ #java #javatutorial #javacourse public class Main public static void main(String args) // overloaded methods = methods that share the same name // but different parameters // signature = name + parameters String pizza = bakePizza("flat-bread" "mozzarella" "pepperoni"); System.out.println(pizza); static String bakePizza(String bread) return bread + " pizza"; static String bakePizza(String bread String cheese) return cheese + " " + bread + " pizza"; static String bakePizza(String bread String cheese String topping) return topping + " " + cheese + ""
YouTube Link 2024-12-05T16:58Z 3.1M followers, 21.5K engagements
"Learn CSS float in [--] minutes ๐ #CSS #course #tutorial CSS float property tutorial example explained CSS float CSS course CSS tutorial CSS float CSS course CSS tutorial"
YouTube Link 2023-09-21T16:54Z 3.1M followers, 98.2K engagements
"Learn to reshape NumPy arrays in [--] minutes #python #coding #numpy # reshape() = Changes the shape of an array # w/o altering its underlying data # array.reshape(rows columns) import numpy as np array = np.array(1 [--] [--] [--] [--] [--] [--] [--] [--] [--] [--] 12) array = array.reshape(2 6) array = array.reshape(3 4) # array = array.reshape(4 4) # Too many elements # array = array.reshape(2 4) # Too few elements array = array.reshape(4 3) array = array.reshape(2 [--] 3) # 3D array = array.reshape(3 [--] 2) # 3D # [---] NumPy will automatically infer the correct size for that dimension array = array.reshape(1 -1) array ="
YouTube Link 2025-11-09T15:39Z 3.1M followers, [----] engagements
"Learn the STATIC keyword in [--] minutes ๐ค #java #javatutorial #javacourse public class Main public static void main(String args) // static = Modifies a variable or method belong to the class // rather than to any specific object. // Commonly used for utility methods or shared resources. Friend friend1 = new Friend("Spongebob"); Friend friend2 = new Friend("Patrick"); Friend friend3 = new Friend("Squidward"); Friend friend4 = new Friend("Sandy"); Friend.showFriends(); public class Friend static int numOfFriends; String name; Friend(String name) this.name = name; numOfFriends++; static void"
YouTube Link 2024-12-05T17:01Z 3.1M followers, 21.5K engagements
"Learn hexadecimal in 0x79 seconds #coding #computerscience #programming #coding #programming #computerscience Hexadecimal is a concise way to represent binary data. It's used in memory addresses color codes MAC addresses and UUIDs. hexadecimal computers binary coding programming hexadecimal computers binary coding programming"
YouTube Link 2025-07-16T14:10Z 3.1M followers, 22.8K engagements
"Learn Java nested loops in [--] minutes โฟ #java #javatutorial #javacourse 00:00:00 example 00:03:43 exercise Nested loops in programming are loops placed inside one another meaning that for each iteration of the outer loop the inner loop runs completely. Nested loops are often used for working with multi-dimensional data structures (like 2D arrays or matrices) or for tasks that require repeated cycles within cycles. java tutorial java course java programming java exercises java projects java coding java programming coding java loops java nested loops java tutorial java course java programming"
YouTube Link 2024-12-05T16:58Z 3.1M followers, 27.4K engagements
"String methods in Python are easy #Python #string #methods 00:00:00 useful string methods 00:08:05 exercise # name = input("Enter your name: ") # phone_number = input("Enter your phone #: ") # length = len(name) # index = name.find(" ") # name = name.capitalize() # name = name.upper() # name = name.lower() # result = name.isdigit() # result = name.isalpha() # result = phone_number.count(" ") # phone_number = phone_number.replace("-" "") python string methods string methods Python python string methods python string methods string methods Python python string methods"
YouTube Link 2022-10-10T15:59Z 3.1M followers, 242.1K engagements
"Learn Recursion in [--] minutes ๐ต recursion tutorial example explained #recursion #tutorial #example // recursion = When a thing is defined in terms of itself. - Wikipedia // Apply the result of a procedure to a procedure. // A recursive method calls itself. Can be a substitute for iteration. // Divide a problem into sub-problems of the same type as the original. // Commonly used with advanced sorting algorithms and navigating trees // Advantages // ---------- // easier to read/write // easier to debug // Disadvantages // ---------- // sometimes slower // uses more memory recursion recursion"
YouTube Link 2021-06-21T14:00Z 3.1M followers, 126.8K engagements
"PROPS in React explained ๐ง #React #JavaScript #tutorial 00:00:00 introduction 00:00:56 props 00:04:49 index.css 00:06:28 multiple components 00:07:49 propType 00:10:18 defaultProps 00:11:47 conclusion // props = read-only properties that are shared between components. // A parent component can send data to a child component. // key=value // propTypes = a mechanism that ensures that the passed value // is of the correct datatype. // age: PropTypes.number // defaultProps = default values for props in case they are not // passed from the parent component // name: "Guest" react js react tutorial"
YouTube Link 2023-10-15T18:17Z 3.1M followers, 214.5K engagements
"Python tuples ๐ python tuples tutorials explained #python #tuples #tutorial python tuples tuples python python tuple tuple python python lists vs tuples lists vs tuples tuples tuple Learn Python Python Programming Python Language Python Tutorial software engineering software engineer python tuples tuples python python tuple tuple python python lists vs tuples lists vs tuples tuples tuple Learn Python Python Programming Python Language Python Tutorial software engineering software engineer"
YouTube Link 2020-11-30T18:28Z 3.1M followers, 80.8K engagements
"MySQL VIEWS are awesome #MySQL #tutorial #course MySQL tutorial for beginners CREATE VIEW employee_attendance AS SELECT first_name last_name FROM employees; CREATE VIEW customer_emails AS SELECT email FROM customers; MySQL tutorial for beginners SQL tutorial for beginners MySQL course SQL course MySQL tutorial for beginners SQL tutorial for beginners MySQL course SQL course"
YouTube Link 2022-11-07T12:31Z 3.1M followers, 111.8K engagements
"Learn HTML forms in 10+ minutes ๐ #HTML #tutorial #course HTML forms tutorial example explained 00:00:00 form 00:01:08 textbox 00:02:20 submit button 00:02:41 textbox attributes 00:03:54 reset button 00:04:16 placeholder attribute 00:04:47 password 00:06:16 email 00:07:11 phone 00:09:12 dates 00:09:44 number 00:10:46 radio buttons 00:12:43 dropdown menu 00:14:13 checkbox 00:14:53 textarea 00:15:42 file upload 00:16:51 enctype attribute 00:17:37 conclusion html forms html forms tutorial html form html form tutorial html form validation html form tag html input html input tutorial html input"
YouTube Link 2023-09-21T16:51Z 3.1M followers, 222.2K engagements
"Java read CSV File ๐ฐ IMPORTANT NOTE: If values in your CSV contain commas naturally they will be split. (Ex. $1000). If this is the case replace: String row = line.split(""); with String row = line.split("(=("""")"$)"); This is regex and is very complicated. It looks for string patterns. Explaining this requires another video entirely. //****************************************************** import java.io.*; public class Main public static void main(String args) //CSV = Comma-Separated Values // text file that uses a comma to separate values String file = "srcstudents.csv";"
YouTube Link 2020-07-06T23:00Z 3.1M followers, 115.8K engagements
"Learn Linear Search in [--] minutes Linear search data structures and algorithms tutorial example explained #linear #search #java linear search java linear search data structures algorithms linear search java linear search java linear search data structures algorithms linear search java"
YouTube Link 2021-10-16T19:36Z 3.1M followers, 193.6K engagements
"Matplotlib histograms in [--] minutes ๐ #python #coding #matplotlib In this video we will create a basic histogram using Matplotlib. python matplotlib machine learning artificial intelligence coding programming python matplotlib machine learning artificial intelligence coding programming"
YouTube Link 2025-10-06T14:00Z 3.1M followers, [----] engagements
"Java polymorphism ๐ Java polymorphism tutorial example explained #Java #polymorphism #tutorial #example #explained Java polymorphism Java polymorphism and inheritance java polymorphism example java polymorphism tutorial Java polymorphism polymorph tutorial explained example Java polymorphism Java polymorphism and inheritance java polymorphism example java polymorphism tutorial Java polymorphism polymorph tutorial explained example"
YouTube Link 2020-10-06T18:08Z 3.1M followers, 185.9K engagements
"Aggregation in Pandas is easy โ #coding #python #programming Aggregation in pandas is when you take many values and summarize them into a single value python coding programming pandas aggregate aggregation python coding programming pandas aggregate aggregation"
YouTube Link 2025-09-09T14:00Z 3.1M followers, [----] engagements
"Saving and loading NumPy arrays is easy ๐พ #python #coding #numpy 00:00:00 save NumPy array 00:01:53 load NumPy array 00:02:30 save multiple arrays 00:04:29 savez_compressed() 00:05:01 load multiple arrays import numpy as np # -------------------------------------------- # Save a NumPy array # -------------------------------------------- array = np.array(1 [--] [--] [--] [--] 6) np.save("data" array) print("File saved") # -------------------------------------------- # Load a single NumPy array # -------------------------------------------- array = np.load("data.npy") print(array) #"
YouTube Link 2025-11-16T17:27Z 3.1M followers, [----] engagements
"Variables and basic data types โ #C++ #variables #type C++ data types and variables tutorial example explained for beginners c++ how c++ works learn c++ c++ tutorial game programming development engine game programming game development how to make a game tutorial source code complete game engine how to make a game engine opengl glfw C (Programming Language) variables variables in c++ c++ how c++ works learn c++ c++ tutorial game programming development engine game programming game development how to make a game tutorial source code complete game engine how to make a game engine opengl glfw C"
YouTube Link 2022-04-16T14:44Z 3.1M followers, 121.1K engagements
"Learn Breadth First Search in [--] minutes Breadth first search data structures and algorithms tutorial example explained java #breadth #first #search breadth first search data structures and algorithms breadth first search breadth first search data structures and algorithms breadth first search"
YouTube Link 2021-11-05T14:30Z 3.1M followers, 70.8K engagements
"Useful NumPy functions you should know ๐ #python #coding #programming 00:00:00 zeros() 00:01:29 ones() 00:01:52 full() 00:02:16 eye() 00:03:09 empty() 00:03:59 arange() 00:05:16 linspace() import numpy as np # Creates an array with zeros array = np.zeros((2 [--] 10)) print(array) # Creates an array with ones array = np.ones((2 [--] 10)) print(array) # Creates an array with a given value array = np.full((2 3) 9) print(array) # Creates an array w/o initializing entries array = np.empty((2 3)) print(array) # Creates an identity matrix with 0s and 1s array = np.eye(5) print(array) # Creates an array"
YouTube Link 2025-11-12T13:47Z 3.1M followers, [----] engagements
"NumPy aggregate functions are easy ๐ #coding #python #numpy import numpy as np # Aggregate functions = summarize data and typically return a single value array = np.array(1 [--] [--] [--] [--] [--] [--] [--] [--] 10) print(np.sum(array)) # Sum of all elements print(np.mean(array)) # Average of all elements print(np.std(array)) # Measure of spread print(np.var(array)) # Square of standard deviation print(np.min(array)) # Smallest value print(np.max(array)) # Largest value print(np.argmin(array)) # Position (flattened) of smallest print(np.argmax(array)) # Position (flattened) of largest print(np.sum(array axis=0)) #"
YouTube Link 2025-08-03T15:09Z 3.1M followers, [----] engagements
"Functions in MySQL are easy #MySQL #SQL #course More functions can be found here: https://dev.mysql.com/doc/refman/8.0/en/built-in-function-reference.html SELECT COUNT(amount) as count FROM transactions; SELECT MAX(amount) AS maximum FROM transactions; SELECT MIN(amount) AS minimum FROM transactions; SELECT AVG(amount) AS average FROM transactions; SELECT SUM(amount) AS sum FROM transactions; SELECT CONCAT(first_name last_name) AS full_name FROM employees; MySQL tutorial for beginners SQL tutorial for beginners MySQL course SQL course MySQL tutorial for beginners SQL tutorial for beginners"
YouTube Link 2022-10-31T14:00Z 3.1M followers, 143.3K engagements
"Filtering in Pandas is easy ๐ #coding #python #programming Filtering is when you keep only select rows of a DataFrame that meet a certain condition. python coding programming pandas filtering filter python coding programming pandas filtering filter"
YouTube Link 2025-09-08T14:00Z 3.1M followers, [----] engagements
"Java JOptionPane ๐ Java JOptionPane joptionpane MessageDialog Swing GUI tutorial for beginners #Java #JOptionPane #optionpane #MessageDialog #Swing #GUI #tutorial #beginners import javax.swing.ImageIcon; import javax.swing.JOptionPane; public class Main public static void main(String args) //JOptionPane = pop up a standard dialog box that prompts users for a value // or informs them of something. //JOptionPane.showMessageDialog(null "This is a message dialog box" "title" JOptionPane.PLAIN_MESSAGE); //JOptionPane.showMessageDialog(null "Here is some useless info" "title""
YouTube Link 2020-08-27T20:54Z 3.1M followers, 117K engagements
"C typedef ๐ C typedef keyword tutorial example explained #C #typedef #keyword //typedef char user25; typedef struct char name25; char password12; int id; User; int main() // typedef = reserved keyword that gives an existing datatype a "nickname" User user1 = "Bro" "password123" 123456789; User user2 = "Bruh" "password321" 987654321; printf("%sn" user1.name); printf("%sn" user1.password); printf("%dn" user1.id); printf("n"); printf("%sn" user2.name); printf("%sn" user2.password); printf("%dn" user2.id); return 0; structure types structure types in c c programming structure types structure"
YouTube Link 2021-10-06T20:56Z 3.1M followers, 112.3K engagements
"NumPy arithmetic is easy โ #coding #numpy #python The purpose of arithmetic in NumPy is to perform fast element-wise operations on entire arrays without writing loops. 00:00:00 scalar arithmetic 00:02:03 vectorized math functions 00:03:50 EXERCISE 00:05:08 element-wise arithmetic 00:06:39 comparison operators coding programming computerscience numpy python arithmetic coding programming computerscience numpy python arithmetic"
YouTube Link 2025-07-29T13:58Z 3.1M followers, 11.4K engagements
"NumPy multidimensional arrays are easy ๐ง #coding #python #numpy import numpy as np array = np.array('A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O' 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z' ' ') print(array.ndim) #returns number of dimensions print(array.shape) #returns a tuple of integers that represent the shape word = array0 [--] [--] + array2 [--] [--] + array2 [--] [--] print(word) coding programming computerscience numpy arrays multidimensional dimensions coding programming computerscience numpy arrays multidimensional dimensions"
YouTube Link 2025-07-24T16:20Z 3.1M followers, 22.5K engagements
"Learn Python generators in [--] minutes ๐ฐ #python #coding #programming # Generator = Function that behaves like an iterator (it can be used in a for loop) # Pauses a function returns a value then resumes # Uses 'yield' instead or 'return' # Iterate without loading everything into memory (ex. reading large files) # return = Pouring bucket # yield = Drip faucet python machine learning coding programming generators generator generator function generator functions python machine learning coding programming generators generator generator function generator functions"
YouTube Link 2025-11-05T13:30Z 3.1M followers, 31.4K engagements
"MySQL: AUTOCOMMIT COMMIT ROLLBACK #MySQL #tutorial #course SET AUTOCOMMIT = OFF; COMMIT; ROLLBACK; MySQL MySQL tutorial MySQL course SQL MySQL MySQL tutorial MySQL course SQL"
YouTube Link 2022-10-17T17:10Z 3.1M followers, 150.3K engagements
"You'll love Python data classes ๐ #python #coding #programming # Data Class = A special kind of class that's designed mostly for holding data # without writing a lot of the boilerplate code for regular classes. # They automatically generate: init repr eq # (Python 3.7+) python machine learning artificial intelligence coding programming dataclass dataclasses python machine learning artificial intelligence coding programming dataclass dataclasses"
YouTube Link 2025-11-15T16:23Z 3.1M followers, 29.9K engagements
"C# methods ๐ C# methods tutorial example explained Good practice is to capitalize method names (I forgot in this video) #C# #methods #tutorial using System; namespace MyFirstProgram class Program static void Main(string args) // method = performs a section of code whenever it's called "invoked". // benefit = Let's us reuse code w/o writing it multiple times // Good practice is to capitalize method names (I forgot in this video) String name = "Bro"; int age = 21; SingHappyBirthday(name age); Console.ReadKey(); static void SingHappyBirthday(String birthdayBoy int yearsOld)"
YouTube Link 2021-07-03T14:02Z 3.1M followers, 104.1K engagements
"Filtering in NumPy is easy ๐งฒ #coding #python #numpy Filtering = Refers to the process of selecting elements from an array that match a given condition coding programming computerscience numpy python filtering coding programming computerscience numpy python filtering"
YouTube Link 2025-08-05T13:29Z 3.1M followers, [----] engagements
"Let's create a graph using Pandas and Matplotlib ๐ผ๐ #python #coding #matplotlib This video serves as a project where we will create a bar chart based on the primary Type of the original [---] Pokmon. Here is a list you can copy to a CSV file: NoNameType1Type2HeightWeightLegendary 1BulbasaurGrassPoison0.76.90 2IvysaurGrassPoison1130 3VenusaurGrassPoison21000 4CharmanderFire0.68.50 5CharmeleonFire1.1190 6CharizardFireFlying1.790.50 7SquirtleWater0.590 8WartortleWater122.50 9BlastoiseWater1.685.50 10CaterpieBug0.32.90 11MetapodBug0.79.90 12ButterfreeBugFlying1.1320 13WeedleBugPoison0.33.20"
YouTube Link 2025-10-08T14:00Z 3.1M followers, [----] engagements
"Matplotlib subplots in [--] minutes ๐ฒ #python #coding #matplotlib In this video I will show you how to create subplots using Matplotlib. python matplotlib machine learning artificial intelligence coding programming python matplotlib machine learning artificial intelligence coding programming"
YouTube Link 2025-10-07T14:00Z 3.1M followers, [----] engagements
"Python read a file ๐ Python reading files tutorial example explained #python #read #file try: with open('test.txt') as file: print(file.read()) except FileNotFoundError: print("That file was not found :(") Up In My Jam (All Of A Sudden) by - Kubbi https://soundcloud.com/kubbi Creative Commons Attribution-ShareAlike [---] Unported CC BY-SA [---] Free Download / Stream: http://bit.ly/2JnDfCE Music promoted by Audio Library https://youtu.be/tDexBj46oNI "Python" "Python Files" "File io" "Python File io" "Python Read File" "Read File" "File" "Files" "Python File i/o" "File i/o" "Python File Read""
YouTube Link 2020-12-21T14:05Z 3.1M followers, 129.3K engagements
"PHP $_SERVER explained #PHP #course #tutorial // $_SERVER = SGB that contains headers paths and script locations. // The entries in this array are created by the web server. // Shows nearly everything you need to know about the current web page env. if($_SERVER"REQUEST_METHOD" == "POST") echo"HELLO"; PHP course PHP tutorial PHP coding PHP PHP course PHP tutorial PHP coding PHP"
YouTube Link 2024-05-20T01:22Z 3.1M followers, 17.1K engagements
"C compile and run a C program with cmd ๐ (optional video) compile and run a c file with command prompt #C #compile #run Time Stamps (00:00:00) intro (00:00:17) Step [--]. check if you have a gcc compiler (00:00:34) Step [--]. change directory to folder containing your c program (00:01:00) Step [--]. compile program (00:01:13) Step [--]. run compiled program (00:01:30) summary ==================== Windows (open Command Prompt) ==================== [--]. gcc --version (check to see if you have a gcc compiler) [--]. cd C:UsersUserDesktopC Files (change directory to folder w/ c file) [--]. gcc HelloWorld.c (compile"
YouTube Link 2021-08-21T15:23Z 3.1M followers, 177.1K engagements
"Matplotlib pie charts in [--] minutes ๐ฅง #python #coding #matplotlib In this video we will create a basic pie chart using Matplotlib. python matplotlib machine learning artificial intelligence coding programming python matplotlib machine learning artificial intelligence coding programming"
YouTube Link 2025-10-04T14:00Z 3.1M followers, [----] engagements
"What are JavaScript PROMISES ๐ค #JavaScript #tutorial #courses // Promise = An Object that manages asynchronous operations. // Wrap a Promise Object around asynchronous code // "I promise to return a value" // DO THESE CHORES IN ORDER // [--]. WALK THE DOG // [--]. CLEAN THE KITCHEN // [--]. TAKE OUT THE TRASH javascript javascript tutorial javascript full course javascript course course full course web development web developer software engineer software engineering coding tutorial learn to code tutorial html css promises javascript javascript tutorial javascript full course javascript course course"
YouTube Link 2023-12-21T14:39Z 3.1M followers, 166.7K engagements
"Learn CSS pseudo-classes in [--] minutes โ #css #course #tutorial CSS pseudo classes hover link active tutorial example explained CSS tutorial CSS course CSS hover CSS active CSS link CSS tutorial CSS course CSS hover CSS active CSS link"
YouTube Link 2023-09-21T16:56Z 3.1M followers, 71.9K engagements
"Learn JavaScript STRICT EQUALITY in [--] minutes ๐ฐ // = assignment operator // == comparison operator (compare if values are equal) // === strict equality operator (compare if values & datatype are equal) // = inequality operator // == strict inequality operator const PI = 3.14; if(PI === "3.14") console.log("That is NOT Pi"); else console.log("That is Pi"); javascript javascript tutorial javascript full course javascript course course full course web development web developer software engineer software engineering coding tutorial learn to code tutorial html css javascript javascript tutorial"
YouTube Link 2023-10-29T15:50Z 3.1M followers, 37.1K engagements
"DataFrames in Pandas are easy ๐ข #python #coding #programming A Pandas DataFrame is a two-dimensional tabular data structure that works like a spreadsheet with rows and columns. python pandas coding programming Series DataFrames python pandas coding programming Series DataFrames"
YouTube Link 2025-09-04T14:00Z 3.1M followers, 14.7K engagements
"Learn NumPy broadcasting in [--] minutes ๐ก #coding #python #numpy Broadcasting allows NumPy to perform operations on arrays with different shapes by virtually expanding dimensions so they match the larger array's shape. The dimensions have the same size. OR One of the dimensions has a size of [--]. coding python numpy broadcasting coding python numpy broadcasting"
YouTube Link 2025-07-31T12:15Z 3.1M followers, 13.8K engagements
"Java String methods ๐ฌ Java String methods tutorial explained #java #string #methods public class Main public static void main(String args) // String = a reference data type that can store one or more characters // reference data types have access to useful methods String name = "Bro"; //boolean result = name.equalsIgnoreCase("bro"); //int result = name.length(); //char result = name.charAt(0); //int result = name.indexOf("o"); //boolean result = name.isEmpty(); //String result = name.toUpperCase(); //String result = name.toLowerCase(); //String result = name.trim(); //String result ="
YouTube Link 2020-10-19T14:37Z 3.1M followers, 162K engagements
"Learn CSS position in [--] minutes ๐ฏ CSS position tutorial example explained #CSS #position #tutorial #box1 border: 5px solid; height: 300px; width: 300px; background-color:skyblue; position: sticky; top: 0px; #box2 border: 5px solid; height: 100px; width: 100px; background-color:tomato; position: absolute; top: 100px; left: 100px; css position css position absolute css absolute relative css absolute position css relative position css absolute vs relative css absolute vs relative position css position property css fixed css fixed position css positioning css positioning tutorial absolute vs"
YouTube Link 2021-09-06T00:15Z 3.1M followers, 223.5K engagements
"Python time module python time module tutorial example explained #python #time #module # *************************************************************************** import time # *************************************************************************** print(time.ctime(0)) # convert a time expressed in seconds since epoch to a readable string # epoch = when your computer thinks time began (reference point) print(time.time()) # return current seconds since epoch print(time.ctime(time.time())) # will get current time #"
YouTube Link 2021-01-25T19:03Z 3.1M followers, 55.6K engagements
"Random numbers in NumPy are easy ๐ฒ #coding #python #numpy Random numbers in NumPy are useful for simulations modeling applying random transformations and testing purposes. rng = np.random.default_rng() print(rng.integers(low=1 high=7 size=(3 4))) # 3x4 array of Ints np.random.seed() print(np.random.uniform(low=-1 high=1 size=(3 2))) # floats between [--] values # Shuffle array = np.array(1 [--] [--] [--] 5) rng.shuffle(array) print(array) # Random Choice fruits = np.array("๐" "๐" "๐" "๐ฅฅ" "๐") print(rng.choice(fruits size=(3 3))) coding programming computerscience python numpy coding programming"
YouTube Link 2025-08-02T14:09Z 3.1M followers, 12.1K engagements
"Python zip function ๐ค python zip function tutorial example explained #python #zip #function # zip(*iterables) = aggregate elements from two or more iterables (list tuples sets etc.) # creates a zip object with paired elements stored in tuples for each element usernames = "Dude" "Bro" "Mister" passwords = ("p@ssword" "abc123" "guest") login_dates = "1/1/2021""1/2/2021""1/3/2021" # -------------------------------------- users = list(zip(usernamespasswords)) for i in users: print(i) # -------------------------------------- users = dict(zip(usernamespasswords)) for keyvalue in users.items():"
YouTube Link 2021-01-25T19:02Z 3.1M followers, 22.5K engagements
"Import files in Pandas easy ๐ฅ #coding #python #programming You can copy and paste this data to a .csv file for convenience: NoNameType1Type2HeightWeightLegendary 1BulbasaurGrassPoison0.76.90 2IvysaurGrassPoison1130 3VenusaurGrassPoison21000 4CharmanderFire0.68.50 5CharmeleonFire1.1190 6CharizardFireFlying1.790.50 7SquirtleWater0.590 8WartortleWater122.50 9BlastoiseWater1.685.50 10CaterpieBug0.32.90 11MetapodBug0.79.90 12ButterfreeBugFlying1.1320 13WeedleBugPoison0.33.20 14KakunaBugPoison0.6100 15BeedrillBugPoison129.50 16PidgeyNormalFlying0.31.80 17PidgeottoNormalFlying1.1300"
YouTube Link 2025-09-05T13:00Z 3.1M followers, [----] engagements
"Python PyQt5 setup a basic GUI Application ๐ฅ #python #pythonprogramming #pyqt5 00:00:00 intro 00:00:12 pip install PyQt5 00:00:46 imports 00:01:35 boiler-plate code 00:05:26 .setWindowTitle() 00:05:57 .setGeometry() 00:07:28 icons # PyQt5 introduction import sys from PyQt5.QtWidgets import QApplication QMainWindow from PyQt5.QtGui import QIcon class MainWindow(QMainWindow): def init(self): super().init() self.setWindowTitle("My cool first GUI") self.setGeometry(700 [---] [---] 500) #self.setWindowIcon(QIcon("profile_pic.jpg")) def main(): app = QApplication(sys.argv) window ="
YouTube Link 2024-07-23T12:48Z 3.1M followers, 63.6K engagements
"Learn CSS fonts in [--] minutes CSS font families tutorial example explained #CSS #font #fonts body background-color:#111111; h1 color: #FFFFFF; font-family: "Press Start 2P" "consolas" sans-serif; p color: #00FF73; font-family: "consolas" sans-serif; font-style: italic; font-weight: bold; text-decoration: cyan dotted underline; font-size: 18px; html access more fonts import new fonts in css how to import new fonts using html import new fonts using html how to import new fonts in html import new fonts in html html import fonts html how to use additional fonts how to use more fonts in html html"
YouTube Link 2021-09-02T13:09Z 3.1M followers, 74.3K engagements
"Python *ARGS & **KWARGS are awesome ๐ฆ #python #tutorial #course 00:00:00 intro 00:00:39 *args example [--] 00:03:10 *args example [--] 00:04:32 **kwargs 00:07:51 exercise 00:14:26 conclusion # *args = allows you to pass multiple non-key arguments # **kwargs = allows you to pass multiple keyword-arguments # * unpacking operator # ----- *ARGS Example [--] ----- def add(*nums): total = [--] for num in nums: total += num return total print(add(1 [--] [--] 4)) # ----- *ARGS Example [--] ----- def display_name(*args): print(f"Hello" end=" ") for arg in args: print(arg end=" ") display_name("Dr." "Spongebob" "Harold""
YouTube Link 2022-12-01T15:00Z 3.1M followers, 148K engagements
"C# nested loops โฟ C# nested loops tutorial example explained #C# #nested #loops // nested loops = loops inside of other loops programming tutorial nested for loops triangles how to code coding c# (programming language) programming tutorial nested for loops triangles how to code coding c# (programming language)"
YouTube Link 2021-07-03T14:02Z 3.1M followers, 56.9K engagements
"MySQL: How to create a TABLE #sql #MySQL #table 00:00:00 Intro 00:00:36 CREATE TABLE 00:03:00 SELECT * FROM TABLE 00:03:21 RENAME TABLE 00:03:54 DROP TABLE 00:04:11 Add a column 00:05:13 Rename a column 00:05:50 Modify a column 00:06:34 Change column position AFTER 00:07:32 Change column position FIRST 00:07:52 Drop a column 00:08:09 Conclusion CREATE TABLE employees ( employee_id int PRIMARY KEY first_name VARCHAR(50) last_name VARCHAR(50) hourly_pay DECIMAL(5 2) hire_date DATE ); RENAME TABLE employees TO workers; DROP TABLE employees; ALTER TABLE employees ADD phone_number VARCHAR(15);"
YouTube Link 2022-10-09T15:53Z 3.1M followers, 521.9K engagements
"Learn Interpolation search in [--] minutes โ Interpolation search data structures and algorithms tutorial example explained #interpolation #search #java interpolation search algorithm interpolation search how does interpolation search work code for interpolation search binary search vs interpolation search binary search vs interpolation search vs explain interpolation search best searching algorithm searching algorithm interpolation search algorithm interpolation search how does interpolation search work code for interpolation search binary search vs interpolation search binary search vs"
YouTube Link 2021-10-16T21:57Z 3.1M followers, 66.3K engagements
"Learn Python generator expressions in [--] minutes โป #python #coding #programming # Generator Expression = Similar to a list comprehension but uses () instead of # Creates a generator (iterator) that yields values one at a time # No need to define a function or use yield # Less flexible than a gen func and not reusable # gen object = (expression for value in iterable if condition) python machine learning artificial intelligence coding programming generators generator expressions python machine learning artificial intelligence coding programming generators generator expressions"
YouTube Link 2025-11-07T15:08Z 3.1M followers, [----] engagements
"java for-each loop ๐ java for each loop tutorial explained #java #for #each #loop java for each loop java for each for each java for each loop java for each loop for each for each java tutorial java for each loop tutorial for loop java java for each loops for each loops for each loop in java java programming foreach loop in java enhanced for loop enhanced java for each loop java for each for each java for each loop java for each loop for each for each java tutorial java for each loop tutorial for loop java java for each loops for each loops for each loop in java java programming foreach loop"
YouTube Link 2020-10-19T14:36Z 3.1M followers, 94.3K engagements
"Learn hexadecimal in 0x7A seconds #coding #programming #computerscience Hexadecimal is a concise way to represent binary data. It's used in memory addresses color codes MAC addresses and UUIDs. hexadecimal coding programming computer science binary decimal hexadecimal coding programming computer science binary decimal"
YouTube Link 2025-07-16T14:04Z 3.1M followers, [----] engagements
"Java threads ๐งต java thread tutorial #Java #thread #threads Java threads Java threads tutorial Java Thread class Java thread example Java tutorial threads Java threads tutorial for beginners Java thread threads Java threads Java threads tutorial Java Thread class Java thread example Java tutorial threads Java threads tutorial for beginners Java thread threads"
YouTube Link 2020-06-21T16:34Z 3.1M followers, 156.6K engagements
"Matplotlib grid lines in [--] minutes ๐ #python #coding #matplotlib In this video I will show you how to create and customize grid lines with Matplotlib. python matplotlib machine learning artificial intelligence coding programming python matplotlib machine learning artificial intelligence coding programming"
YouTube Link 2025-10-02T14:00Z 3.1M followers, [----] engagements
"Selection in Pandas is easy ๐ฏ #coding #python #programming Selection in Pandas means pulling out specific data from a Series or DataFrame. import pandas as pd df = pd.read_csv("data.csv" index_col="Name") pokemon = input("Enter a Pokemon name: ") try: print(df.locpokemon) except KeyError: print(f"pokemon not found") python pandas coding programming selection .loc python pandas coding programming selection .loc"
YouTube Link 2025-09-06T14:00Z 3.1M followers, 10.1K engagements
"Convert decimal to octal EASY #coding #programming #computerscience An easy way to convert decimal to octal is by repeatedly dividing the original number by [--] and keeping track of the remainders. Octal is used for file permissions in Unix/Linux and older computer architectures. octal decimal binary computer science coding programming octal decimal binary computer science coding programming"
YouTube Link 2025-07-19T12:33Z 3.1M followers, [----] engagements
"PHP password hashing explained #PHP #course #tutorial // hashing = transforming sensitive data (password) // into letters numbers and/or symbols // via a mathematical process. (similar to encryption) // Hides the original data from 3rd parties. $password = "pizza123"; $hash = password_hash($password PASSWORD_DEFAULT); if(password_verify("hamburger666" $hash)) echo"You are logged in"; else echo"Incorrect password"; PHP course PHP tutorial PHP coding PHP hash PHP password PHP course PHP tutorial PHP coding PHP hash PHP password"
YouTube Link 2024-05-20T01:23Z 3.1M followers, 18.1K engagements
"Learn Tree traversal in [--] minutes ๐ง Tree traversal in-order post-order pre-order tutorial example explained #tree #traversal #tutorial Tree Traversal coding programming data structures algorithm Binary Tree interview microsoft interview Tree Traversal coding programming data structures algorithm Binary Tree interview microsoft interview"
YouTube Link 2021-11-10T15:22Z 3.1M followers, 283.4K engagements
"Learn HTML meta tags in [--] minutes ๐ท HTML meta tags tutorial example explained #HTML #meta #tags Which Meta Tags Are Required In A Website required meta tags meta tags website meta tags website meta meta tags website meta tags seo adding website meta tags to your website best website meta tags best meta tags best html meta tags html meta tags which meta tags are required in html which html meta tags are required in a website mmtuts html css html tutorial css tutorial learn html learn css meta information tutorial learn html and css seo html seo Which Meta Tags Are Required In A Website"
YouTube Link 2021-09-01T12:50Z 3.1M followers, 223K engagements
"How to create a CSS navigation bar in [--] minutes ๐งญ #CSS #tutorial #course This is not a responsive navigation bar. It's meant to be an exercise for beginners to build a very basic navbar. HTML CSS nav navigation tutorial example explained CSS nav HTML nav CSS navigation HTML navigation navbar CSS nav HTML nav CSS navigation HTML navigation navbar"
YouTube Link 2023-09-21T16:58Z 3.1M followers, 608.1K engagements
"Learn CSS pseudo classes in [--] minutes ๐จ๐ง๐ฆ CSS pseudo classes elements tutorial example explained #CSS #pseudo #classes /* -------------- style.css --------------*/ a:link color:lawngreen; a:visited color:grey; a:hover color:tomato; a:active color:yellow; button:hover background-color: lightgrey; button:active background-color: white; li:nth-child(1) background-color: yellow; li:nth-child(even) background-color: skyblue; li:nth-child(odd) background-color: powderblue; li:nth-child(5n+0) background-color: yellow; css pseudo elements css tutorial css pseudo elements tutorial pseudo elements"
YouTube Link 2021-09-04T13:42Z 3.1M followers, 44.2K engagements
"Matplotlib customization is easy ๐จ #python #coding #matplotlib This video will give you an introduction to customizing plots with Matplotlib. In the next video we will cover labels. python matplotlib machine learning artificial intelligence coding programming python matplotlib machine learning artificial intelligence coding programming"
YouTube Link 2025-09-30T14:01Z 3.1M followers, [----] engagements
"Learn RECURSION in [--] minutes ๐ต #python #tutorial #course # recursion = a function that calls itself from within # helps to visualize a complex problem into basic steps # problems can be solved more easily iteratively or recursively # iterative = faster complex # recursive = slower simpler # ----- EXAMPLE [--] ----- # ITERATIVE def walk(steps): for step in range(1 steps+1): print(f"You take step #step") # RECURSIVE def walk(steps): if steps == 0: return walk(steps - 1) print(f"You take step #steps") walk(100) python tutorial for beginners python course recursion python tutorial for beginners"
YouTube Link 2022-12-09T17:07Z 3.1M followers, 311.5K engagements
"Matplotlib bar charts in [--] minutes ๐ถ #python #coding #matplotlib In this video we will create a simple bar chart using matplotlib. python matplotlib machine learning artificial intelligence coding programming python matplotlib machine learning artificial intelligence coding programming"
YouTube Link 2025-10-03T14:01Z 3.1M followers, [----] engagements
"Python tkinter setup a basic GUI ๐ Python tkinter GUI tutorial for beginners #Python #tkinter #GUI #tutorial #beginners from tkinter import * window = Tk() #instantiate an instance of a window window.geometry("420x420") window.title("Bro Code first GUI program") icon = PhotoImage(file='logo.png') window.iconphoto(Trueicon) window.config(background="#5cfcff") window.mainloop() #place window on computer screen listen for events python gui tutorial python gui python gui programming python gui games python gui with tkinter python gui app tkinter python tkinter gui tkinter python tutorial tkinter"
YouTube Link 2020-09-22T12:55Z 3.1M followers, 248.9K engagements
"Java array of objects ๐ฑ java array of objects example tutorial #java #array #objects java array of objects java array of objects example java array objects java array of objects java array of objects example java array objects"
YouTube Link 2020-09-29T21:09Z 3.1M followers, 146.5K engagements
"C structs ๐ C structs tutorial example explained #C #struct #structs struct Player char name12; int score; ; int main() // struct = collection of related members ("variables") // they can be of different data types // listed under one name in a block of memory // VERY SIMILAR to classes in other languages (but no methods) struct Player player1 = "Bro" [--] struct Player player2 = "Bra" [--] //strcpy(player1.name "Bro"); //player1.score = 4; //strcpy(player2.name "Bra"); //player2.score = 5; printf("%sn" player1.name); printf("%dn" player1.score); printf("%sn" player2.name); printf("%dn""
YouTube Link 2021-10-06T20:55Z 3.1M followers, 341.8K engagements
"Java super keyword ๐ฆธโ Java super keyword tutorial explained #Java #super #keyword Java super keyword java super explained java superclass java super keyword java super java super keyword java super keyword tutorial super keyword super keyword java super keyword in java super java java super and this java keyword Java super keyword java super explained java superclass java super keyword java super java super keyword java super keyword tutorial super keyword super keyword java super keyword in java super java java super and this java keyword"
YouTube Link 2020-09-29T21:09Z 3.1M followers, 129.6K engagements
"MySQL tutorial for beginners (intro + installation) ๐ฌ 00:00:00 introduction 00:02:22 Windows installation 00:06:05 Mac OS installation sql sql tutorial sql course sql for beginners Structured Query Language sql course for beginners learn sql free sql course web development mysql mysql tutorial mysql course rdbms sql sql tutorial sql course sql for beginners Structured Query Language sql course for beginners learn sql free sql course web development mysql mysql tutorial mysql course rdbms"
YouTube Link 2022-10-05T15:27Z 3.1M followers, 464.7K engagements
"C functions ๐ C functions tutorial example explained #C #functions #tutorial void birthday() printf("nHappy birthday to you"); printf("nHappy birthday to you"); printf("nHappy birthday dear.YOU"); printf("nHappy birthday to youn"); int main() birthday(); birthday(); birthday(); return 0; c functions functions c c programming programming c c tutorial c functions functions c c programming programming c c tutorial"
YouTube Link 2021-10-06T20:44Z 3.1M followers, 111.4K engagements
"Learn CSS transformations in [--] minutes ๐ #css #course #tutorial CSS transform translate scale rotate skew tutorial example explained CSS transform CSS translate CSS rotate CSS scale CSS skew CSS tutorial CSS course CSS transform CSS translate CSS rotate CSS scale CSS skew CSS tutorial CSS course"
YouTube Link 2023-09-21T17:00Z 3.1M followers, 56.9K engagements
"C++ while loops (#11) ๐ C++ while loops tutorial Coding boot camps hate him See how he can teach you to code with this one simple trick. Bro Code is the self-proclaimed #1 tutorial series on coding in various programming languages and other how-to videos in the known universe. C++ while loop C++ while and do while loops C++ while loop sum of numbers C++ while loop input validation C++ while loop exercises and solutions C++ while loop tutorial C++ while loop examples C++ while if else C++ while loop counter C++ while loop cin C++ while loop function C++ while loop with multiple conditions C++"
YouTube Link 2020-05-03T17:27Z 3.1M followers, 19.2K engagements
"MySQL: FOREIGN KEYS are easy (kind of) #MySQL #course #tutorial 00:00:00 intro 00:00:50 CREATE TABLE customers 00:01:17 INSERT INTO customers 00:01:58 CREATE TABLE transactions w/ FOREIGN KEY 00:02:20 Add FOREIGN KEY to a new table 00:03:34 DROP FOREIGN KEY 00:04:07 ADD a named FOREIGN KEY to an existing table 00:05:28 re-populating our transactions table 00:05:45 AUTO_INCREMENT transactions 00:06:05 inserting new rows into transactions 00:07:21 attempting to delete a referenced primary key 00:07:53 conclusion CREATE TABLE customers ( customer_id INT PRIMARY KEY AUTO_INCREMENT first_name"
YouTube Link 2022-10-27T14:01Z 3.1M followers, 340.8K engagements
"Learn JavaScript STRING SLICING in [--] minutes โ // string slicing = creating a substring // from a portion of another string // string.slice(start end) // ------------ EXAMPLE [--] ------------ const fullName = "Bro Code"; let firstName = fullName.slice(0 3); let lastName = fullName.slice(4 8); console.log(firstName); console.log(lastName); // ------------ EXAMPLE [--] ------------ const email = "Bro1@gmail.com"; let username = email.slice(0 email.indexOf("@")); let extension = email.slice(email.indexOf("@") + 1); console.log(username); console.log(extension); javascript javascript tutorial"
YouTube Link 2023-10-28T15:10Z 3.1M followers, 40.4K engagements
"Learn Python tkinter GUI drag & drop easy ๐ Python drag & drop GUI tkinter tutorial for beginners #Python #drag #drop #GUI #tkinter #tutorial #beginners Python drag and drop gui Python drag & drop GUI tkinter tutorial beginners Python drag and drop gui Python drag & drop GUI tkinter tutorial beginners"
YouTube Link 2020-08-31T16:18Z 3.1M followers, 69.4K engagements
"Start using Pandas in [--] minutes ๐ผ #coding #python #programming This is an introduction to how to get started using Pandas. It's a Python library for working with tabular data. Make sure to download the Pandas package by typing the following into a terminal: python -m pip install pandas python pandas coding programming tutorial course python pandas coding programming tutorial course"
YouTube Link 2025-09-03T12:19Z 3.1M followers, 28.5K engagements
"C++ recursion explained easy ๐ต #recursion #tutorial #explained Recursion tutorial example explained recursion explained tutorial C++ recursion explained tutorial C++"
YouTube Link 2024-05-20T01:56Z 3.1M followers, 68.6K engagements
"Java methods explained in 10+ minutes ๐ Java methods tutorial explained #java #methods #tutorial public class Main public static void main(String args) // method = a block of code that is executed whenever it is called upon int x = 3; int y = 4; int z = add(xy); System.out.println(z); static int add(int x int y) int z = x + y; return z; java methods methods java java methods and classes tutorial java methods explained java methods for beginners java method reference java methods with parameters java method return java methods tutorial java method call java methods methods java java methods"
YouTube Link 2020-10-19T14:36Z 3.1M followers, 219.8K engagements
"C function prototypes ๐ค C function prototypes tutorial example explained #C #function #prototype void hello(char int); //function prototype int main() // function prototype // WHAT IS IT // Function declaration w/o a body before main() // Ensures that calls to a function are made with the correct arguments // IMPORTANT NOTES // Many C compilers do not check for parameter matching // Missing arguments will result in unexpected behavior // A function prototype causes the compiler to flag an error if arguments are missing // ADVANTAGES // [--]. Easier to navigate a program w/ main() at the top //"
YouTube Link 2021-10-06T21:06Z 3.1M followers, 77.5K engagements
"Python string slicing โ Python string slice tutorial example explained #python #slice() #slicing # slicing = create a substring by extracting elements from another string # indexing or slice() # start:stop:step name = "Bro Code" first_name = name:3 # 0:3 last_name = name4: # 4:end funky_name = name::2 # 0:end:2 reversed_name = name::-1 # 0:end:-1 print(reversed_name) website1 = "http://google.com" website2 = "http://wikipedia.com" slice = slice(7-4) print(website1slice) print(website2slice) Up In My Jam (All Of A Sudden) by - Kubbi https://soundcloud.com/kubbi Creative Commons"
YouTube Link 2020-12-21T14:05Z 3.1M followers, 79.4K engagements
"Learn CSS in [--] hour ๐จ #CSS #tutorial #beginners Time Stamps #1 (00:00:00) CSS tutorial for beginners ๐จ #2 (00:11:00) fonts #3 (00:14:20) borders ๐ฒ #4 (00:16:56) background ๐ #5 (00:20:52) margins ๐ #6 (00:25:44) float ๐ #7 (00:29:01) position ๐ฏ #8 (00:34:58) pseudo classes ๐จ๐ง๐ฆ #9 (00:40:47) shadows ๐ฅ #10 (00:43:43) icons ๐ #11 (00:46:45) transform ๐ #12 (00:50:54) animation ๐ Copyright Disclaimer: This video is the intellectual property of Bro Code. All rights reserved. No part of this video may be reproduced distributed or transmitted in any form or by any means including but"
YouTube Link 2021-09-08T14:00Z 3.1M followers, 2.1M engagements
"C# Full Course for free ๐ต C# tutorial beginners full course #coding #programming Time Stamps #1 (00:00:00) C# tutorial for beginners ๐ต #2 (00:06:30) output ๐ฌ #3 (00:10:48) variables โ #4 (00:19:32) constants #5 (00:20:35) type casting ๐ฑ #6 (00:27:49) user input #7 (00:31:24) arithmetic operators ๐งฎ #8 (00:35:54) Math class ๐ #9 (00:40:55) random numbers ๐ฒ #10 (00:44:27) hypotenuse calculator program ๐ #11 (00:46:35) string methods ๐ค #12 (00:53:26) if statements ๐ค #13 (00:59:43) switches ๐ #14 (01:02:50) logical operators && ๐ฃ #15 (01:06:36) while loops โพ #16 (01:09:45) for loops ๐"
YouTube Link 2021-07-05T14:00Z 3.1M followers, 2.4M engagements
"React useRef() hook introduction ๐ณ #reactjs #tutorial #course 00:00:00 introduction 00:01:01 setup 00:03:02 useRef() 00:05:11 html ref attribute 00:08:06 multiple useRef() 00:10:10 useState() vs useRef() 00:10:28 conclusion // useState() = Re-renders the component when the state value changes // useRef() = Does not cause re-renders when its value changes. // [--]. Accessing/Interacting with DOM elements // [--]. Handling Focus Animations and Transitions // [--]. Managing Timers and Intervals react js react tutorial learn react react course reactjs tutorial react crash course react js tutorial reactjs"
YouTube Link 2024-01-12T14:00Z 3.1M followers, 51.9K engagements
"How to swap [--] variables (real life example) ๐ฅค Java switch/swap two variables #Java #switch #swap #variables Java switch variables switch variables java java swap variables swap variables java Java switch variables switch variables java java swap variables swap variables java"
YouTube Link 2020-06-25T23:00Z 3.1M followers, 150.9K engagements
"Learn JavaScript CLOSURES in [--] minutes ๐ // closure = A function defined inside of another function // the inner function has access to the variables // and scope of the outer function. // Allow for private variables and state maintenance // Used frequently in JS frameworks: React Vue Angular 00:00:00 intro 00:00:31 example [--] 00:02:19 example [--] 00:07:00 example [--] 00:10:08 conclusion // ---------- EXAMPLE [--] ---------- function outer() const message = "Hello"; function inner() console.log(message); inner(); message = "Goodbye"; outer(); // ---------- EXAMPLE [--] ---------- function"
YouTube Link 2023-11-24T12:36Z 3.1M followers, 55.8K engagements
"Learn Matplotlib in [--] hour ๐ #python #coding #matplotlib This video serves as an introduction to the Matplotlib Python library. Well cover the basics of Matplotlib so you can start working with it on your own. After finishing this video I recommend learning either linear algebra Scikit-learn or more advanced Matplotlib topics. 00:00:00 Matplotlib intro ๐ 00:07:01 plot customization 00:16:18 labels 00:21:07 grid lines 00:23:54 bar charts 00:28:03 pie charts 00:34:09 scatter plots 00:40:56 histograms 00:47:11 subplots 00:54:07 Pandas + Matplotlib python matplotlib machine learning artificial"
YouTube Link 2025-10-09T14:01Z 3.1M followers, 87.9K engagements
"Learn NumPy data types in [--] minutes ๐ฑ #python #coding #numpy # dtype = Keyword argument that tells NumPy what kind of values are stored in an array # Otherwise NumPy guesses the best data type based on your data # Manually setting dtype improves performance # & is more memory efficient (especially when working with large data sets) # integer (int8 int16 int32 int64) # float (float16 float32 float64) # boolean (bool_) # string (str_) # object (object_) # int8 = [----] to [---] # int16 = [-----] to [-----] # int32 = [----------] to [----------] # int64 = 9.22e18 to 9.22e18 # float16 = 3-4 decimal digit"
YouTube Link 2025-11-21T15:40Z 3.1M followers, 16.6K engagements
"MySQL: SUBQUERIES #MySQL #tutorial #course SELECT first_name last_name hourly_pay (SELECT AVG(hourly_pay) FROM employees) AS avg_pay FROM employees; SELECT first_name last_name FROM customers WHERE customer_id IN (SELECT DISTINCT customer_id FROM transactions WHERE customer_id IS NOT NULL); MySQL tutorial for beginners SQL tutorial for beginners MySQL course SQL course MySQL tutorial for beginners SQL tutorial for beginners MySQL course SQL course"
YouTube Link 2022-11-12T15:15Z 3.1M followers, 196.1K engagements
"Java generics โ Java generics tutorial for beginners #Java #generics# tutorial Java generic methods 00:50 Java generic classes 07:25 Java bounded types 18:58 Java generic methods Java generic classes Java bounded types Java generics Java generic methods classes Java generics tutorial Java generic methods Java generic classes Java bounded types Java generics Java generic methods classes Java generics tutorial"
YouTube Link 2020-07-26T21:52Z 3.1M followers, 143K engagements
"C++ Full Course for free โก This video is a beginner's introduction to C++ that assumes you have no coding experience. This 6-hour video covers just enough to get you started working with C++ on your own. After completion I would recommend learning: Vectors Polymorphism STL Smart Pointers and modern C++23 features. Time Stamps 1# (00:00:00) C++ tutorial for beginners ๐จ๐ป 2# (00:13:30) Variables and basic data types โ 3# (00:24:14) Const ๐ซ 4# (00:27:37) Namespaces ๐ 5# (00:32:13) Typedef and type aliases ๐โ 6# (00:37:39) Arithmetic operators ๐งฎ 7# (00:43:18) Type conversion โจ 8# (00:47:05)"
YouTube Link 2022-06-28T23:47Z 3.1M followers, 7.4M engagements
"Learn Python Object Oriented Programming ๐ #python #pythonprogramming #pythontutorial 00:00:00 introduction 00:01:53 classes 00:02:19 constructors 00:04:13 instantiate objects 00:05:06 attribute access operator 00:06:09 multiple objects 00:07:19 modules 00:08:21 methods 00:11:52 conclusion # object = A "bundle" of related attributes (variables) and methods (functions) # Ex. phone cup book # You need a "class" to create many objects # class = (blueprint) used to design the structure and layout of an object # --------------- car.py --------------- class Car: def init(self model year color"
YouTube Link 2024-05-20T18:06Z 3.1M followers, 82.3K engagements
"Start C programming in [--] minutes โ #coding #programming #cprogramming This is a beginner's introduction to C programming 00:00:00 introduction 00:00:41 VSCode download 00:01:52 new project folder 00:02:29 main.c 00:02:46 helpful VSCode extensions 00:04:11 open VSCode terminal 00:04:22 gcc compiler (Windows) 00:05:11 clang compiler (Mac) 00:05:46 gcc compiler (Linux) 00:06:28 gcc compiler download (Windows) 00:08:40 Set PATH (Windows) 00:09:53 Your first C program IDE: https://code.visualstudio.com/ gcc for windows: https://www.msys2.org/ c tutorial c course c programming c exercises c"
YouTube Link 2025-05-01T19:56Z 3.1M followers, 177.4K engagements
"HTML tutorial for beginners ๐ #HTML #course #tutorial TIME STAMPS 00:00:00 introduction 00:01:56 VSCode download 00:02:38 project folder setup 00:02:57 index.html 00:03:16 Live Server extension 00:03:35 DOCTYPE html 00:03:54 html 00:04:16 head 00:04:29 title 00:05:11 body 00:05:24 headings 00:06:21 p 00:06:50 br 00:07:13 hr 00:07:24 pre 00:08:00 comments 00:08:29 exercise 00:10:51 conclusion html tutorial for beginners html course html tutorial for beginners html course"
YouTube Link 2023-09-21T16:39Z 3.1M followers, 361.5K engagements
"How to FETCH data from an API using JavaScript #javascript #utorial #course 00:00:00 fetch 00:06:29 async/await 00:08:55 project // fetch = Function used for making HTTP requests to fetch resources. // (JSON style data images files) // Simplifies asynchronous data fetching in JavaScript and // used for interacting with APIs to retrieve and send // data asynchronously over the web. // fetch(url options) async function fetchData() try const pokemonName = document.getElementById("pokemonName").value.toLowerCase(); const response = await fetch(https://pokeapi.co/api/v2/pokemon/$pokemonName);"
YouTube Link 2023-12-28T16:33Z 3.1M followers, 354K engagements
"Learn Python zip() in [--] minutes ๐ค #python #coding #programming # zip() = Combines multiple iterables (lists tuples sets dict) # into a single iterator of tuples. # Makes managing multiple indices easier. names = "Spongebob" "Patrick" "Squidward" ages = [--] [--] [--] jobs = "Cook" "Unemployed" "Cashier" data = zip(names ages jobs) for name age job in data: print(f"name is a age year old job") python machine learning coding programming zip zip() zip function python machine learning coding programming zip zip() zip function"
YouTube Link 2025-11-04T13:27Z 3.1M followers, 25.9K engagements
"Java GUI ๐ผ Java GUI frame JFrame swing tutorial for beginners #Java #GUI #frame #JFrame #swing #tutorial #beginners import java.awt.Color; import javax.swing.ImageIcon; import javax.swing.JFrame; public class Main public static void main(String args) // JFrame = a GUI window to add components to JFrame frame = new JFrame(); //creates a frame frame.setTitle("JFrame title goes here"); //sets title of frame frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //exit from application frame.setResizable(false); //prevent frame from being resized frame.setSize(420420); //sets the x-dimension and"
YouTube Link 2020-08-09T01:27Z 3.1M followers, 166.8K engagements
"JavaScript ASYNC/AWAIT is easy #javascript #tutorial #programming // Async/Await = Async = makes a function return a promise // Await = makes an async function wait for a promise // Allows you write asynchronous code in a synchronous manner // Async doesn't have resolve or reject parameters // Everything after Await is placed in an event queue async function doChores() try const walkDogResult = await walkDog(); console.log(walkDogResult); const cleanKitchenResult = await cleanKitchen(); console.log(cleanKitchenResult); const takeOutTrashResult = await takeOutTrash();"
YouTube Link 2023-12-21T17:23Z 3.1M followers, 227.5K engagements
"Learn nested loops in [--] minutes โฟ #coding #programming #cprogramming Nested loop = a loop inside another loop c tutorial c course c programming c exercises c projects c coding programming coding projects programs exercises loops nested loops c tutorial c course c programming c exercises c projects c coding programming coding projects programs exercises loops nested loops"
YouTube Link 2025-03-21T17:14Z 3.1M followers, 18.5K engagements
"C bitwise operators ๐ฃ C bitwise operators & tutorial example explained #C #bitwise #operators bitwise operators bitwise operator in c bitwise and bitwise and operator bitwise and operator in c bitwise or bitwise or operator bitwise or operator in c bitwise not bitwise bitwise not operator in c bitwise not operator difference between bitwise and logical operators difference between bitwise and logical operators in c c language c programming c programming tutorials c language for beginners c programming for gate c language for interview c lectures bitwise operators bitwise operator in c"
YouTube Link 2021-10-06T21:00Z 3.1M followers, 182.4K engagements
"Data Structures and Algorithms Full Course ๐ Data Structures and Algorithms full course tutorial java #data #structures #algorithms Time Stamps #1 (00:00:00) What are data structures and algorithms ๐ #2 (00:02:20) Stacks ๐ #3 (00:11:45) Queues ๐ #4 (00:21:51) Priority Queues ๐ฅ #5 (00:26:51) Linked Lists ๐ #6 (00:40:14) Dynamic Arrays ๐ฑ #7 (01:04:37) LinkedLists vs ArrayLists ๐คผโ #8 (01:13:07) Big O notation ๐ #9 (01:19:32) Linear search #10 (01:23:13) Binary search ๐ช #11 (01:32:44) Interpolation search โ #12 (01:41:05) Bubble sort ๐คฟ #13 (01:48:14) Selection sort ๐ฆ #14 (01:56:35)"
YouTube Link 2021-11-11T14:01Z 3.1M followers, 2.7M engagements
"What is asynchronous JavaScript code ๐ค #JavaScript #tutorial #course // synchronous = Executes line by line consecutively in a sequential manner // Code that waits for an operation to complete. // asynchronous = Allows multiple operations to be performed // concurrently without waiting. Doesn't block the execution // flow and allows the program to continue. // (I/O operations network requests fetching data) // Handled with: Callbacks Promises Async/Await javascript javascript tutorial javascript full course javascript course course full course web development web developer software engineer"
YouTube Link 2023-11-30T15:39Z 3.1M followers, 56.9K engagements
"Python user input Python user input tutorial #python #user #input name = input("What is your name: ") age = int(input("How old are you: ")) height = float(input("How tall are you: ")) print("Hello "+name) print("You are "+str(age)+" years old") print("You are "+str(height)+"cm tall") Bro Code merch store: https://teespring.com/stores/bro-code-5 Up In My Jam (All Of A Sudden) by - Kubbi https://soundcloud.com/kubbi Creative Commons Attribution-ShareAlike [---] Unported CC BY-SA [---] Free Download / Stream: http://bit.ly/2JnDfCE Music promoted by Audio Library https://youtu.be/tDexBj46oNI python"
YouTube Link 2020-12-21T14:04Z 3.1M followers, 320.2K engagements
"Java method overriding ๐
โ java method overriding tutorial #java #method #overriding java method overriding java method overriding java method overriding java method overriding"
YouTube Link 2020-09-29T21:09Z 3.1M followers, 144.3K engagements
"Learn Selection Sort in [--] minutes ๐ฆ data structures and algorithms selection sort algorithm #selection #sort #algorithm // selection sort = search through an array and keep track of the minimum value during // each iteration. At the end of each iteration we swap variables. // Quadratic time O(n2) // small data set = okay // large data set = BAD music credits ๐ผ : =========================================================== Block Party - Bad Snacks link: https://youtu.be/WyOdBcADtp8 =========================================================== algorithm interview C++ java mycodeschool coding"
YouTube Link 2021-05-31T14:00Z 3.1M followers, 439.4K engagements
"Learn JavaScript ELEMENT SELECTORS easy ๐ #JavaScript #tutorial #course 00:00:00 introduction 00:00:36 getElementById() 00:02:55 getElementsClassName() 00:07:22 getElementsByTagName() 00:12:44 querySelector() 00:14:33 querySelectorAll() 00:16:49 conclusion // element selectors = Methods used to target and manipulate HTML elements // They allow you to select one or multiple HTML elements // from the DOM (Document Object Model) // [--]. document.getElementById() // ELEMENT OR NULL // [--]. document.getElementsClassName() // HTML COLLECTION // [--]. document.getElementsByTagName() // HTML COLLECTION //"
YouTube Link 2023-12-05T15:06Z 3.1M followers, 69.6K engagements
"Learn Python format specifiers in [--] minutes ๐ฌ #Python #course #tutorial # format specifiers = :flags format a value based on what flags are inserted 00:00:00 intro 00:01:35 decimal precision 00:02:41 padding 00:03:15 justify 00:04:18 comma separator 00:04:37 mix and match format specifiers 00:05:03 conclusion Python tutorial for beginners Python course Python Python tutorial Python tutorial for beginners Python course Python Python tutorial"
YouTube Link 2022-10-20T14:31Z 3.1M followers, 143.2K engagements
"Learn Hash Tables in [--] minutes # Hash Table tutorial example explained #Hash #Table #Hashtable // Hashtable = A data structure that stores unique keys to values Each key/value pair is known as an Entry FAST insertion look up deletion of key/value pairs Not ideal for small data sets great with large data sets Hash Table Hashtable Data structure algorithm Hash Table Hashtable Data structure algorithm"
YouTube Link 2021-10-20T17:32Z 3.1M followers, 556.1K engagements
"MySQL: GROUP BY #MySQL #tutorial #course You can copy and paste all of the following statements if you would like to follow along in this video. P.S. Make sure you have a customers table if you're linking the foreign key on customer_id. ------------------------------------------------------------ DROP TABLE IF EXISTS transactions; CREATE TABLE transactions ( transaction_id INT PRIMARY KEY AUTO_INCREMENT amount DECIMAL(5 2) customer_id INT order_date DATE FOREIGN KEY (customer_id) REFERENCES customers(customer_id) ); INSERT INTO transactions VALUES (1000 [----] [--] "2023-01-01") (1001 [----] 2"
YouTube Link 2022-11-18T15:55Z 3.1M followers, 115.7K engagements
Limited data mode. Full metrics available with subscription: lunarcrush.com/pricing