Skip to content
edvry
  • HOME
  • COURSES
  • CATEGORIES
    • Business
      • Business Analytics & Intelligence
      • Business Law
      • Business Strategy
      • Communication
      • E-Commerce
      • Entrepreneurship
      • Human Resources
      • Management
      • Other Business
      • Project Management
    • Design
      • Design Tools
      • Graphic Design & Illustration
    • Development
      • Data Science
      • Database Design & Development
      • Game Development
      • Mobile Development
      • No-Code Development
      • Programming Languages
    • Finance & Accounting
      • Cryptocurrency & Blockchain
      • Financial Modeling & Analysis
      • Investing & Trading
    • IT & Software
      • IT Certifications
      • Network & Security
      • Operating Systems & Servers
      • Other IT & Software
    • Marketing
      • Content Marketing
      • Digital Marketing
      • Growth Hacking
      • Marketing Analytics & Automation
      • Paid Advertising
    • Office Productivity
      • Microsoft
      • Other Office Productivity
    • Personal Development
      • Career Development
      • Personal Brand Building
      • Personal Productivity
    • Photography & Video
      • Other Photography & Video
    • Engineering
    • Online Education
    • Other Teaching & Academics
    • Teaching & Academics
      • Science
    • Search Engine Optimization
    • Social Media Marketing
    • Software Development Tools
    • Software Engineering
    • Software Testing
    • Web Development
    • Video Design
    • Web Design
  • PAGES
    • Pricing
  • ABOUT US
edvry
  • HOME
  • COURSES
  • CATEGORIES
    • Business
      • Business Analytics & Intelligence
      • Business Law
      • Business Strategy
      • Communication
      • E-Commerce
      • Entrepreneurship
      • Human Resources
      • Management
      • Other Business
      • Project Management
    • Design
      • Design Tools
      • Graphic Design & Illustration
    • Development
      • Data Science
      • Database Design & Development
      • Game Development
      • Mobile Development
      • No-Code Development
      • Programming Languages
    • Finance & Accounting
      • Cryptocurrency & Blockchain
      • Financial Modeling & Analysis
      • Investing & Trading
    • IT & Software
      • IT Certifications
      • Network & Security
      • Operating Systems & Servers
      • Other IT & Software
    • Marketing
      • Content Marketing
      • Digital Marketing
      • Growth Hacking
      • Marketing Analytics & Automation
      • Paid Advertising
    • Office Productivity
      • Microsoft
      • Other Office Productivity
    • Personal Development
      • Career Development
      • Personal Brand Building
      • Personal Productivity
    • Photography & Video
      • Other Photography & Video
    • Engineering
    • Online Education
    • Other Teaching & Academics
    • Teaching & Academics
      • Science
    • Search Engine Optimization
    • Social Media Marketing
    • Software Development Tools
    • Software Engineering
    • Software Testing
    • Web Development
    • Video Design
    • Web Design
  • PAGES
    • Pricing
  • ABOUT US
  • Home
  • Course
  • NLTK: Build Document Classifier & Spell Checker with Python

NLTK: Build Document Classifier & Spell Checker with Python

  • By admin
  • Data Science
    (0.0/ 0 Rating)
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
  • Description
  • Curriculum
  • FAQ
  • Reviews
18697

This Natural Language Processing (NLP) tutorial covers core basics of NLP using the well-known Python package Natural Language Toolkit (NLTK). The course helps trainees become familiar with common concepts like tokens, tokenization, stemming, lemmatization, and using regex for tokenization or for stemming. It discusses classification, tagging, normalization of our input or raw text. It also covers some machine learning algorithms such as Naive Bayes.

After taking this course, you will be familiar with the basic terminologies and concepts of Natural Language Processing (NLP) and you should be able to develop NLP applications using the knowledge you gained in this course.

What is Natural Language Processing (NLP)?

Natural language processing, or NLP for short, is the ability of a computer program to understand, manipulate, analyze, and derive meaning from human language in a smart and useful way. By utilizing NLP, developers can organize and structure knowledge to perform tasks such as automatic summarization, translation, named entity recognition, relationship extraction, sentiment analysis, speech recognition, topic segmentation, and spam detection.

What is NLTK?

The Natural Language Toolkit (NLTK) is a suite of program modules and data-sets for text analysis, covering symbolic and statistical Natural Language Processing (NLP). NLTK is written in Python. Over the past few years, NLTK has become popular in teaching and research.

NLTK includes capabilities for tokenizing, parsing, and identifying named entities as well as many more features.

This Natural Language Processing (NLP) tutorial mainly cover NLTK modules.

About the course

This Natural Language Processing (NLP) tutorial is basically designed to make you understand the fundamental concepts of Natural Language Processing (NLP) with Python, and we will be learning some machine learning algorithms as well because natural language processing and machine learning move hand in hand as NLP employs machine learning techniques to learn and understand what a sentence is saying, or what a user has said and it sends an appropriate response back. 

So, by the end of this course, I hope you will have a clear idea, a clear view of the core fundamental concepts of NLP and how we can actually make applications using these core concepts.

Looking forward to seeing you in the course.

—-

Keywords: Natural Language Processing (NLP) tutorial; Python NLTK; Machine Learning; Sentiment Analysis; Data Mining; Text Analysis; Text Processing

Do you want to learn a specific NLP topic?
  • 1
    Introduction to NLP
    Video lesson

    What is Natural Language Processing (NLP)?

    The question is, what is Natural Language Processing? Natural Language Processing (NLP) is basically a branch of artificial intelligence which deals with understanding our own simple languages and interacting with humans.

    Examples of Natural Language Processing (NLP) Applications

    • Siri/Cortana: Personal Assistants
    • Google: Search Engine
    • Spam Detection: Detecting emails you don't get because they are marked as spam and you don't need them in your inbox.
    • Chatbots: Facebook Chatbots right now, integrating them into its Messenger.
    • Text Analytics: Understanding text means, making some data points, and running analysis based on those data points.


  • 2
    Course Technical Requirements
    Text lesson
  • 3
    Installing and Setting Up NLTK
    Video lesson

    In this video, we will download the NLTK module, and all the additional resources associated with it. I hope you've downloaded Python and set it up on your PCs. What we do here is we have a new project in Python. In the main directory, I have a file, a TXT file, requirements.txt Then I go and write: nltk So what this file does is that it downloads all the modules that you want for this project all by itself. So you don't really need to worry about going to the Terminal or CMD and getting these yourself. It will handle this. PyCharm will do this all by itself. If I move back to setting-up.py here, if I hadn't installed the NLTK module earlier, it would have displayed a warning box here, showing that the requirements are not satisfied. What you do here is you just click yes, and it will download all the requirements that have not yet been satisfied. For me, I've already downloaded the NLTK module. It's not giving me that warning. Now the first step is complete. We have downloaded the NLTK module. It is here in the Python library. Now what we want to do... is we want to download the additional resources associated with the NLTK module. As I move on along in the course I'll explain why we need these additional resources. So I say: import nltk Then I say: nltk.download Now I'm going to move to "Run" here, and I'm going to run this. It shows the run setting up. As I move back to Desktop, you can see that the Python GUI is opening up. Just give it a minute. Here it is up and running. We can see that here it gives me four options: Collections, Corpora, Models, All Packages This is the NLTK downloader we have for downloading additional resources associated with that. Now you can see that if I click on Corpora here, all the corpora associated with NLTK are listed here. Modules and All Packages. I have installed most of them here. What I want you to do it just go to Collections, click on "all". Make sure that this "all" is highlighted. If you click on "all" you can see that... this row has been highlighted. I want you to click on "all". Just make sure that you clicked on "all" and then press "Download". It is going to download now all the resources associated with the NLTK module. It will take some time to download as the file sizes are huge. You'll get it done. I'll see you in the next video and we'll proceed with an introduction to the NLTK module. I hope you get this done by then. Thank you!

  • 4
    NLTK Accessing Texts
    Video lesson

    So in the last video, what we did was we downloaded all the additional resources associated with our NLTK module. I hope you have downloaded them because you will be needing them throughout this course. So in this video, what we are going to do is we are going to access some very basic resources of the NLTK module. So I say: from nltk.book import * So what this is going to do is this is going to import everything from nltk.book So this .book is an additional resource of the NLTK module. If I just run this right now, I haven't typed anything else, I've just imported this, you can see that what it is doing is... what it is doing is it is loading all the texts that are associated with this module, nltk.book So these are all introductory texts and we can actually access them individually, like you know, programmatically. So how do I do that? I can say: print and then I say: texts So this is a function we have; a texts function, what it does is that it loads all the texts into our memory, and if I run it, I can see that. So you can see that, till here, this was what we had previously and after that, what this does is, this loads everything... as this command is executed, at line No. 5 So the next function we have here is sents function; what it does is it loads some introductory sentences from nltk.book module, so I can say: sents and if I run this now... I'm just going to have a print() command here so that there's a gap between this command and this one. So you can see that what this has done, is this has loaded all the sentences that this module has, like introductory sentences. And what if I want to access them individually, I can definitely do that. So I can say: print and if I run this now, you'll see that it will give me the first sentence it has. So it has given me a list here and each element of the list is a word. Okay, so this is returning me the first sentence there. And similarly, I can also access a text individually, like this function here. What it did was it loaded all the texts that are here in the nltk.book module, the introductory texts. So how can I access a text individually? It's similar to what we did with sentences. We say: print and if I do this, it is going to give me an object of text1 So you can see this here, that it has returned me the first text there. You can see the first text is "Moby Dick by Herman" and here I have an object text, which is the same here, like this one here. And okay, so now there are various functions associated with each text. I'll just show you something. Can you see this here? If I type text1. I can see a lot of functions that are available here. So in the next video, what we are going to do is we are going to discuss some of the very frequently used functions and help you understand what they do and how we can actually use them to build our own applications.

  • 5
    Basic Functions: concordance, similar, dispersion_plot, count
    Video lesson

    So, in the last video, what we did was we discussed how to access the very basic introductory texts of the nltk.book module. In this video, what we will be doing is that we will be discussing very basic introductory functions which we use extensively for analysis. So if you remember, we had these 9 introductory texts in the nltk.book module. So now, what I want you to know is that this text is basically a text class, and the hierarchy for this text class is nltk.text.Text So, if I say print), and I say text1 or text2, anything here, and if I print this now, you're going to see that it actually shows us this hierarchy, the type of text2, which is nltk.text.Text, which means that we have the "nltk" module first, and then there's a package named "text", and then there's this class, "Text". So you can see this here that we have this as a class. So what we will be doing here is we will be discussing some very basic functions of this class here, "Text", or this here, the same thing. Okay. So the first function which we are going to discuss is "concordance". So what this does is this expects a single word as its input, and what it gives us as an output is that it searches for the word we have given it as an input, and it returns us all the occurrences of that word in our text with some context. By context, I mean the words which appear before that word and the words which appear after that word. So we'll just see this now, what we actually mean by this. So I say: text1.concordance, and let's say I go for "man". And if I run this now, we're just going to see that it is going to give us all the occurrences of man with some context in text1. So you can see that it says displaying 25 of 527 matches. So it has, you know, it has found 527 occurrences of the word "man", and you can see that here, it is "man", and it is also giving us some context to the word man, some words before the word "man", and some words after the word "man". Okay, so this is what "concordance" does. This is pretty helpful, you know, if you want to see where a word is appearing and in what context it is appearing usually.

    The next function which we are going to discuss is "similar". So what "similar" does is it expects a single word as its input, and what it gives us in return is that it searches for that word which we have provided in the input, and it fetches the context of that word, like, you know, every context, and then it returns us all the words that appear in the same context. I'm just going to run this, and you'll understand it better than what I'm trying to say. I say: print and let's say I go for "woman". So if I print this now, what this is going to do is this is going to search for the word woman in text1, and then what it is going to return us is that it is going to return us all the words that appear in the same context as the word "woman". So you can see them here, the words which appear in the same context as the word "woman": man, king, wife, hussar, fiddler, bull, laugh, writer. So all of these words, they appear in the same context as the word "woman" in text1, which is Moby Dick here. Okay, so this is what we have for similar.

    Another function which we are going to discuss right now is dispersion_plot This is very helpful in analysis of data, like, you know, we can actually see how many times a word has come in a particular text and where, you know, when did it appear? Was it used very extensively at the start of the text, or was it used extensively at the end, or in the middle, or wherever? So what this does is this specifically returns us a graph where on our y axis, we have the words we have given it as the input of which we want to find the frequency. And on the x axis, what we have is we have the number of words and it displays us where this word occurred. So I'm just going to, you know, run this, and hopefully you'll understand this better, what I'm trying to tell you right now. I'll just explain. Okay, so text, let's say I'll go with text4 here, which is this here. So I say text4.dispersion_plot Now, this function expects a list as its input. So I give it a list. I say, let's say I give it "democracy", "freedom", "law". So if I run this now, this function is going to give me a graph as its output. You're just going to see that right now. And I'll explain what I was telling you earlier. So you can see this here that on the y axis, what I have is I have the list I gave it as its input: "democracy", freedom", "law"; three words. "democracy", "freedom", "law" And on the y axis, what this shows is that this text has roughly this many words, and if we go with "democracy", you can see that the first occurrence of "democracy" is somewhere here around 20,000, and as we move forward, you can see that "democracy has been used a lot at the very end, but it has been rarely used at the start and in the middle. The word "freedom" has been used throughout the text. You can see that here, and similarly for "law", it has also been used throughout the text. So this is a pretty helpful function which can be used to run some pretty quick analysis to see what this text contains, like for example, let's say you have a chat of a person, and, you know, maybe a million words, and now you want to see how many negative words this person uses or how extensively that person uses those negative words, so you know you can better assess that person's personality through that. So what do you do with it? You give this function a list of negative words as its input, and you'll see that, okay, this person used this many negative words, and where did he use them? Was he using them a lot at the very start or in the middle or maybe throughout? I mean, you'll get a better idea of what that person is, or what he thinks or how he writes. So, this is a pretty helpful function.

    If you want to know the number of words that I have in my text. So what do I do now? I say, it's the same function we have for Python len() and I say "text" maybe 5 And let's run this. So this is going to give us the length of our text here, text5. Okay, so, you know, let's say I want to... Okay, so this is 45010, so this is the length of text5 here, which is this, "Chat Corpus".

    So let's say now, you know, we want to find how many times the word "freedom" appeared in our text4. What do I do now? So the function we have for that is I say print). Now, this .count() function, it expects a single word as its input, and it is going to return me an integer value, giving me the occurrences of that word. So I say "freedom", and if I run this now, you'll see that it will give me, it will give me the times the word "freedom" occurred in text4. So it's 174 here. Okay, now, let's say, you know, I want to calculate a percentage for the word "freedom" based on its occurrence in text4. What do I do now? So the thing we can do here is we can say print. Now, you know, I say the number of times the word freedom appeared, text4.count and I divide it by the length of text4, and then I multiply it by 100. So if I run this now, this is going to give me a percentage of times the word freedom appeared in text4. So you can see that it's 0.1193%, or if we round it off, it's like 0.12 So it's 0.12% So I hope that these basic functions are clear to you, and I hope that especially this function, dispersion_plot is clear to you, as this is very helpful just running a very quick analysis and seeing how this text is placed. So I'll see you in the next video, and we will be discussing Frequency Distributions.

  • 6
    Summary: NLTK Basic Functions
    Text lesson
  • 7
    Frequency Distribution with NLTK
    Video lesson
  • 8
    Frequency Distribution on Your Text with NLTK
    Video lesson
Corpora
  • 9
    Do you want to learn a specific NLTK or NLP topic?
    Text lesson
Processing Raw Text with NLTK
  • 10
    Accessing Corpora
    Video lesson

    How to access and use the built-in corpora of NLTK

  • 11
    Loading Your Own Corpus
    Video lesson

    How to use your own texts in NLTK

  • 12
    Conditional Frequency Distribution
    Video lesson
  • 13
    Lexical Resources Vocabulary
    Video lesson
  • 14
    Terminology
    Text lesson
  • 15
    NLP Basic Terminology
    Quiz
Categorizing and Tagging Words with NLTK
  • 16
    NLP Pipeline
    Video lesson
  • 17
    Tokenization
    Video lesson

    In Natural Language Processing, Tokenization is the process of breaking text up into words, phrases, symbols, or other meaningful elements called tokens. The list of tokens becomes input for further processing such as parsing or text mining. Learn more about Tokenization with Python NLTK in this video tutorial.

  • 18
    What is Token?
    Quiz

    What does "token" mean?

  • 19
    Regular Expressions
    Video lesson
  • 20
    Applications of Regex
    Video lesson
  • 21
    Stemming
    Video lesson

    Text Normalization with Stemming in NLTK

  • 22
    Lemmatization
    Video lesson

    Text Normalization with Lemmatization in NLTK

  • 23
    Regex for Tokenization
    Video lesson

    Using Regular Expressions to tokenize texts

Sentiment Analysis: Text Classification Practical Projects
  • 24
    Tagger
    Video lesson

    The process of classifying words into their parts of speech and labeling them accordingly is known as part-of-speech tagging, POS-tagging, or simply tagging. Parts of speech are also known as word classes or lexical categories. The collection of tags used for a particular task is known as a tagset.


  • 25
    Tagged Corpus
    Video lesson
  • 26
    The Default Tagger
    Video lesson
  • 27
    Regexp Tagger
    Video lesson

    Tagging with Regular Expressions

  • 28
    Unigram Tagger
    Video lesson

    Tagging into single words

  • 29
    Ngram Tagger
    Video lesson

    Tagging into phrases of multiple words

  • 30
    POS Tagging
    Quiz
Extracting Info from Text
  • 31
    Machine Learning Overview
    Video lesson
  • 32
    Logic Of Naive Bayes
    Video lesson

    Commonly used in Machine Learning, Naive Bayes is a collection of classification algorithms based on Bayes Theorem. Naive Bayes classifier assumes that the presence of a particular feature in a class is unrelated to the presence of any other feature. For So for example, a fruit may be considered to be an apple if it is red, round, and about 3″ in diameter. A Naive Bayes classifier considers each of these three "features" to contribute independently to the probability that the fruit is an apple, regardless of any correlations between features. However, features are not always independent which is often seen as a shortcoming of the Naive Bayes algorithm and this is why it’s labeled “naive”.

    Although it’s a relatively simple idea, Naive Bayes can often outperform other more sophisticated algorithms and is extremely useful in common applications like spam detection and document classification.

  • 33
    Project #1: Gender Prediction Application - Part 1
    Video lesson

    In this video tutorial, you will build a small application which is going to take the name of a person as its input and is going to tell you whether that person's name is a male or female. You are going to use Naive Bayes in your classifier. You are going to make your application learn based on some training data set; and after it has learned, we are going to give it a word, a name, and it is going to tell us whether this person is male or female.

  • 34
    Project #1: Gender Prediction Application - Part 2
    Video lesson
  • 35
    Project #1: Gender Prediction Application - Part 3
    Video lesson
  • 36
    Project #2: Document Classifier Application
    Video lesson

    In this video tutorial, you are going to build a document classifier in which you will give your classifier a movie or product review as an input and it will tell you if that movie review is a positive one or a negative one.

NLP Course Concolusion
  • 37
    Information Extraction Architecture
    Video lesson
  • 38
    Chunking Overiew
    Video lesson

    Chunking or Shallow parsing is an analysis of a sentence which first identifies constituent parts of sentences (nouns, verbs, adjectives, etc.) and then links them to higher order units that have discrete grammatical meanings e.g phrases.

  • 39
    Chunking in Coding
    Video lesson

    Chunking in Python NLTK

  • 40
    Exercise: Named Entity Recognition
    Text lesson
  • 41
    Chinking
    Video lesson
    Chinking is a part of the chunking process with natural language processing with NLTK. A chink is what we wish to remove from the chunk.
  • 42
    Stanford NLP API
    Video lesson
  • 43
    Chunking and Chinking
    Quiz
Advanced NLTK Topics
  • 44
    Conclusion
    Video lesson
Bonus Material
  • 45
    Edit Distance Example
    Video lesson
  • 46
    Edit Distance - Spelling Checker
    Video lesson
  • 47
    Appendix: List of Correct Words for Spelling Checkers
    Text lesson
  • 48
    Edit Distance - Plagiarism Checker / Translation Memory
    Video lesson
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don't have an internet connection, some instructors also let their students download course lectures. That's up to the instructor though, so make sure you get on their good side!
3.65
163 reviews
Please, login to leave a review
Stars 5
48
Stars 4
54
Stars 3
37
Stars 2
18
Stars 1
6
Show more

Course Includes:

  • Price:$44.99$14
  • Instructor:admin
  • Duration:5.5 total hours
  • Lessons:1
  • Students:862
  • Certifications:No
Get course $14 $44.99
One Time Payment Available in this plans: Basic $9.97 Standard $14.19 Premium $129.19

Share On:

Courses You May Like

5397532_abe9.jpg
5.5 total hours
beginner
Bootstrap 5 From Scratch Build 5 Modern Websites
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 127 Students
Add to Wishlist
beginner
Bootstrap 5 From Scratch Build 5 Modern Websites
(0.0/ 0 Rating)
Free

Requirements You should know the basics of HTML and CSS Description This...

  • 1 Lessons
  • 127 Students
Enroll Now
5430334_c918_2.jpg
3.5 total hours
beginner
Practical Hands On Cyber Security Guide For Beginners 2023
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 364 Students
Add to Wishlist
beginner
Practical Hands On Cyber Security Guide For Beginners 2023
(0.0/ 0 Rating)
Free

Requirements There are No prerequisites or specific requirements are needed to enroll...

  • 1 Lessons
  • 364 Students
Enroll Now
4601546_f235_11.jpg
1.5 total hours
beginner
Visual Studio Code for Developers 2023 Beginner to Advanced
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 64 Students
Add to Wishlist
beginner
Visual Studio Code for Developers 2023 Beginner to Advanced
(0.0/ 0 Rating)
Free

Requirements Basic programming experience or familiarity with programming concepts is recommended. We...

  • 1 Lessons
  • 64 Students
Enroll Now
5348562_8df1_4.jpg
2.5 total hours
beginner
SQL Mastery MySQL bootcamp for beginners
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1 Students
Add to Wishlist
beginner
SQL Mastery MySQL bootcamp for beginners
(0.0/ 0 Rating)
Free

Requirements Software Installed : My SQL community 8.0.30 (My SQL Server +Benchmark)...

  • 1 Lessons
  • 1 Students
Enroll Now
1983868_01f9.jpg
beginner
SQL for Newcomers – The Full Mastery Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 200 Students
Add to Wishlist
beginner
SQL for Newcomers – The Full Mastery Course
(0.0/ 0 Rating)
Free

Requirements Have a PC or laptop to work on. Your old clunky...

  • 1 Lessons
  • 200 Students
Enroll Now
5285966_3f51_2.jpg
3.5 total hours
beginner
Applied Computer Vision with Python Video Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 132 Students
Add to Wishlist
beginner
Applied Computer Vision with Python Video Course
(0.0/ 0 Rating)
Free

Requirements Basics of Automation Testing – but then course has been designed...

  • 1 Lessons
  • 132 Students
Enroll Now
5285966_3f51_2.jpg
3.5 total hours
beginner
Express with Node JS
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • Students
Add to Wishlist
beginner
Express with Node JS
(0.0/ 0 Rating)
Free

Requirements Basics of Automation Testing – but then course has been designed...

  • 1 Lessons
  • Students
Enroll Now
logo-take-5.png
3.5 total hours
beginner
Amazon DynamoDB Data Modeling for Architects Developers
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 136 Students
Add to Wishlist
beginner
Amazon DynamoDB Data Modeling for Architects Developers
(0.0/ 0 Rating)
Free

Requirements NO programming experience Some experience with AWS Cloud Knowledge of any...

  • 1 Lessons
  • 136 Students
Enroll Now
5027614_0963_2.jpg
beginner
Advanced Microsoft Interactive and Dynamic Excel Dashboard
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 120 Students
Add to Wishlist
beginner
Advanced Microsoft Interactive and Dynamic Excel Dashboard
(0.0/ 0 Rating)
Free

Requirements Have Microsoft Excel installed Excel 2016, 2019 ,2021 or Excel 365...

  • 1 Lessons
  • 120 Students
Enroll Now
4385492_127f_11.jpg
3.5 total hours
beginner
300+ Python Challenges Python Exercises For Beginners 2023
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • Students
Add to Wishlist
beginner
300+ Python Challenges Python Exercises For Beginners 2023
(0.0/ 0 Rating)
Free

Requirements Generally, no need of prerequisites for this course but Basic knowledge...

  • 1 Lessons
  • Students
Enroll Now
images.jpeg
5.5 total hours
beginner
Full Stack GraphQL With Spring boot Kotlin and React Apollo
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 12 Students
Add to Wishlist
beginner
Full Stack GraphQL With Spring boot Kotlin and React Apollo
(0.0/ 0 Rating)
Free

Description Are you someone who want to learn GraphQL with spring boot...

  • 1 Lessons
  • 12 Students
Enroll Now
5347026_30e5_8.jpg
5.5 total hours
intermediate
Creational Design Patterns in C# Demystified
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 123 Students
Add to Wishlist
intermediate
Creational Design Patterns in C# Demystified
(0.0/ 0 Rating)
Free

Requirements Basic proficiency in C# Basic understanding of object-oriented programming Description Are...

  • 1 Lessons
  • 123 Students
Enroll Now
4949340_b597.jpg
7.5 total hours
beginner
Build Omegle Clone from Scratch Webrtc, Socket io, MongoDB
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 363 Students
Add to Wishlist
beginner
Build Omegle Clone from Scratch Webrtc, Socket io, MongoDB
(0.0/ 0 Rating)
Free

Requirements Basic understanding of HTML, CSS, and JavaScript Familiarity with Node js...

  • 1 Lessons
  • 363 Students
Enroll Now
5187038_597d.jpg
7.5 total hours
beginner
Build a Website from Scratch with Kotlin and Jetpack Compose
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 125 Students
Add to Wishlist
beginner
Build a Website from Scratch with Kotlin and Jetpack Compose
(0.0/ 0 Rating)
Free

Requirements Experience with Kotlin programming language Experience with Jetpack Compose UI Toolkit...

  • 1 Lessons
  • 125 Students
Enroll Now
5346218_3790.jpg
5.5 total hours
beginner
Become a Web Developer HTML CSS JavaScript Node etc
(0.0/ 0 Rating)
Free
  • 0 Lessons
  • 14 Students
Add to Wishlist
beginner
Become a Web Developer HTML CSS JavaScript Node etc
(0.0/ 0 Rating)
Free

Requirements The prerequisites are minimal as the course is designed to accommodate...

  • 0 Lessons
  • 14 Students
Enroll Now
5346432_a2d4.jpg
5.5 total hours
intermediate
Advanced WordPress Course for Professionals
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • Students
Add to Wishlist
intermediate
Advanced WordPress Course for Professionals
(0.0/ 0 Rating)
Free

Requirements Basic WordPress Knowledge Understand English Language Description Do you want to...

  • 1 Lessons
  • Students
Enroll Now
1882842_f771_2.jpg
5.5 total hours
beginner
Practical Java Spring Boot REST API with Elasticsearch
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • Students
Add to Wishlist
beginner
Practical Java Spring Boot REST API with Elasticsearch
(0.0/ 0 Rating)
Free

Requirements Familiar with basic Java Programming. You need to know the basic...

  • 1 Lessons
  • Students
Enroll Now
4933788_f9d4_2.jpg
5.5 total hours
beginner
Mega Web Development Course Full stack web application 2023
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 90 Students
Add to Wishlist
beginner
Mega Web Development Course Full stack web application 2023
(0.0/ 0 Rating)
Free

Mega Web Development Course: Full stack web application   By the end...

  • 1 Lessons
  • 90 Students
Enroll Now
1721142438598.png
14 Hours
beginner
Complete React Js Guide – From Fundamentals to Dynamic Apps
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • Students
Add to Wishlist
beginner
Complete React Js Guide – From Fundamentals to Dynamic Apps
(0.0/ 0 Rating)
Free

Class Overview: In this engaging Skillshare course, we’ll delve into the world of...

  • 1 Lessons
  • Students
Enroll Now
hq720.jpg
beginner
Complete Html and Css Web Development Course 2024
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 126 Students
Add to Wishlist
beginner
Complete Html and Css Web Development Course 2024
(0.0/ 0 Rating)
Free

Embark on an immersive journey into web development with our comprehensive HTML...

  • 1 Lessons
  • 126 Students
Enroll Now
10390caea9bb7075e06693faa0174a18
9.5 total hours
Next.js 14 Freelance Services Marketplace App 2024
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 158 Students
Add to Wishlist
Next.js 14 Freelance Services Marketplace App 2024
(0.0/ 0 Rating)
Free

Hello and Welcome to the ‘Next.js 14 Freelancer Marketplace App’ course! Get...

  • 1 Lessons
  • 158 Students
Enroll Now
3913a6597efdf22272720723a650fcc5
2 total hours
Mastering Playwright Test Automation with Typescript
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 25 Students
Add to Wishlist
Mastering Playwright Test Automation with Typescript
(0.0/ 0 Rating)
Free

Embark on a transformative journey into the realms of website testing with...

  • 1 Lessons
  • 25 Students
Enroll Now
840c0dc044f012e60a9d325d7d8d3789
5 total hours
GitHub Copilot – The Complete Guide
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 9630 Students
Add to Wishlist
GitHub Copilot – The Complete Guide
(0.0/ 0 Rating)
Free

*** Aug 2024 update *** Spring and Express projects added Data visualization...

  • 1 Lessons
  • 9630 Students
Enroll Now
d5820c9ac1e35a913ed361c34785bfd2
12 total hours
Web Development is Very Easy: A Crash Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 49 Students
Add to Wishlist
Web Development is Very Easy: A Crash Course
(0.0/ 0 Rating)
Free

Web Development very easy – And is matter fact ! you pay...

  • 1 Lessons
  • 49 Students
Enroll Now
f6b23248a9849b089216a5a6d5e0307e
7 total hours
React, Typescript, Redux Toolkit etc: Create A Youtube Clone
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 37 Students
Add to Wishlist
React, Typescript, Redux Toolkit etc: Create A Youtube Clone
(0.0/ 0 Rating)
Free

Welcome, and thank you for you interest in this course.    ...

  • 1 Lessons
  • 37 Students
Enroll Now
a013443c7791a01032ef0c5ef43b6a95
7 total hours
Healthcare IT Decoded – Data Visualization
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 118 Students
Add to Wishlist
Healthcare IT Decoded – Data Visualization
(0.0/ 0 Rating)
Free

Are you Interested in learning how to create some basics charts in...

  • 1 Lessons
  • 118 Students
Enroll Now
4f2778c31abfdfb99bbf270c139e6fed
3 total hours
Python for Biostatistics: Analyzing Infectious Diseases Data
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3061 Students
Add to Wishlist
Python for Biostatistics: Analyzing Infectious Diseases Data
(0.0/ 0 Rating)
Free

Welcome to Python for Biostatistics: Analyzing Infectious Diseases Data course. This is...

  • 1 Lessons
  • 3061 Students
Enroll Now
66ea1062e799c1fe2b9d3bc755c5892b
5 total hours
Zero to Hero NextJS 14 course for real project development
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3046 Students
Add to Wishlist
Zero to Hero NextJS 14 course for real project development
(0.0/ 0 Rating)
Free

In this course you will learn NextJS 14 along with Bootstrap5. You...

  • 1 Lessons
  • 3046 Students
Enroll Now
ce71c6a93f7c1c11b4ae718d1da887e1
2 total hours
The Complete C Programming Course for Basic to Expert
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 15996 Students
Add to Wishlist
The Complete C Programming Course for Basic to Expert
(0.0/ 0 Rating)
Free

Welcome to “The Complete C Programming Course: From Basic to Expert,” where...

  • 1 Lessons
  • 15996 Students
Enroll Now
b637fb45ee99a0eea32ad076ce5092de
7 total hours
Substance Painter automation with Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 72 Students
Add to Wishlist
Substance Painter automation with Python
(0.0/ 0 Rating)
Free

Welcome to a transformative journey into the world of Substance Painter automation...

  • 1 Lessons
  • 72 Students
Enroll Now
5ac8509c65241ac5c5995bdea96f08a8
29 total hours
Statistics & Probability for Data Science & Machine Learning
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 503 Students
Add to Wishlist
Statistics & Probability for Data Science & Machine Learning
(0.0/ 0 Rating)
Free

This course is designed to get an in-depth knowledge of Statistics and...

  • 1 Lessons
  • 503 Students
Enroll Now
04ff6ac52c9d5e1eadd20e75c3b9acbf
12 total hours
QC101 Quantum Computing & Intro to Quantum Machine Learning
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 15276 Students
Add to Wishlist
QC101 Quantum Computing & Intro to Quantum Machine Learning
(0.0/ 0 Rating)
Free

Welcome to the bestselling quantum computing course on Udemy! Quantum Computing is...

  • 1 Lessons
  • 15276 Students
Enroll Now
7a31e746dd8ac4ffa21c2e82d2fe7b3a
2.5 total hours
Python One Week Warp Up: Python Recap for Next Interview.
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 5004 Students
Add to Wishlist
Python One Week Warp Up: Python Recap for Next Interview.
(0.0/ 0 Rating)
Free

Welcome to “Python One Week Warp Up: Python Recap for Interview”! This...

  • 1 Lessons
  • 5004 Students
Enroll Now
2915ca55112af619892e52f8468443c4
3 total hours
Python 101: Python for absolute beginners
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 15155 Students
Add to Wishlist
Python 101: Python for absolute beginners
(0.0/ 0 Rating)
Free

Hi there, Welcome to Python 101 – your first step to learning...

  • 1 Lessons
  • 15155 Students
Enroll Now
aaaf015c1ec0df33c5eb321e91919843
15.5 total hours
Machine Learning Real World Case Studies | Hands-on Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 10509 Students
Add to Wishlist
Machine Learning Real World Case Studies | Hands-on Python
(0.0/ 0 Rating)
Free

“Data Science and Machine Learning are one of the hottest tech fields...

  • 1 Lessons
  • 10509 Students
Enroll Now
7c63375e6823da7aa117ddb40c8790df
4.5 total hours
Object Oriented Programming and Design Crash Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 461 Students
Add to Wishlist
Object Oriented Programming and Design Crash Course
(0.0/ 0 Rating)
Free

Most top programming languages today support Object Oriented Programming: Python, Java, TypeScript, etc....

  • 1 Lessons
  • 461 Students
Enroll Now
36a4f22d8fa180f3add5f6e2ddd5e157
4 total hours
NumPy Python Programming Language Library from Scratch A-Z
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 270 Students
Add to Wishlist
NumPy Python Programming Language Library from Scratch A-Z
(0.0/ 0 Rating)
Free

Hello there, Welcome to NumPy Python Programming Language Library from Scratch A-Z...

  • 1 Lessons
  • 270 Students
Enroll Now
7ce6e8375257c349a0774e5b216dde66
5 total hours
Node, SQL, & PostgreSQL – Mastering Backend Web Development
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 8506 Students
Add to Wishlist
Node, SQL, & PostgreSQL – Mastering Backend Web Development
(0.0/ 0 Rating)
Free

Become an in demand software engineer by taking this course on Node,...

  • 1 Lessons
  • 8506 Students
Enroll Now
a58807a9a5d53ac0356c84740339701d
4.5 total hours
Next.js 15 Authentication: NextAuth, TypeScript, MailTrap
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 22 Students
Add to Wishlist
Next.js 15 Authentication: NextAuth, TypeScript, MailTrap
(0.0/ 0 Rating)
Free

Hello , Welcome to the Next JS Authentication course. In this comprehensive...

  • 1 Lessons
  • 22 Students
Enroll Now
bc272f07ff51705e6595875119ee9ecd
15.5 total hours
Next JS: The Complete Developer’s Guide
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 15409 Students
Add to Wishlist
Next JS: The Complete Developer’s Guide
(0.0/ 0 Rating)
Free

Congratulations! You’re on the brink of entering the fast-evolving world of NextJS,...

  • 1 Lessons
  • 15409 Students
Enroll Now
3542f9b919a42b207cd106fc0e84d941
13.5 total hours
MERN From Scratch 2023 | eCommerce Platform
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 31516 Students
Add to Wishlist
MERN From Scratch 2023 | eCommerce Platform
(0.0/ 0 Rating)
Free

This is a single-project course, meaning that we spend almost 13 hours...

  • 1 Lessons
  • 31516 Students
Enroll Now
50fbc8e05ec6375182fb3169e5086155
10 total hours
Master Python for Data Handling [2024]
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 226 Students
Add to Wishlist
Master Python for Data Handling [2024]
(0.0/ 0 Rating)
Free

This video course will teach you to master Python 3, one of...

  • 1 Lessons
  • 226 Students
Enroll Now
84b4317b0dd2f359c2033cc02958f443
6 total hours
Master Git and GitHub in 5 Days: Go from Zero to Hero
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 17196 Students
Add to Wishlist
Master Git and GitHub in 5 Days: Go from Zero to Hero
(0.0/ 0 Rating)
Free

Understanding how to use Git and GitHub is now a basic requirement...

  • 1 Lessons
  • 17196 Students
Enroll Now
6c324a6f12399e40d232c4f8079c132a
14.5 total hours
Let’s Learn Laravel: A Guided Path For Beginners
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 5085 Students
Add to Wishlist
Let’s Learn Laravel: A Guided Path For Beginners
(0.0/ 0 Rating)
Free

Learn the incredibly popular and in demand Laravel framework. There are countless...

  • 1 Lessons
  • 5085 Students
Enroll Now
b1d2e596e1c23f930559a8e9e4dea0d6
1 total hour
Learn to Solve Algebraic Equations Recursively in Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 47 Students
Add to Wishlist
Learn to Solve Algebraic Equations Recursively in Python
(0.0/ 0 Rating)
Free

This course is designed for learners of all levels who want to...

  • 1 Lessons
  • 47 Students
Enroll Now
6744fa001560386ba8a53160d3a028b1
7 total hours
Learn the MERN Stack with TypeScript
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 12 Students
Add to Wishlist
Learn the MERN Stack with TypeScript
(0.0/ 0 Rating)
Free

In todays age in technology it is important to always stay current...

  • 1 Lessons
  • 12 Students
Enroll Now
679f6331da3d7304170955101be92c90
1 total hour
Learn Python in One Hour – Complete Introduction to Basics
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 2115 Students
Add to Wishlist
Learn Python in One Hour – Complete Introduction to Basics
(0.0/ 0 Rating)
Free

Welcome to this comprehensive Python crash-course, where you’ll discover the key skills...

  • 1 Lessons
  • 2115 Students
Enroll Now
a422bb493287ef163338a4f23c89d156
15 total hours
Learn Livewire V3 from Scratch : Practical Course
(0.0/ 0 Rating)
$50
  • 1 Lessons
  • 93 Students
Add to Wishlist
Learn Livewire V3 from Scratch : Practical Course
(0.0/ 0 Rating)
$50

In this course, we will be Learning Laravel Livewire v3 (A tool...

  • 1 Lessons
  • 93 Students
Enroll Now
5cea813bec2a83e371ae989dca3c21c1
3 total hours
Laravel Jetstream B2B Project Setup
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 4929 Students
Add to Wishlist
Laravel Jetstream B2B Project Setup
(0.0/ 0 Rating)
Free

ATTENTION! THIS COURSE IS NOT FINISHED YET. THERE WILL BE MORE LECTURES....

  • 1 Lessons
  • 4929 Students
Enroll Now
0d724598115eaf6e75d5028a306d9862
1 total hour
Laravel Filament Bootcamp
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 9 Students
Add to Wishlist
Laravel Filament Bootcamp
(0.0/ 0 Rating)
Free

My name is Arturo and I have more than 20 years of...

  • 1 Lessons
  • 9 Students
Enroll Now
9945a77aebdbe4138edb09c011a62a7f
18 total hours
Laravel 10 – Mastery Course with Projects
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 30 Students
Add to Wishlist
Laravel 10 – Mastery Course with Projects
(0.0/ 0 Rating)
Free

Laravel Mastery Course with Projects Are you ready to embark on a...

  • 1 Lessons
  • 30 Students
Enroll Now
2465aec0a10b7d3f0d3716336e01746f
6 total hours
JavaScript 10 Projects in 10 Days Course for Beginners
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 36616 Students
Add to Wishlist
JavaScript 10 Projects in 10 Days Course for Beginners
(0.0/ 0 Rating)
Free

Are you eager to embark on a journey to master the fundamentals...

  • 1 Lessons
  • 36616 Students
Enroll Now
7207749b10e6976b1ee8de6ceb0f039b
3 total hours
JavaScript : Understanding all the parts
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3775 Students
Add to Wishlist
JavaScript : Understanding all the parts
(0.0/ 0 Rating)
Free

Javascript is the language that modern developers need to know, and know...

  • 1 Lessons
  • 3775 Students
Enroll Now
a0791c5b0bb66c74e2fe4476dc8a54dc
4 total hours
Introduction to Engineering Computing with MatLab
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 2 Students
Add to Wishlist
Introduction to Engineering Computing with MatLab
(0.0/ 0 Rating)
Free

This course is designed for people who want to step in to...

  • 1 Lessons
  • 2 Students
Enroll Now
7aff1eadb6a2d0b70b76dffa7406bc29
7.5 total hours
Intro To MIT App Inventor: Make No Code Mobile Apps
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 8 Students
Add to Wishlist
Intro To MIT App Inventor: Make No Code Mobile Apps
(0.0/ 0 Rating)
Free

Welcome to the “Intro To MIT App Inventor”  course, a course that...

  • 1 Lessons
  • 8 Students
Enroll Now
fbdd7f62f23b3bf51eda29c60322f1f8
3 total hours
Flutter Beginner Tutorial – Build own App
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 37561 Students
Add to Wishlist
Flutter Beginner Tutorial – Build own App
(0.0/ 0 Rating)
Free

First part of the series talks about the basics of dart so...

  • 1 Lessons
  • 37561 Students
Enroll Now
f72e5deeb67b307bc01e6074fb7f6616
2 total hours
Flutter – Concurrency & Parallelism
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 108 Students
Add to Wishlist
Flutter – Concurrency & Parallelism
(0.0/ 0 Rating)
Free

In the beginner friendly course we will learn about the Concurrency &...

  • 1 Lessons
  • 108 Students
Enroll Now
f7d4c4a53594955529abbeace6214bc1
3.5 total hours
Create a Mobile Game Like Geometry Dash in Unity
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 145 Students
Add to Wishlist
Create a Mobile Game Like Geometry Dash in Unity
(0.0/ 0 Rating)
Free

Hey There ! Before reading this description, go have a look at...

  • 1 Lessons
  • 145 Students
Enroll Now
8140da3fa9ae34fb7b708fae11196bfb
9 total hours
Complete Microsoft SQL Server from Scratch: Bootcamp
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 6207 Students
Add to Wishlist
Complete Microsoft SQL Server from Scratch: Bootcamp
(0.0/ 0 Rating)
Free

Learn SQL, The first step to MSSQL Microsoft SQL Server you need...

  • 1 Lessons
  • 6207 Students
Enroll Now
7654a7820ddf64f530eeb5e021f84e8d
43.5 total hours
Complete Python for Data Science & Machine Learning from A-Z
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 691 Students
Add to Wishlist
Complete Python for Data Science & Machine Learning from A-Z
(0.0/ 0 Rating)
Free

Welcome to my “ Complete Python for Data Science & Machine Learning...

  • 1 Lessons
  • 691 Students
Enroll Now
dd1ee6b6201c3c7a570f694d146dd244
8 total hours
Cluster Analysis and Unsupervised Machine Learning in Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 28656 Students
Add to Wishlist
Cluster Analysis and Unsupervised Machine Learning in Python
(0.0/ 0 Rating)
Free

Cluster analysis is a staple of unsupervised machine learning and data science....

  • 1 Lessons
  • 28656 Students
Enroll Now
d0ae935c96dca00781f1bf9da7934851
12 total hours
ChatGPT Accelerated Python: Complete Python Guide 2024
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 5832 Students
Add to Wishlist
ChatGPT Accelerated Python: Complete Python Guide 2024
(0.0/ 0 Rating)
Free

Do you want to learn how to use Python and ChatGPT faster...

  • 1 Lessons
  • 5832 Students
Enroll Now
ff7840f1e7aa4eeda194b20b38388982
1.5 total hours
Build An API With The Django Rest Framework Using Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 7729 Students
Add to Wishlist
Build An API With The Django Rest Framework Using Python
(0.0/ 0 Rating)
Free

Building your own API with Django and Python can seem overwhelming at...

  • 1 Lessons
  • 7729 Students
Enroll Now
e58efb192657ee1bfeaef48aabc9abc7
5 total hours
Build a Generative AI Micro-SaaS App with Python & Streamlit
(0.0/ 0 Rating)
$24.99$10
  • 1 Lessons
  • 1144 Students
Add to Wishlist
Build a Generative AI Micro-SaaS App with Python & Streamlit
(0.0/ 0 Rating)
$24.99$10

Unlock the potential of Python and Streamlit to create and monetize your...

  • 1 Lessons
  • 1144 Students
Enroll Now
c595c9291176b2d9fa021224168d0472
7.5 total hours
ASP.NET Core – Cross-Platform Development
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 99316 Students
Add to Wishlist
ASP.NET Core – Cross-Platform Development
(0.0/ 0 Rating)
Free

Overview ASP.NET Core MVC is a powerful, flexible framework for building modern...

  • 1 Lessons
  • 99316 Students
Enroll Now
05b799db1ec25150e53b51e5a0161bb0
2 total hours
AI SaaS App: AstroJS + Firebase, Stripe, TailwindCSS, Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 4142 Students
Add to Wishlist
AI SaaS App: AstroJS + Firebase, Stripe, TailwindCSS, Python
(0.0/ 0 Rating)
Free

This course is good if you already know some programming and want...

  • 1 Lessons
  • 4142 Students
Enroll Now
45639b933019f0cacc8f6d9620aace3e
3 total hours
Advanced HTML 5 – Web and Game Development
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3477 Students
Add to Wishlist
Advanced HTML 5 – Web and Game Development
(0.0/ 0 Rating)
Free

Every single website uses HTML – even this very course landing page!...

  • 1 Lessons
  • 3477 Students
Enroll Now
31780665dd3524553c035236e2f369ed
6 total hours
Accelerated ES6 JavaScript Training
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 33707 Students
Add to Wishlist
Accelerated ES6 JavaScript Training
(0.0/ 0 Rating)
Free

​Learn modern JavaScript today! Knowing modern JavaScript, ES6 (ECMAScript 6), is extremely...

  • 1 Lessons
  • 33707 Students
Enroll Now
9dc5d096b61628c716889d51a3465f97
32 total hours
Python and Django Full Stack Web Developer Bootcamp
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 213119 Students
Add to Wishlist
Python and Django Full Stack Web Developer Bootcamp
(0.0/ 0 Rating)
Free

Welcome to the Python and Django Full Stack Web Developer Bootcamp! In this...

  • 1 Lessons
  • 213119 Students
Enroll Now
23897cab9fcd61cac74265dfa5ce0918
4.5 total hours
Master Express Framework Examples Node.Js – Zero to Advanced
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3179 Students
Add to Wishlist
Master Express Framework Examples Node.Js – Zero to Advanced
(0.0/ 0 Rating)
Free

Are you familiar with Express Framework and programming in general, or have...

  • 1 Lessons
  • 3179 Students
Enroll Now
5fd9518611c276114d719444874d302e
17 total hours
The Complete Front-End Web Development Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 427591 Students
Add to Wishlist
The Complete Front-End Web Development Course
(0.0/ 0 Rating)
Free

If you would like to learn web development and get a job...

  • 1 Lessons
  • 427591 Students
Enroll Now
64bd3284846be82726001cb618da8c28
17.5 total hours
The Complete Rust Programming Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 6936 Students
Add to Wishlist
The Complete Rust Programming Course
(0.0/ 0 Rating)
Free

Welcome to the biggest and most comprehensive Rust programming language course on...

  • 1 Lessons
  • 6936 Students
Enroll Now
a0404e7c976e7ec1d20511f81d753a64
26.5 total hours
The Complete Machine Learning Course: From Zero to Expert!
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1490 Students
Add to Wishlist
The Complete Machine Learning Course: From Zero to Expert!
(0.0/ 0 Rating)
Free

You’ve just stumbled upon the most complete, in-depth Machine Learning course online....

  • 1 Lessons
  • 1490 Students
Enroll Now
77fec178f6d3664e7d35f53a635d1ff1
3.5 total hours
The Complete ChatGPT Web Development Code Along – Javascript
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 5175 Students
Add to Wishlist
The Complete ChatGPT Web Development Code Along – Javascript
(0.0/ 0 Rating)
Free

The Complete ChatGPT Web Development Fullstack – JavaScript Learn how to build...

  • 1 Lessons
  • 5175 Students
Enroll Now
fb311f02fcbc5061e5e87bee9547ad81
44 total hours
Python for Machine Learning & Data Science Masterclass
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 111931 Students
Add to Wishlist
Python for Machine Learning & Data Science Masterclass
(0.0/ 0 Rating)
Free

This is the most complete course online for learning about Python, Data...

  • 1 Lessons
  • 111931 Students
Enroll Now
617c0370ea0937e4b65e700995204bcb
5.5 total hours
Practical Database Design – Blog Schema
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 280 Students
Add to Wishlist
Practical Database Design – Blog Schema
(0.0/ 0 Rating)
Free

Databases or relational database systems have always been a subject with a...

  • 1 Lessons
  • 280 Students
Enroll Now
31641b17632417b8cfc8f5e3c536038e
11.5 total hours
NodeJs API Project: School Management System API course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 5159 Students
Add to Wishlist
NodeJs API Project: School Management System API course
(0.0/ 0 Rating)
Free

The “Nodejs School Management System API course” is a comprehensive and hands-on...

  • 1 Lessons
  • 5159 Students
Enroll Now
40419e2613cad282c48db94af4948746
3 total hours
neural networks for sentiment and stock price prediction
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1749 Students
Add to Wishlist
neural networks for sentiment and stock price prediction
(0.0/ 0 Rating)
Free

Let’s dive into data science with python and predict stock prices  and...

  • 1 Lessons
  • 1749 Students
Enroll Now
336f89c244e37a37a0ff30ebac946e02
13.5 total hours
JavaScript Projects Course Build 20 Projects in 20 Days
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 34563 Students
Add to Wishlist
JavaScript Projects Course Build 20 Projects in 20 Days
(0.0/ 0 Rating)
Free

Welcome to our comprehensive web development course, where you’ll embark on an...

  • 1 Lessons
  • 34563 Students
Enroll Now
c1d48afe13a7350c4205f7f98deb66e3
8 total hours
JavaScript for Beginners – Learn with 6 main projects!
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 14146 Students
Add to Wishlist
JavaScript for Beginners – Learn with 6 main projects!
(0.0/ 0 Rating)
Free

Hello fellow developer!  Welcome to JavaScript for Beginners! Here’s a little information about...

  • 1 Lessons
  • 14146 Students
Enroll Now
b140ddd103d32744432d5020e5f5029b
4.5 total hours
CSS, Bootstrap ,JavaScript, PHP Full Stack Crash Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 61467 Students
Add to Wishlist
CSS, Bootstrap ,JavaScript, PHP Full Stack Crash Course
(0.0/ 0 Rating)
Free

Learn CSS and Bootstrap and Javascript and PHP  all in one crash...

  • 1 Lessons
  • 61467 Students
Enroll Now
231028f876be257b79f5ebd0e0f955e4
1 total hour
Python Crash Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 11955 Students
Add to Wishlist
Python Crash Course
(0.0/ 0 Rating)
Free

Do you want to be a programmer? Learn how to program in...

  • 1 Lessons
  • 11955 Students
Enroll Now
c7d3f1a44bdc929b30d71ba9e2cf0be1
31 total hours
The Complete Python Developer
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 221947 Students
Add to Wishlist
The Complete Python Developer
(0.0/ 0 Rating)
Free

It’s time to become a modern and complete Python developer! Join a...

  • 1 Lessons
  • 221947 Students
Enroll Now
2aea597edf463b5b70dcf751a7d7c985
67 total hours
Build an app with ASPNET Core and Angular from scratch
(0.0/ 0 Rating)
$124.99$17
  • 1 Lessons
  • 107802 Students
Add to Wishlist
Build an app with ASPNET Core and Angular from scratch
(0.0/ 0 Rating)
$124.99$17

This course has been refreshed and completely updated for .Net 8.0 and...

  • 1 Lessons
  • 107802 Students
Enroll Now
a17f5f66eba97707acdda5b734cddde7
10.5 total hours
beginner to advanced – how to become a data scientist
(0.0/ 0 Rating)
$49.99$10
  • 1 Lessons
  • 914 Students
Add to Wishlist
beginner to advanced – how to become a data scientist
(0.0/ 0 Rating)
$49.99$10

So you want to become a data scientist hm? But you do...

  • 1 Lessons
  • 914 Students
Enroll Now
ef1edc9cfc5c16f5886732789e4cbf6d
6.5 total hours
Amazon DynamoDB Data Modeling for Architects & Developers
(0.0/ 0 Rating)
$54.99$10
  • 1 Lessons
  • 2089 Students
Add to Wishlist
Amazon DynamoDB Data Modeling for Architects & Developers
(0.0/ 0 Rating)
$54.99$10

Note: This course does NOT use AWS console for showing you basic DynamoDB operations...

  • 1 Lessons
  • 2089 Students
Enroll Now
8b3aa7dce1987592cc3957fba0538d00
12 total hours
The Complete Python Developer Certification Course
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 20715 Students
Add to Wishlist
The Complete Python Developer Certification Course
(0.0/ 0 Rating)
Free

LAST UPDATED: November 2023 (Added 2 New Python HW Projects) Getting certified as a Python developer...

  • 1 Lessons
  • 20715 Students
Enroll Now
77265b138b5675ca6d1bd5aa1c90b849
7.5 total hours
Python-Introduction to Data Science and Machine learning A-Z
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 297147 Students
Add to Wishlist
Python-Introduction to Data Science and Machine learning A-Z
(0.0/ 0 Rating)
Free

Learning how to program in Python is not always easy especially if...

  • 1 Lessons
  • 297147 Students
Enroll Now
80c2f287633db900fbdab86c6492fe54
2.5 total hours
Python Typer Crash Course: Build beautiful CLI & Package
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 92 Students
Add to Wishlist
Python Typer Crash Course: Build beautiful CLI & Package
(0.0/ 0 Rating)
Free

Course Overview: Welcome to “Mastering Python Typer,” a comprehensive course designed to...

  • 1 Lessons
  • 92 Students
Enroll Now
5d4f25e6840d6c0fdf8bca0c03f95e85
13.5 total hours
Python GUI Development with PySide6 – Qt for Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 488 Students
Add to Wishlist
Python GUI Development with PySide6 – Qt for Python
(0.0/ 0 Rating)
Free

Hello Students Welcome to Python GUI Development with PySide6 – Qt for...

  • 1 Lessons
  • 488 Students
Enroll Now
18fb9020377a9cc06e791ee3c0bd288e
8 total hours
Pure Python Programming: Rapid Learning for Quick Results
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 28 Students
Add to Wishlist
Pure Python Programming: Rapid Learning for Quick Results
(0.0/ 0 Rating)
Free

This Python programming course stands out as the optimal choice for learners...

  • 1 Lessons
  • 28 Students
Enroll Now
46d4089291eb27cdd37cbb3fb7d2f72e
4 total hours
OpenAI Assistants with OpenAI Python API
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 2789 Students
Add to Wishlist
OpenAI Assistants with OpenAI Python API
(0.0/ 0 Rating)
Free

Unleash the Power of AI in Your Applications with Our Exclusive OpenAI...

  • 1 Lessons
  • 2789 Students
Enroll Now
6f54fa155c17ad87caf3e3fa1ce9f58e
2 total hours
Machine Learning Full Course for Absolute Beginners
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 13 Students
Add to Wishlist
Machine Learning Full Course for Absolute Beginners
(0.0/ 0 Rating)
Free

Machine Learning Full Course: for Absolute Beginners is a comprehensive course designed...

  • 1 Lessons
  • 13 Students
Enroll Now
17da37c083847a94efbdab73566bc3c1
5.5 total hours
Machine Learning and Deep Learning Projects in Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 20968 Students
Add to Wishlist
Machine Learning and Deep Learning Projects in Python
(0.0/ 0 Rating)
Free

Machine learning and Deep learning have revolutionized various industries by enabling the...

  • 1 Lessons
  • 20968 Students
Enroll Now
2244bab7bbbc56ed34ad795900ddec4c
7.5 total hours
Learn to Create a Multiplayer shooter in Unity using Netick
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 209 Students
Add to Wishlist
Learn to Create a Multiplayer shooter in Unity using Netick
(0.0/ 0 Rating)
Free

Greetings, fellow indie game developer! If you’re keen on mastering the creation...

  • 1 Lessons
  • 209 Students
Enroll Now
6ea7801368a4245a06f4e0bc6ccea5f1
5 total hours
Learn Machine Learning Algorithms with Jax
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 36 Students
Add to Wishlist
Learn Machine Learning Algorithms with Jax
(0.0/ 0 Rating)
Free

Jax is a Python library developed by Google in 2018 and is...

  • 1 Lessons
  • 36 Students
Enroll Now
908f03c1c8426ddfa5c52ba29707f287
12.5 total hours
JavaScript: Understanding the Weird Parts (2024 Edition)
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 192668 Students
Add to Wishlist
JavaScript: Understanding the Weird Parts (2024 Edition)
(0.0/ 0 Rating)
Free

Javascript is the language that modern developers need to know, and know...

  • 1 Lessons
  • 192668 Students
Enroll Now
abdb6b6bc8db8576b5e29c3f9f523ff7
10 total hours
Java Application Performance Tuning and Memory Management
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 35471 Students
Add to Wishlist
Java Application Performance Tuning and Memory Management
(0.0/ 0 Rating)
Free

In this course we’ll understand what can cause performance issues in our...

  • 1 Lessons
  • 35471 Students
Enroll Now
b62db2d3e71c56145b713f80b4e020ae
4 total hours
Introduction to Backend development with Kotlin & Micronaut
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 62 Students
Add to Wishlist
Introduction to Backend development with Kotlin & Micronaut
(0.0/ 0 Rating)
Free

In this course, you will learn how to use Micronaut and Kotlin...

  • 1 Lessons
  • 62 Students
Enroll Now
8d97f942ee0f9968915ac219d23b3bb6
2 total hours
Django x Vue.js: Learn how to integrate Django with Vue.js
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3134 Students
Add to Wishlist
Django x Vue.js: Learn how to integrate Django with Vue.js
(0.0/ 0 Rating)
Free

Django is one of the most popular backend web application frameworks that...

  • 1 Lessons
  • 3134 Students
Enroll Now
5e730757fd382b46481bea25646a9ece
8 total hours
Django Celery Mastery: Python Asynchronous Task Processing
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1928 Students
Add to Wishlist
Django Celery Mastery: Python Asynchronous Task Processing
(0.0/ 0 Rating)
Free

In today’s fast-paced web development landscape, efficiently handling time-consuming and resource-intensive tasks...

  • 1 Lessons
  • 1928 Students
Enroll Now
ed2e6696c3b3fff7430060954930a64d
53.5 total hours
Laravel 10 Build Complete Learning Management System LMS A-Z
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1340 Students
Add to Wishlist
Laravel 10 Build Complete Learning Management System LMS A-Z
(0.0/ 0 Rating)
Free

Laravel 10 Build Complete Learning Management System LMS A-Z Welcome to Learning...

  • 1 Lessons
  • 1340 Students
Enroll Now
f5ea7231d78d2094723355696e0271ea
3.5 total hours
Data Analytics with R from Scratch – Beginner
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 4517 Students
Add to Wishlist
Data Analytics with R from Scratch – Beginner
(0.0/ 0 Rating)
Free

Your journey will start with the theoretical background of object and data...

  • 1 Lessons
  • 4517 Students
Enroll Now
2fd7c42b72afb692e64db67481ba5995
2.5 total hours
Create your first 3 fully apps with .NET MAUI
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3021 Students
Add to Wishlist
Create your first 3 fully apps with .NET MAUI
(0.0/ 0 Rating)
Free

Do you want to get into the world of multi-platform development but...

  • 1 Lessons
  • 3021 Students
Enroll Now
26737d865b0b652b30de7c1bad26dae3
4.5 total hours
Cluster Analysis & Unsupervised Machine Learning in R
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 4682 Students
Add to Wishlist
Cluster Analysis & Unsupervised Machine Learning in R
(0.0/ 0 Rating)
Free

Here’s why enrolling in this course is a smart choice: This comprehensive...

  • 1 Lessons
  • 4682 Students
Enroll Now
d0f2ef431fcbf6bdcb61ea8612f79b05
2 total hours
ChatGPT Clone using React.js
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 23 Students
Add to Wishlist
ChatGPT Clone using React.js
(0.0/ 0 Rating)
Free

Course Title: ChatGPT Clone using React.js Become a skilled developer by creating...

  • 1 Lessons
  • 23 Students
Enroll Now
6f71fec073ebea98f3ccb78e656c6cf3
10 total hours
Building an Enterprise Application with ASP.NET Core MVC
(0.0/ 0 Rating)
$89.99$12
  • 1 Lessons
  • 8126 Students
Add to Wishlist
Building an Enterprise Application with ASP.NET Core MVC
(0.0/ 0 Rating)
$89.99$12

Building an Enterprise Application with ASP.NET Core MVC For those with basic...

  • 1 Lessons
  • 8126 Students
Enroll Now
44befb3a67a949f86c9be20bd1f6a34f
2.5 total hours
Build Lexica Art Clone Using HTML,CSS,JS +PHP
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 9 Students
Add to Wishlist
Build Lexica Art Clone Using HTML,CSS,JS +PHP
(0.0/ 0 Rating)
Free

Learn how to build a Lexica Art clone using HTML, CSS, JavaScript,...

  • 1 Lessons
  • 9 Students
Enroll Now
9f2c1e7a951c200f3d2d5634e291cee2
7.5 total hours
ASP.NET Core MVC – Build an E-Commerce Web Application 2024
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 208 Students
Add to Wishlist
ASP.NET Core MVC – Build an E-Commerce Web Application 2024
(0.0/ 0 Rating)
Free

This course is for Beginners to ASP.NET having some knowledge of C#...

  • 1 Lessons
  • 208 Students
Enroll Now
454e3d9f7c881d76521f40496d5b4284
6.5 total hours
ASP.NET Core – Cloud-Native App Development
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 394 Students
Add to Wishlist
ASP.NET Core – Cloud-Native App Development
(0.0/ 0 Rating)
$54.99$14

Welcome to the comprehensive and hands-on course ASP.NET Core – Cloud-Native App...

  • 1 Lessons
  • 394 Students
Enroll Now
17b329ee4c27c60a144fbcfcfed1b7d9
9.5 total hours
ASP.NET CORE | Build a Complete URL Shortener App
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 326 Students
Add to Wishlist
ASP.NET CORE | Build a Complete URL Shortener App
(0.0/ 0 Rating)
Free

Want to learn how to build awesome web application with ASPNET? This...

  • 1 Lessons
  • 326 Students
Enroll Now
51a342fd337d279e413711da0ee36904
2.5 total hours
Airline Booking System React .NET 6, Auth0
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 301 Students
Add to Wishlist
Airline Booking System React .NET 6, Auth0
(0.0/ 0 Rating)
Free

Welcome to our comprehensive course on building a cutting-edge airline booking system...

  • 1 Lessons
  • 301 Students
Enroll Now
14603e62d50ee7f65f4f2e957a90090a
7 total hours
A Foundation For Machine Learning and Data Science
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 8 Students
Add to Wishlist
A Foundation For Machine Learning and Data Science
(0.0/ 0 Rating)
Free

This course is designed by an industry expert who has over 2...

  • 1 Lessons
  • 8 Students
Enroll Now
06f043b19ba409704a01bad0cd160e86
9.5 total hours
Vue | Vue Js Web Development Course with Real Vuejs Projects
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 426 Students
Add to Wishlist
Vue | Vue Js Web Development Course with Real Vuejs Projects
(0.0/ 0 Rating)
Free

Hi there, Welcome to Vue | Vue Js “Web Development Course with...

  • 1 Lessons
  • 426 Students
Enroll Now
5ef6c578bfabc707576edc46fb83a73a
4.5 total hours
Spring Boot + Apache Kafka Course – The Practical Guide
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 4611 Students
Add to Wishlist
Spring Boot + Apache Kafka Course – The Practical Guide
(0.0/ 0 Rating)
Free

Sample of the reviews: “Awesome. I enjoyed every bit of the lecture....

  • 1 Lessons
  • 4611 Students
Enroll Now
d758fabb4059f7a39f26352fc846477b
8 total hours
DYDX Pairs Trading Bot Build in Python Running in the Cloud
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 2060 Students
Add to Wishlist
DYDX Pairs Trading Bot Build in Python Running in the Cloud
(0.0/ 0 Rating)
Free

Learn how to interact with the DYDX Layer 2 Ethereum trading exchange...

  • 1 Lessons
  • 2060 Students
Enroll Now
b0285d2b81e396fd6cfec0d0bfb61e12
20.5 total hours
Django DRF Project: eCommerce RESTful API
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1759 Students
Add to Wishlist
Django DRF Project: eCommerce RESTful API
(0.0/ 0 Rating)
Free

Developing applications can be a fun and effective way of learning a...

  • 1 Lessons
  • 1759 Students
Enroll Now
33b41067462450388cf4263e53d179c8
4.5 total hours
Unit Testing in Node.js with Jest – e2e Testing & more
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 287 Students
Add to Wishlist
Unit Testing in Node.js with Jest – e2e Testing & more
(0.0/ 0 Rating)
Free

If you have any confusion or question about Unit testing in your...

  • 1 Lessons
  • 287 Students
Enroll Now
34279d385bf93b3a95da2ae134c95116
22 total hours
Mega Web Development Course: Full stack web application 2023
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 12411 Students
Add to Wishlist
Mega Web Development Course: Full stack web application 2023
(0.0/ 0 Rating)
Free

Mega Web Development Course: Full stack web application By the end of...

  • 1 Lessons
  • 12411 Students
Enroll Now
f7428a156d48a2457b87620e8c162a41
3 total hours
Learn Python From The Scratch and prepare with Projects
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3004 Students
Add to Wishlist
Learn Python From The Scratch and prepare with Projects
(0.0/ 0 Rating)
Free

Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language. It...

  • 1 Lessons
  • 3004 Students
Enroll Now
c718fe7e55cadb008aa1c2741972eb90
2 total hours
Intro To MySQL With Node.js – Learn To Use MySQL with Node!
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 4283 Students
Add to Wishlist
Intro To MySQL With Node.js – Learn To Use MySQL with Node!
(0.0/ 0 Rating)
Free

These days everything uses a database, and MySQL is one of the...

  • 1 Lessons
  • 4283 Students
Enroll Now
4bf471c3ce680a46597f12c419a80a39
13.5 total hours
Display and analyze GIS data on the web with Leaflet
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 4925 Students
Add to Wishlist
Display and analyze GIS data on the web with Leaflet
(0.0/ 0 Rating)
Free

“This is a great and advanced web mapping application course to solve...

  • 1 Lessons
  • 4925 Students
Enroll Now
bfe9338592af491d3f9e0919efdb0fb6
25.5 total hours
Computer Vision Masterclass
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 33395 Students
Add to Wishlist
Computer Vision Masterclass
(0.0/ 0 Rating)
Free

Computer Vision is a subarea of Artificial Intelligence focused on creating systems...

  • 1 Lessons
  • 33395 Students
Enroll Now
69a0fe4e37eb9d24930d1542145bf7d3
1 total hour
Build Kotlin Multiplatform Mobile Apps for iOS and Android
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 366 Students
Add to Wishlist
Build Kotlin Multiplatform Mobile Apps for iOS and Android
(0.0/ 0 Rating)
Free

Welcome to the future of mobile development. This is a short and...

  • 1 Lessons
  • 366 Students
Enroll Now
0beaef382106371265d602bfc872e397
5 total hours
Boost Your Website Performance – The Practical Guide
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 211 Students
Add to Wishlist
Boost Your Website Performance – The Practical Guide
(0.0/ 0 Rating)
Free

You’re here because you have a website with pages loading slowly and...

  • 1 Lessons
  • 211 Students
Enroll Now
154ebba711db0f124802bf801722ef5f
36.5 total hours
Android Jetpack Compose: The Comprehensive Bootcamp
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 14920 Students
Add to Wishlist
Android Jetpack Compose: The Comprehensive Bootcamp
(0.0/ 0 Rating)
Free

**This course is tailored for beginners and Advanced Developers** Android Jetpack Compose...

  • 1 Lessons
  • 14920 Students
Enroll Now
03943c6072b5c1b1a3cbf6aa07b5828a
12.5 total hours
70+ JavaScript Challenges: Data Structures & Algorithms
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 5079 Students
Add to Wishlist
70+ JavaScript Challenges: Data Structures & Algorithms
(0.0/ 0 Rating)
Free

Most of my students know me for my practical, project-based courses and...

  • 1 Lessons
  • 5079 Students
Enroll Now
95899b17052168134648e242cb9fbdcf
3.5 total hours
Web Development Basics(Beginner level)
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3 Students
Add to Wishlist
Web Development Basics(Beginner level)
(0.0/ 0 Rating)
Free

The course covers the fundamental ideas of web development as well as...

  • 1 Lessons
  • 3 Students
Enroll Now
6d63495f60d6e2366ae394ba9af59a60
4.5 total hours
The Ultimate Beginners Guide to ChatGPT and DALL-E
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 107 Students
Add to Wishlist
The Ultimate Beginners Guide to ChatGPT and DALL-E
(0.0/ 0 Rating)
Free

This course provides a detailed guide to exploring and understanding ChatGPT, an...

  • 1 Lessons
  • 107 Students
Enroll Now
14405224d9c3606c3964d0f1c052ed5b
16.5 total hours
The Complete Lua Programming Course: From Zero to Expert!
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1453 Students
Add to Wishlist
The Complete Lua Programming Course: From Zero to Expert!
(0.0/ 0 Rating)
Free

You’ve just stumbled upon the most complete, in-depth Lua programming course online....

  • 1 Lessons
  • 1453 Students
Enroll Now
c2008a19c06dacb4a8c6cd459f22a8cb
3 total hours
Next.js: The Complete Beginner’s Guide
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 42 Students
Add to Wishlist
Next.js: The Complete Beginner’s Guide
(0.0/ 0 Rating)
Free

If you’re looking to learn all the core techniques of Next.js to...

  • 1 Lessons
  • 42 Students
Enroll Now
e664e206b70809e65258f394a81e03e4
20.5 total hours
Mastering x86-64 Real Assembly Language from Zero | ASM+
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 30696 Students
Add to Wishlist
Mastering x86-64 Real Assembly Language from Zero | ASM+
(0.0/ 0 Rating)
Free

Embark on a Transformational Journey into Assembly Language Mastery Welcome to the...

  • 1 Lessons
  • 30696 Students
Enroll Now
9b301a9ce78b473c44e78d2dd97f12cb
7.5 total hours
Git & GitHub Masterclass: The Practical Bootcamp
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3732 Students
Add to Wishlist
Git & GitHub Masterclass: The Practical Bootcamp
(0.0/ 0 Rating)
Free

Welcome To Git And GitHub Masterclass, one single course to start your...

  • 1 Lessons
  • 3732 Students
Enroll Now
54e1410e9da8c81dfa9924e268e75c65
2 total hours
Unlocking the Power of ChatGPT in Data Science : A-Z Guide
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 30676 Students
Add to Wishlist
Unlocking the Power of ChatGPT in Data Science : A-Z Guide
(0.0/ 0 Rating)
Free

As data scientists, we know the importance of being able to process...

  • 1 Lessons
  • 30676 Students
Enroll Now
c4a40bdeaed9f56e283441d23fadea16
5 total hours
Next JS & Open AI / GPT: Next-generation Next JS & AI apps
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 3628 Students
Add to Wishlist
Next JS & Open AI / GPT: Next-generation Next JS & AI apps
(0.0/ 0 Rating)
Free

Don’t get left behind! Increase your value as a web developer today...

  • 1 Lessons
  • 3628 Students
Enroll Now
00dd0429c3d9c4e77c7f2dd6135f6d74
17.5 total hours
The Ultimate Web Scraping With Python Bootcamp 2024
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 2549 Students
Add to Wishlist
The Ultimate Web Scraping With Python Bootcamp 2024
(0.0/ 0 Rating)
Free

Welcome to the Ultimate Web Scraping With Python Bootcamp, the only course...

  • 1 Lessons
  • 2549 Students
Enroll Now
63fc1fd45ffe4dc67449a1a8b7401f32
6 total hours
Build Unofficial Udemy clone Application in Next.js v13
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 70 Students
Add to Wishlist
Build Unofficial Udemy clone Application in Next.js v13
(0.0/ 0 Rating)
Free

The React Framework for the Web Used by some of the world’s...

  • 1 Lessons
  • 70 Students
Enroll Now
62661c6bcfc862d1b98ae0694b0149c7
9.5 total hours
Mastering TestComplete with Python 2023
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 208 Students
Add to Wishlist
Mastering TestComplete with Python 2023
(0.0/ 0 Rating)
Free

Mastering TestComplete with Python Scripting 2023 with over 60 lessons that will...

  • 1 Lessons
  • 208 Students
Enroll Now
0fa4d1d90530039cdf28dc1d3841e21c
7 total hours
MERN Stack Blood Bank App
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 102 Students
Add to Wishlist
MERN Stack Blood Bank App
(0.0/ 0 Rating)
Free

Hello All, Welcome to the course ‘MERN Stack Work Management Tool’ The...

  • 1 Lessons
  • 102 Students
Enroll Now
8474603455de5ebe308eb3bec7434e84
6 total hours
Python: SOLID Principles and Top Design Patterns
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 2569 Students
Add to Wishlist
Python: SOLID Principles and Top Design Patterns
(0.0/ 0 Rating)
Free

We all want to become better software developers and be able to...

  • 1 Lessons
  • 2569 Students
Enroll Now
99a262dbeb377beb25611eea65ee0030
10.5 total hours
Python: Python Programming with Python project & 250 quizzes
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 127 Students
Add to Wishlist
Python: Python Programming with Python project & 250 quizzes
(0.0/ 0 Rating)
Free

Welcome to my “ Python: Python Programming with Python project & 250...

  • 1 Lessons
  • 127 Students
Enroll Now
359524660e2064716a3331e9830fe526
4 total hours
Database Bootcamp: SQL, Python, Integration, and MORE!
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 44 Students
Add to Wishlist
Database Bootcamp: SQL, Python, Integration, and MORE!
(0.0/ 0 Rating)
Free

Welcome to the Comprehensive Database Programming Course – your comprehensive journey into...

  • 1 Lessons
  • 44 Students
Enroll Now
e2312c9e1f64ed76dd2ac6c2a8075efa
17.5 total hours
DevOps Tools for Beginners: Starting with Python Scripts
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 6336 Students
Add to Wishlist
DevOps Tools for Beginners: Starting with Python Scripts
(0.0/ 0 Rating)
Free

This course is A Beginner’s Guide to DevOps Tools, such as Python....

  • 1 Lessons
  • 6336 Students
Enroll Now
b13375c2a4f82df391c2116a9bcde6c6
22 total hours
Complete FrontEnd Web Development and Design HTML CSS JS
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 18300 Students
Add to Wishlist
Complete FrontEnd Web Development and Design HTML CSS JS
(0.0/ 0 Rating)
Free

Develop the skills you need in order to be able to make...

  • 1 Lessons
  • 18300 Students
Enroll Now
d8f298316ec0d139c6e14e551d1e38f4
64 total hours
Learn Python Programming Masterclass
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 428212 Students
Add to Wishlist
Learn Python Programming Masterclass
(0.0/ 0 Rating)
Free

Whether you want to: – build the skills you need to get...

  • 1 Lessons
  • 428212 Students
Enroll Now
f1ebb4bea8d955669c035ca94ba2a9b9
17.5 total hours
CSS3 Masterclass: Your Complete Beginner to Advanced Class
(0.0/ 0 Rating)
$44.99$10
  • 1 Lessons
  • 4828 Students
Add to Wishlist
CSS3 Masterclass: Your Complete Beginner to Advanced Class
(0.0/ 0 Rating)
$44.99$10

Are you looking to enhance your skills by trying out new Typeface,...

  • 1 Lessons
  • 4828 Students
Enroll Now
5bb31e1b77d2e9a02828f0544a3e6449
3.5 total hours
Build a basic Group based Chat app using Flutter & Firebase
(0.0/ 0 Rating)
$49.99$11
  • 1 Lessons
  • 133 Students
Add to Wishlist
Build a basic Group based Chat app using Flutter & Firebase
(0.0/ 0 Rating)
$49.99$11

In this course, I will be teaching you how to create a...

  • 1 Lessons
  • 133 Students
Enroll Now
041509aecc4d2cd39e3d5911273a898e
7 total hours
Practical Java : Spring Boot 3 REST API with Elasticsearch 8
(0.0/ 0 Rating)
$74.99$11
  • 1 Lessons
  • 5630 Students
Add to Wishlist
Practical Java : Spring Boot 3 REST API with Elasticsearch 8
(0.0/ 0 Rating)
$74.99$11

New Update on July 2023 Updated to Elasticsearch 8.x and Spring Boot...

  • 1 Lessons
  • 5630 Students
Enroll Now
ffe79f7368844948f7d650cdc56277a5
6 total hours
Build classified ads project with React and Firebase
(0.0/ 0 Rating)
$74.99$10
  • 1 Lessons
  • 65 Students
Add to Wishlist
Build classified ads project with React and Firebase
(0.0/ 0 Rating)
$74.99$10

Overview In this course we will build a classified advertisement website where...

  • 1 Lessons
  • 65 Students
Enroll Now
0009cbadd17d3b94034cbe45b88a136f
1 total hour
Python Programming: Building an AI-Powered Instagram Bot
(0.0/ 0 Rating)
$39.99$11
  • 1 Lessons
  • 1422 Students
Add to Wishlist
Python Programming: Building an AI-Powered Instagram Bot
(0.0/ 0 Rating)
$39.99$11

Welcome to “Python Programming: Building an AI-Powered Instagram Bot”! In this comprehensive...

  • 1 Lessons
  • 1422 Students
Enroll Now
fab88affee56b76bb703ba3d06b4bfb0
7.5 total hours
Advanced WordPress Course for Professionals
(0.0/ 0 Rating)
$19.99$10
  • 1 Lessons
  • 30848 Students
Add to Wishlist
Advanced WordPress Course for Professionals
(0.0/ 0 Rating)
$19.99$10

Do you want to learn professional wordpress for web design and development?...

  • 1 Lessons
  • 30848 Students
Enroll Now
1f6ec6067600403658b8e1fa1374dfdd
31 total mins
Use Python FastAPI to create a weather website
(0.0/ 0 Rating)
$19.99$10
  • 1 Lessons
  • 1943 Students
Add to Wishlist
Use Python FastAPI to create a weather website
(0.0/ 0 Rating)
$19.99$10

Course Description: This course will teach you how to use Python FastAPI...

  • 1 Lessons
  • 1943 Students
Enroll Now
2ab9def69f43a2b20fc60a9f8fee1306
16 total hours
The Complete Python Bootcamp from Zero to Expert
(0.0/ 0 Rating)
$19.99$10
  • 1 Lessons
  • 26940 Students
Add to Wishlist
The Complete Python Bootcamp from Zero to Expert
(0.0/ 0 Rating)
$19.99$10

Welcome to “The Complete Python Bootcamp from Zero to Expert,” an all-inclusive...

  • 1 Lessons
  • 26940 Students
Enroll Now
ff5b37b9cec2034be4bd990a3f605d74
4 total hours
Mastering SQL with MariaDB: An Essential Beginner’s Guide
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1067 Students
Add to Wishlist
Mastering SQL with MariaDB: An Essential Beginner’s Guide
(0.0/ 0 Rating)
Free

Are you ready to embark on a journey that will unlock the...

  • 1 Lessons
  • 1067 Students
Enroll Now
d315e6a3861d62c17759e3b997f6f01b
5.5 total hours
Qt6 and QML Intermediate: Interfacing to C++
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 169 Students
Add to Wishlist
Qt6 and QML Intermediate: Interfacing to C++
(0.0/ 0 Rating)
Free

Qt Quick  and QML are the latest and greatest User Interface design...

  • 1 Lessons
  • 169 Students
Enroll Now
7a7aadd3cb772c333d48589f935fda9a
5 total hours
Qt6 and QML Advanced: Interfacing to C++
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 119 Students
Add to Wishlist
Qt6 and QML Advanced: Interfacing to C++
(0.0/ 0 Rating)
Free

You already know quite a bit about Qt , C++ and Qt...

  • 1 Lessons
  • 119 Students
Enroll Now
6513eed27cb51485f6cc9ed242050e3f
8 total hours
Python Programming – From Basics to Advanced level
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 346192 Students
Add to Wishlist
Python Programming – From Basics to Advanced level
(0.0/ 0 Rating)
Free

In this python course – We will start with Python Installation and...

  • 1 Lessons
  • 346192 Students
Enroll Now
e2703827305b04bbb295f829b320f94d
5 total hours
Oracle Application Development and PL/SQL for beginners
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 2 Students
Add to Wishlist
Oracle Application Development and PL/SQL for beginners
(0.0/ 0 Rating)
Free

Oracle Application Development and PL/SQL for Beginners is  designed to usher beginners...

  • 1 Lessons
  • 2 Students
Enroll Now
63f66ba88d69ffda15fde84cbf270880
1 total hour
Object Detection on Custom Dataset With Keras Using Python
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1034 Students
Add to Wishlist
Object Detection on Custom Dataset With Keras Using Python
(0.0/ 0 Rating)
Free

Welcome to the “Object Detection on Custom Dataset with Keras using Python”...

  • 1 Lessons
  • 1034 Students
Enroll Now
53bd8fd1ed3bd4bcb828749ba5157a7e
22 total hours
The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 456891 Students
Add to Wishlist
The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert
(0.0/ 0 Rating)
Free

This course was just completely redone and rebuilt from the ground up,...

  • 1 Lessons
  • 456891 Students
Enroll Now
a416cbbc9ab54be0b686a38b3af406eb
3 total hours
Learn AngularJS Course for Beginners to Advanced
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 15386 Students
Add to Wishlist
Learn AngularJS Course for Beginners to Advanced
(0.0/ 0 Rating)
$19.99$14

Welcome to the “Learn AngularJS Course: Zero to Hero,” your gateway to...

  • 1 Lessons
  • 15386 Students
Enroll Now
c33255d0bf1ed3a61ff96292b1a8527e
8.5 total hours
JavaScript 20 Projects In 20 Days HTML, CSS & JavaScript
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 28008 Students
Add to Wishlist
JavaScript 20 Projects In 20 Days HTML, CSS & JavaScript
(0.0/ 0 Rating)
Free

Welcome to our immersive Udemy experience, where ‘Hands-On Web Development: 20 Projects...

  • 1 Lessons
  • 28008 Students
Enroll Now
3f33796083649aabd808e58ece51b0b2
3.5 total hours
Flutterflow App Development (Expert Course)
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 312 Students
Add to Wishlist
Flutterflow App Development (Expert Course)
(0.0/ 0 Rating)
Free

Welcome to the “FlutterFlow App Development” course! In this comprehensive and hands-on...

  • 1 Lessons
  • 312 Students
Enroll Now
318af50c60f9ed9afafffe2673ad3f31
6 total hours
Flutter, Google Gemini Chat Bot with Hive local storage
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 4147 Students
Add to Wishlist
Flutter, Google Gemini Chat Bot with Hive local storage
(0.0/ 0 Rating)
Free

Flutter, Google Gemini Chat Bot with Hive Local Storage: Build a Persistent...

  • 1 Lessons
  • 4147 Students
Enroll Now
fb062f4ccdcd0ed4e3c7d0974d6be3a3
5 total hours
Flutter Google Map APIs Google Cloud Course 2024
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 123 Students
Add to Wishlist
Flutter Google Map APIs Google Cloud Course 2024
(0.0/ 0 Rating)
Free

In this course you will learn and implement Google APIs using Flutter....

  • 1 Lessons
  • 123 Students
Enroll Now
cf630fa311b1df6bcc59210d91e82544
2 total hours
Flutter Bootcamp: Build Crypto Tracker Application
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 6009 Students
Add to Wishlist
Flutter Bootcamp: Build Crypto Tracker Application
(0.0/ 0 Rating)
Free

Are you ready to dive into the exciting world of cryptocurrency tracking...

  • 1 Lessons
  • 6009 Students
Enroll Now
63c75648471190e31590f9194685a53c
3 total hours
Flutter Augmented Reality | Google ARCore & Sceneform 2024
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 106 Students
Add to Wishlist
Flutter Augmented Reality | Google ARCore & Sceneform 2024
(0.0/ 0 Rating)
Free

ARCore, also known as Google Play Services for AR, is a software...

  • 1 Lessons
  • 106 Students
Enroll Now
f207d371b63670dbdcaa5e62e26a09cf
5 total hours
Face Recognition & Detection in Flutter – The Complete Guide
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 405 Students
Add to Wishlist
Face Recognition & Detection in Flutter – The Complete Guide
(0.0/ 0 Rating)
Free

Welcome to an exhilarating journey of mastering Face Recognition and Face Detection...

  • 1 Lessons
  • 405 Students
Enroll Now
fadd2ff41eaf946179661401e34db390
1.5 total hours
Data Serialization in C++ using FlatBuffers
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 41 Students
Add to Wishlist
Data Serialization in C++ using FlatBuffers
(0.0/ 0 Rating)
Free

Welcome In this bite-sized course you will learn what data serialization is...

  • 1 Lessons
  • 41 Students
Enroll Now
907b7ed98169783b0a6ed5eef5f0f947
2.5 total hours
Complete Python Course: from Basics to Brilliance in HD
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 12773 Students
Add to Wishlist
Complete Python Course: from Basics to Brilliance in HD
(0.0/ 0 Rating)
Free

EASIEST EXPLANATION FOR PYTHON FULL COURSE IN HD WITH PROFESSIONAL VIDEO LECTURES...

  • 1 Lessons
  • 12773 Students
Enroll Now
a38dfda706e1ad5bcfa5b50d2234e4d3
4.5 total hours
Complete C# Unity Game Development 3D For Absolute Beginners
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 36 Students
Add to Wishlist
Complete C# Unity Game Development 3D For Absolute Beginners
(0.0/ 0 Rating)
Free

Course Description: Have you ever dreamed of creating your own 3D games...

  • 1 Lessons
  • 36 Students
Enroll Now
b0ecc61d420592580fca7ae137e58f06
5 total hours
Complete 3D Space Shooter in Unity C# For Beginners 2024
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 84 Students
Add to Wishlist
Complete 3D Space Shooter in Unity C# For Beginners 2024
(0.0/ 0 Rating)
Free

Embark on an exciting journey into the world of game development with...

  • 1 Lessons
  • 84 Students
Enroll Now
24999b55f7b2ca8f7a1085c73f4f7f5a
4.5 total hours
ChatGPT Python Scripting Guide: 29+ Practical Cases Included
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 20 Students
Add to Wishlist
ChatGPT Python Scripting Guide: 29+ Practical Cases Included
(0.0/ 0 Rating)
Free

Are you ready to unlock the full potential of AI and revolutionize...

  • 1 Lessons
  • 20 Students
Enroll Now
5ac41eee55422e0226642f79f6c768aa
1.5 total hours
ChatGPT Clone App | OpenAI | iOS17 & Swift5 | Xcode 15
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 22 Students
Add to Wishlist
ChatGPT Clone App | OpenAI | iOS17 & Swift5 | Xcode 15
(0.0/ 0 Rating)
Free

Unlock the potential of conversational interfaces with my groundbreaking Swift-based chatbot seamlessly...

  • 1 Lessons
  • 22 Students
Enroll Now
07ecbcf514af117234cf63a39ad67372
2 total hours
Certificate Program in Python Programming
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 21 Students
Add to Wishlist
Certificate Program in Python Programming
(0.0/ 0 Rating)
Free

“Step into the world of programming with our Certificate Program in Python...

  • 1 Lessons
  • 21 Students
Enroll Now
3187130f7173a126954645464932de95
4.5 total hours
Build an eCommerce with Hotwire, Razorpay | Ruby On Rails 7
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 55 Students
Add to Wishlist
Build an eCommerce with Hotwire, Razorpay | Ruby On Rails 7
(0.0/ 0 Rating)
Free

Course Description: Are you ready to embark on a journey to create...

  • 1 Lessons
  • 55 Students
Enroll Now
04d0cc6fd588d1257a944efad6e4aac1
2 total hours
Angular Shopping Store (2024 Edition – Angular 18)
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 1026 Students
Add to Wishlist
Angular Shopping Store (2024 Edition – Angular 18)
(0.0/ 0 Rating)
Free

Welcome to the “Angular Shopping Store”. In this course, you’ll learn how...

  • 1 Lessons
  • 1026 Students
Enroll Now
86e95204600ccf31ded1cf2059408ab0
7 total hours
Angular Advanced MasterClass & FREE E-Book
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 11035 Students
Add to Wishlist
Angular Advanced MasterClass & FREE E-Book
(0.0/ 0 Rating)
Free

Would You Like to Build Your Own Open Source Library?Probably all of...

  • 1 Lessons
  • 11035 Students
Enroll Now
94b72216ab1d5f11cdbb0edff1c57578
1.5 total hours
AI Magic: Create a Smart Website in One Hour with OpenAI GPT
(0.0/ 0 Rating)
Free
  • 1 Lessons
  • 142 Students
Add to Wishlist
AI Magic: Create a Smart Website in One Hour with OpenAI GPT
(0.0/ 0 Rating)
Free

Welcome to our course on “Developing a One Page Website with OpenAI...

  • 1 Lessons
  • 142 Students
Enroll Now
95d93c1c32ee7761786974c287da2050
12.5 total hours
Advance Python | Python for Datascience
(0.0/ 0 Rating)
$64.99$14
  • 1 Lessons
  • 96 Students
Add to Wishlist
Advance Python | Python for Datascience
(0.0/ 0 Rating)
$64.99$14

Ready to advance your Python skills? Our easy-to-follow Advanced Python course is...

  • 1 Lessons
  • 96 Students
Enroll Now
a6973daedc355cb3474621ae932c02e4
5 total hours
Talend Real Time Projects
(0.0/ 0 Rating)
$94.99$14
  • 1 Lessons
  • 292 Students
Add to Wishlist
Talend Real Time Projects
(0.0/ 0 Rating)
$94.99$14

Talend is an Open Source/Enterprise ETL Tool, which can be used by...

  • 1 Lessons
  • 292 Students
Enroll Now
ea64350084a30ec877b384c459bbcea5
1.5 total hours
Support Vector Machines for Regression: Machine Learning
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 1651 Students
Add to Wishlist
Support Vector Machines for Regression: Machine Learning
(0.0/ 0 Rating)
$19.99$14

You’ve just stumbled upon the most complete, in-depth Support Vector Machines for...

  • 1 Lessons
  • 1651 Students
Enroll Now
d5240bd3ee23211f7a72f70b68a85cb6
4 total hours
Python Mastery with Generative AI: Coding to AI Integration
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 11140 Students
Add to Wishlist
Python Mastery with Generative AI: Coding to AI Integration
(0.0/ 0 Rating)
$54.99$14

Dive into the world of programming with our comprehensive course “Python Mastery...

  • 1 Lessons
  • 11140 Students
Enroll Now
cfd0516646f056b8a4ef70c79a086abc
4.5 total hours
Python For Everybody : Learn Python Programming MADE EASY
(0.0/ 0 Rating)
$64.99$14
  • 1 Lessons
  • 33874 Students
Add to Wishlist
Python For Everybody : Learn Python Programming MADE EASY
(0.0/ 0 Rating)
$64.99$14

Yes, Python developers are in high demand. Python software engineers are also...

  • 1 Lessons
  • 33874 Students
Enroll Now
b5e8abdf3d35e74910de51371608d863
2.5 total hours
Python and ReportLab for Efficient Reporting and Automation
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 57 Students
Add to Wishlist
Python and ReportLab for Efficient Reporting and Automation
(0.0/ 0 Rating)
$54.99$14

Creating reports is a standard task in the modern working environment. Pretty...

  • 1 Lessons
  • 57 Students
Enroll Now
e0697e8efc009041c1fa313f0d05f1b0
1.5 total hours
PySpark for Data Engineers and Data Analysts in 1h30
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 3 Students
Add to Wishlist
PySpark for Data Engineers and Data Analysts in 1h30
(0.0/ 0 Rating)
$54.99$14

Mastering PySpark to Become a Data Engineer, Data Scientist, or Data Analyst...

  • 1 Lessons
  • 3 Students
Enroll Now
231408da49f951d5c3e6a08513fa680b
5.5 total hours
Proficient Automation Tester by Leveraging Docker with CI&CD
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 2343 Students
Add to Wishlist
Proficient Automation Tester by Leveraging Docker with CI&CD
(0.0/ 0 Rating)
$54.99$14

Software testers and Automation. testers need to upgrade their skills prominently as...

  • 1 Lessons
  • 2343 Students
Enroll Now
24d503114e2c487762e8bdbca9d2c386
6.5 total hours
Power BI Mastery: Zero to Hero Data Skills
(0.0/ 0 Rating)
$54.99$9
  • 1 Lessons
  • 14016 Students
Add to Wishlist
Power BI Mastery: Zero to Hero Data Skills
(0.0/ 0 Rating)
$54.99$9

Dive deep into the world of data with our comprehensive course, “Power...

  • 1 Lessons
  • 14016 Students
Enroll Now
a7d0db1b0ecca70857170c5629308179
3.5 total hours
PHP Master Class – The Complete PHP Developer Course
(0.0/ 0 Rating)
$19.99$9
  • 1 Lessons
  • 23014 Students
Add to Wishlist
PHP Master Class – The Complete PHP Developer Course
(0.0/ 0 Rating)
$19.99$9

Are you ready to become a PHP coding virtuoso, from an absolute...

  • 1 Lessons
  • 23014 Students
Enroll Now
4580df9fb1429703e974413ed6821fe0
4 total hours
Mastering C & C++ Programming: From Fundamentals to Advanced
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 18084 Students
Add to Wishlist
Mastering C & C++ Programming: From Fundamentals to Advanced
(0.0/ 0 Rating)
$19.99$14

Welcome to “Mastering C & C++ Programming: From Fundamentals to Advanced,” your...

  • 1 Lessons
  • 18084 Students
Enroll Now
67942f58858f957849b3573d51c5b45e
2.5 total hours
Master Android by Building 3 Applications in Kotlin Language
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 31157 Students
Add to Wishlist
Master Android by Building 3 Applications in Kotlin Language
(0.0/ 0 Rating)
$19.99$14

Are you aspiring to become an Android Developer and eager to publish...

  • 1 Lessons
  • 31157 Students
Enroll Now
2993786c8b62546463e184fd815255d5
3 total hours
Machine Learning Mastery: From Data to Advanced Classifiers
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 8 Students
Add to Wishlist
Machine Learning Mastery: From Data to Advanced Classifiers
(0.0/ 0 Rating)
$54.99$14

Welcome to the ultimate Machine Learning course where you will embark on...

  • 1 Lessons
  • 8 Students
Enroll Now
cfa2c66ce1debaaf6fd7abe35c2f2572
8.5 total hours
Learn JavaScript Fundamentals Phase 1
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 1019 Students
Add to Wishlist
Learn JavaScript Fundamentals Phase 1
(0.0/ 0 Rating)
$54.99$14

Hello, my name is Rob. I’ve been teaching at Coding Boot Camp...

  • 1 Lessons
  • 1019 Students
Enroll Now
4aa7651f220859450b360322d2f262bc
4.5 total hours
Kotlin Mastery 2024: Premium Edition Crash Course
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 1 Students
Add to Wishlist
Kotlin Mastery 2024: Premium Edition Crash Course
(0.0/ 0 Rating)
$19.99$14

Are you ready to elevate your programming skills and become a Kotlin...

  • 1 Lessons
  • 1 Students
Enroll Now
812b16386077d07d4a8b97adf86ddd14
5.5 total hours
JUnit Essentials: Unit Testing Mastery for Java Applications
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 4908 Students
Add to Wishlist
JUnit Essentials: Unit Testing Mastery for Java Applications
(0.0/ 0 Rating)
$19.99$14

Welcome to our comprehensive course on “Mastering Unit Testing with JUnit.” In...

  • 1 Lessons
  • 4908 Students
Enroll Now
83217c1088130170f4dfbe0f608328d6
5 total hours
Java Fundamentals: Learn the Basics of Java
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 4 Students
Add to Wishlist
Java Fundamentals: Learn the Basics of Java
(0.0/ 0 Rating)
$19.99$14

Java has been around for a long time and has been the...

  • 1 Lessons
  • 4 Students
Enroll Now
004dd561ced707a96a986820b5e84c80
3 total hours
Java Foundations: Mastering the Basics
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 22469 Students
Add to Wishlist
Java Foundations: Mastering the Basics
(0.0/ 0 Rating)
$19.99$14

Welcome to this beginner-friendly course focusing on Java, a key programming language...

  • 1 Lessons
  • 22469 Students
Enroll Now
49477818f57ab367a35372c403c9033f
1.5 total hours
Gradio- 10 Generative AI project ,Hugging face ,React GPT
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 530 Students
Add to Wishlist
Gradio- 10 Generative AI project ,Hugging face ,React GPT
(0.0/ 0 Rating)
$54.99$14

Unlock the potential of generative AI in this cutting-edge course. Dive into...

  • 1 Lessons
  • 530 Students
Enroll Now
f63957aeaaf4b5928e32c574045ac28f
9.5 total hours
Generative AI: OpenAI API, ChatGPT, and GPT-4 in Python
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 979 Students
Add to Wishlist
Generative AI: OpenAI API, ChatGPT, and GPT-4 in Python
(0.0/ 0 Rating)
$54.99$14

Welcome to the forefront of artificial intelligence with our groundbreaking course on...

  • 1 Lessons
  • 979 Students
Enroll Now
7ed94467c7224a02f1b2c18a91d35292
26 total hours
Full-Stack Mobile Development: Flutter, Figma, and Firebase
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 343 Students
Add to Wishlist
Full-Stack Mobile Development: Flutter, Figma, and Firebase
(0.0/ 0 Rating)
$19.99$14

Welcome to our groundbreaking course, “Mastering Flutter, Firebase, and Figma: Build a...

  • 1 Lessons
  • 343 Students
Enroll Now
dafcfde0164c2cc752bef9595edd759c
6.5 total hours
Full python Masterclass, From a beginner to employed
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 2 Students
Add to Wishlist
Full python Masterclass, From a beginner to employed
(0.0/ 0 Rating)
$54.99$14

Course Description: Are you ready to unlock the power of Python and...

  • 1 Lessons
  • 2 Students
Enroll Now
51f6d7146b16c0199c500ee816a1db6b
3.5 total hours
From Zero to Async: A Complete Guide to AsyncIO in Python
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 1235 Students
Add to Wishlist
From Zero to Async: A Complete Guide to AsyncIO in Python
(0.0/ 0 Rating)
$54.99$14

Unlock the Full Potential of Asynchronous Programming in Python! Welcome to “Mastering...

  • 1 Lessons
  • 1235 Students
Enroll Now
5d370d1ef9a674ff682ad67d3e896930
6.5 total hours
Flutter Rest API BootCamp: Build 3 Real World Apps -[ 2024 ]
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 8026 Students
Add to Wishlist
Flutter Rest API BootCamp: Build 3 Real World Apps -[ 2024 ]
(0.0/ 0 Rating)
$54.99$14

Become an expert in creating practical applications with Flutter by enrolling in...

  • 1 Lessons
  • 8026 Students
Enroll Now
558f74e774cff5893e568c601febeda5
3.5 total hours
Flutter iOS & Android Mobile Snake Game Development Course
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 1 Students
Add to Wishlist
Flutter iOS & Android Mobile Snake Game Development Course
(0.0/ 0 Rating)
$54.99$14

In this course you will learn and build mobile ios and android...

  • 1 Lessons
  • 1 Students
Enroll Now
679090b651ffca562b05f0cd67b24b30
7.5 total hours
Deep Learning Neural Networks with TensorFlow
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 3640 Students
Add to Wishlist
Deep Learning Neural Networks with TensorFlow
(0.0/ 0 Rating)
$19.99$14

Welcome to the “Deep Learning Neural Networks with TensorFlow” course! This comprehensive...

  • 1 Lessons
  • 3640 Students
Enroll Now
e0c0c933c5981ae80053c93c30928bc8
2.5 total hours
Create Python Programs with AI (ChatGPT)
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 2094 Students
Add to Wishlist
Create Python Programs with AI (ChatGPT)
(0.0/ 0 Rating)
$54.99$14

This course is designed to equip you with the skills and knowledge...

  • 1 Lessons
  • 2094 Students
Enroll Now
17490cc55c8b6a50a30b1901d2057237
1.5 total hours
Complete Algo Trading on Fyers API using Python
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 20 Students
Add to Wishlist
Complete Algo Trading on Fyers API using Python
(0.0/ 0 Rating)
$54.99$14

Unlock the full potential of Fyers Trade API with our comprehensive course,...

  • 1 Lessons
  • 20 Students
Enroll Now
bc036b47059356f425e6d1d5be638347
2.5 total hours
ChatGPT Plugins: Enable More Power to Your ChatGPT
(0.0/ 0 Rating)
$54.99$10
  • 1 Lessons
  • 5 Students
Add to Wishlist
ChatGPT Plugins: Enable More Power to Your ChatGPT
(0.0/ 0 Rating)
$54.99$10

Welcome to the definitive course that extends ChatGPT beyond its core capabilities!...

  • 1 Lessons
  • 5 Students
Enroll Now
26556f1ac8e22b846482523dcf1343e5
4.5 total hours
Build an AI Gallery App in Flutter – Smart Flutter Dart Apps
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 53 Students
Add to Wishlist
Build an AI Gallery App in Flutter – Smart Flutter Dart Apps
(0.0/ 0 Rating)
$54.99$14

Welcome to an exciting journey of building innovative applications in Flutter! Have...

  • 1 Lessons
  • 53 Students
Enroll Now
9244e64717ca8ffd77b57f3311c3ee50
1.5 total hours
Build a Chat Messaging App with FlutterFlow & Firebase
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 217 Students
Add to Wishlist
Build a Chat Messaging App with FlutterFlow & Firebase
(0.0/ 0 Rating)
$19.99$14

If you look at the top apps on the app store today,...

  • 1 Lessons
  • 217 Students
Enroll Now
b9c1ed4482a88390e4a2bd1cd52e99cf
5 total hours
Python Programming for Beginners: Learn to Code with Python
(0.0/ 0 Rating)
$79.99$14
  • 1 Lessons
  • 659 Students
Add to Wishlist
Python Programming for Beginners: Learn to Code with Python
(0.0/ 0 Rating)
$79.99$14

Start diving into the amazing world of programming and computer science with...

  • 1 Lessons
  • 659 Students
Enroll Now
0bef4d09b6d7df35a2c8930af754c331
8 total hours
Android Jetpack Compose with Retrofit Room Hilt in Kotlin
(0.0/ 0 Rating)
$69.99$14
  • 1 Lessons
  • 11276 Students
Add to Wishlist
Android Jetpack Compose with Retrofit Room Hilt in Kotlin
(0.0/ 0 Rating)
$69.99$14

During this course, we will develop an Android application that will display...

  • 1 Lessons
  • 11276 Students
Enroll Now
2101c97814e1673a241af20db71c623e
6.5 total hours
AI Application Boost with NVIDIA RAPIDS Acceleration
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 608 Students
Add to Wishlist
AI Application Boost with NVIDIA RAPIDS Acceleration
(0.0/ 0 Rating)
$54.99$14

Data science and machine learning represent the largest computational sectors in the...

  • 1 Lessons
  • 608 Students
Enroll Now
c8d57f83141e4e0b0014d174020d4448
3.5 total hours
A Complete Guide to Java Programming with Examples
(0.0/ 0 Rating)
$19.99
  • 1 Lessons
  • 23098 Students
Add to Wishlist
A Complete Guide to Java Programming with Examples
(0.0/ 0 Rating)
$19.99

Introduction to Learn Java Programming with Examples in One Day The “Learning...

  • 1 Lessons
  • 23098 Students
Enroll Now
9738db3c3ac6bc3e43aabd876e671b19
2.5 total hours
Video Segmentation with Python using Deep Learning Real-Time
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 177 Students
Add to Wishlist
Video Segmentation with Python using Deep Learning Real-Time
(0.0/ 0 Rating)
$19.99$14

Introduction: Step into the dynamic realm of computer vision and get ready...

  • 1 Lessons
  • 177 Students
Enroll Now
d5df0b373662f3f5d0e3c447cb9ff8c0
2 total hours
Unlocking the Secrets of Data: Unsupervised Learning with R
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 51 Students
Add to Wishlist
Unlocking the Secrets of Data: Unsupervised Learning with R
(0.0/ 0 Rating)
$19.99$14

Course Description: Welcome to “Unlocking the Secrets of Data: Unsupervised Learning with...

  • 1 Lessons
  • 51 Students
Enroll Now
571691ea9001aa1b3649c00357224b32
6 total hours
The Ultimate Beginners Guide to Data Analysis with Pandas
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 272 Students
Add to Wishlist
The Ultimate Beginners Guide to Data Analysis with Pandas
(0.0/ 0 Rating)
$54.99$14

Welcome to the “Ultimate Beginners Guide to Pandas for Data Analysis” course,...

  • 1 Lessons
  • 272 Students
Enroll Now
d58ab2558a4b4a7f7dee623d4e995c18
11 total hours
The Complete Artificial Intelligence (AI) for Professionals
(0.0/ 0 Rating)
$69.99$14
  • 1 Lessons
  • 20498 Students
Add to Wishlist
The Complete Artificial Intelligence (AI) for Professionals
(0.0/ 0 Rating)
$69.99$14

The Complete Artificial Intelligence (AI) for Professionals – Regular Updates to Keep...

  • 1 Lessons
  • 20498 Students
Enroll Now
8b9b45ba786abebc2df177454837f189
36.5 total hours
ZeroToHero Selenium webdriver java Basics+Advanced+Framework
(0.0/ 0 Rating)
$84.99$11
  • 1 Lessons
  • 1054 Students
Add to Wishlist
ZeroToHero Selenium webdriver java Basics+Advanced+Framework
(0.0/ 0 Rating)
$84.99$11

Hi Student, Welcome to this most recent Selenium Automation testing course of...

  • 1 Lessons
  • 1054 Students
Enroll Now
67b312991452f79bc4be2fbfc1ab182b
36 total hours
Selenium Webdriver with Java
(0.0/ 0 Rating)
$49.99$14
  • 1 Lessons
  • 414 Students
Add to Wishlist
Selenium Webdriver with Java
(0.0/ 0 Rating)
$49.99$14

Selenium WebDriver Training – Expert Level This course will have all topics...

  • 1 Lessons
  • 414 Students
Enroll Now
5331ee5126464f2032759607db8b3e85
3 total hours
ReactJs – The Complete ReactJs Course For Beginners
(0.0/ 0 Rating)
$19.99$14
  • 1 Lessons
  • 23581 Students
Add to Wishlist
ReactJs – The Complete ReactJs Course For Beginners
(0.0/ 0 Rating)
$19.99$14

Welcome to “ReactJS – The Complete ReactJS Course For Beginners,” an immersive...

  • 1 Lessons
  • 23581 Students
Enroll Now
d823c29e972995743397fff89cdad5bc
3.5 total hours
React.JS for Ecommerce: Building a Store with React.JS
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 31082 Students
Add to Wishlist
React.JS for Ecommerce: Building a Store with React.JS
(0.0/ 0 Rating)
$54.99$14

Welcome to “Building an E-Commerce Store with React.js”, a meticulously designed course...

  • 1 Lessons
  • 31082 Students
Enroll Now
a3d58505e414a2e631936a5cd1e9aadb
12 total hours
Python REST APIs with Flask, Docker, MongoDB, and AWS DevOps
(0.0/ 0 Rating)
$79.99$14
  • 1 Lessons
  • 18996 Students
Add to Wishlist
Python REST APIs with Flask, Docker, MongoDB, and AWS DevOps
(0.0/ 0 Rating)
$79.99$14

So you know a bit of Python and want to learn about...

  • 1 Lessons
  • 18996 Students
Enroll Now
2faa51fa7044f2d450494634f955b743
28 total hours
Modern React, Express 2024 Build Complete Canva Project A-Z
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 209 Students
Add to Wishlist
Modern React, Express 2024 Build Complete Canva Project A-Z
(0.0/ 0 Rating)
$54.99$14

Modern React JS, Express JS 2024 Build Complete Canva Project A-Z Welcome...

  • 1 Lessons
  • 209 Students
Enroll Now
8d1efacaf4d851b973a7b5784f51ca0a
4.5 total hours
Mastering JavaScript and jQuery Course Beginners to Advanced
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 14558 Students
Add to Wishlist
Mastering JavaScript and jQuery Course Beginners to Advanced
(0.0/ 0 Rating)
$54.99$14

Learn everything you need to know to become a JavaScript and jQuery...

  • 1 Lessons
  • 14558 Students
Enroll Now
aa2e61e2676c922350c230ca2156207e
3 total hours
Learn Backend Development with Python Django and AWS
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 739 Students
Add to Wishlist
Learn Backend Development with Python Django and AWS
(0.0/ 0 Rating)
$54.99$14

Are you eager to dive into the world of backend development? Look...

  • 1 Lessons
  • 739 Students
Enroll Now
4833db331896a4ec61b5a377f0d392c3
4.5 total hours
JavaScript for Beginning Web Developers
(0.0/ 0 Rating)
$49.99$14
  • 1 Lessons
  • 7847 Students
Add to Wishlist
JavaScript for Beginning Web Developers
(0.0/ 0 Rating)
$49.99$14

JavaScript is one of the most popular programming languages in the world...

  • 1 Lessons
  • 7847 Students
Enroll Now
fdfbfade90b15c429c4fff7208ffdae9
15 total hours
Java Essentials 2024: Code, Concepts & Careers
(0.0/ 0 Rating)
$54.99$14
  • 1 Lessons
  • 5008 Students
Add to Wishlist
Java Essentials 2024: Code, Concepts & Careers
(0.0/ 0 Rating)
$54.99$14

Welcome to “Java Essentials 2024: Code, Concepts & Careers,” your gateway to...

  • 1 Lessons
  • 5008 Students
Enroll Now
1685224cbc01741d27574af293f5d32b
3 total hours
ChatGPT Masterclass: A Complete ChatGPT Zero to Hero!
(0.0/ 0 Rating)
$74.99$12
  • 1 Lessons
  • 10265 Students
Add to Wishlist
ChatGPT Masterclass: A Complete ChatGPT Zero to Hero!
(0.0/ 0 Rating)
$74.99$12

The ChatGPT Masterclass Zero to Hero is a comprehensive course designed to...

  • 1 Lessons
  • 10265 Students
Enroll Now
106072255f21230753564f27fc19e86c
2 total hours
ChatGPT for Programmers: Build Python Apps in Seconds
(0.0/ 0 Rating)
$109.99$14
  • 1 Lessons
  • 14080 Students
Add to Wishlist
ChatGPT for Programmers: Build Python Apps in Seconds
(0.0/ 0 Rating)
$109.99$14

In this course, you will learn how to use ChatGPT to simplify...

  • 1 Lessons
  • 14080 Students
Enroll Now
f75085bd0ef93bcdf2e0e25f4ac66ddb
2 total hours
ChatGPT for Developers: Create Apps in Minutes
(0.0/ 0 Rating)
$74.99$14
  • 1 Lessons
  • 125 Students
Add to Wishlist
ChatGPT for Developers: Create Apps in Minutes
(0.0/ 0 Rating)
$74.99$14

Learn how to use ChatGPT to create apps in minutes, debug errors...

  • 1 Lessons
  • 125 Students
Enroll Now
7a8311efc1737b8bb27e8e9cd2e61719
1.5 total hours
ChatGPT Complete Guide: for Developers, Students and Workers
(0.0/ 0 Rating)
$44.99$14
  • 1 Lessons
  • 115 Students
Add to Wishlist
ChatGPT Complete Guide: for Developers, Students and Workers
(0.0/ 0 Rating)
$44.99$14

Learn the Theory of ChatGPT as an NLP and Reinforcement Learning with Human...

  • 1 Lessons
  • 115 Students
Enroll Now
bb7483552c1b70724382b1279ceb6a29
1 total hour
ChatGPT API Python Masterclass with Google Apps Integration
(0.0/ 0 Rating)
$24.99$14
  • 1 Lessons
  • 1507 Students
Add to Wishlist
ChatGPT API Python Masterclass with Google Apps Integration
(0.0/ 0 Rating)
$24.99$14

“Unlocking the Power of ChatGPT API: A Comprehensive Guide with Google AppScript...

  • 1 Lessons
  • 1507 Students
Enroll Now
75fafba909dd02925e725d4fcb5c5aee
2.5 total hours
ChatGPT 2023: Code and Debug 10X Better, Faster, Stronger
(0.0/ 0 Rating)
$74.99$13
  • 1 Lessons
  • 1944 Students
Add to Wishlist
ChatGPT 2023: Code and Debug 10X Better, Faster, Stronger
(0.0/ 0 Rating)
$74.99$13

How would you like to learn to code faster? To produce better...

  • 1 Lessons
  • 1944 Students
Enroll Now
106bab98e2d9b0a9ca20fcc21d6d796b
3.5 total hours
Apache Spark 2.0 with Java -Learn Spark from a Big Data Guru
(0.0/ 0 Rating)
$69.99$14
  • 1 Lessons
  • 22629 Students
Add to Wishlist
Apache Spark 2.0 with Java -Learn Spark from a Big Data Guru
(0.0/ 0 Rating)
$69.99$14

What is this course about: This course covers all the fundamentals about...

  • 1 Lessons
  • 22629 Students
Enroll Now
872e135c8105640320ea021f9723ffaa
12 total hours
20 Web Projects: HTML, CSS & Javascript
(0.0/ 0 Rating)
$19.99
  • 1 Lessons
  • 20 Students
Add to Wishlist
20 Web Projects: HTML, CSS & Javascript
(0.0/ 0 Rating)
$19.99

Elevate your web development skills with our ‘20 Web Projects: HTML, CSS...

  • 1 Lessons
  • 20 Students
Enroll Now
Education-for-Everyone-(2)

Edvry is your ultimate destination for high-quality online learning. We offer expert-led courses across various fields, empowering learners to gain new skills, advance their careers, and achieve their goals.

Online Platform

  • About Us
  • Become an Instructor
  • Zoom Meeting
  • Events
  • Contact Us

Links

  • Membership Level
  • Membership Account
  • Membership Cancel
  • Membership Orders
  • My account
  • Sign In/Registration

Contacts

Enter your email address to register to our newsletter subscription

Icon-facebook Icon-linkedin2 Icon-instagram Icon-twitter Icon-youtube
Copyright 2025 Edvry
Sign In
The password must have a minimum of 8 characters of numbers and letters, contain at least 1 capital letter
I want to sign up as instructor
Remember me
Sign In Sign Up
Restore password
Send reset link
Password reset link sent to your email Close
Your application is sent We'll send you an email as soon as your application is approved. Go to Profile
No account? Sign Up Sign In
Lost Password?
edvry
Sign inSign up

Sign in

Don’t have an account? Sign up
Lost your password?

Sign up

Already have an account? Sign in