Currently Empty: £0.00
You’ve just stumbled upon the most complete, in-depth Lua programming course online.
Whether you want to:
– build the skills you need to get your first Lua programming job
– move to a more senior software developer position
– become a computer scientist mastering in computation
– or just learn Lua to be able to create your own Lua apps quickly
This complete Lua Masterclass is the course you need to do all of this, and more.
This course is designed to give you the Lua skills you need to become a Lua developer. By the end of the course, you will understand Lua extremely well and be able to build your own Lua apps and be productive as a computer scientist and software developer.
What makes this course a bestseller?
Like you, thousands of others were frustrated and fed up with fragmented Youtube tutorials or incomplete or outdated courses which assume you already know a bunch of stuff, as well as thick, college-like textbooks able to send even the most caffeine-fuelled coder to sleep.
Like you, they were tired of low-quality lessons, poorly explained topics, and confusing info presented in the wrong way. That’s why so many find success in this complete Lua developer course. It’s designed with simplicity and seamless progression in mind through its content.
This course assumes no previous coding experience and takes you from absolute beginner core concepts. You will learn the core Lua skills and master functional programming. It’s a one-stop shop to learn Lua. If you want to go beyond the core content you can do so at any time.
Here’s just some of what you’ll learn
(It’s okay if you don’t understand all this yet, you will in the course)
-
All the essential Lua keywords, facts, relations, arguments and expressions needed to fully understand exactly
what you’re coding and why – making programming easy to grasp and less frustrating. -
You will learn the answers to questions like What is a Lua database, What are rules and models and to apply them to your Lua apps.
-
Functions and Main Structure of Pattern Matching Systems along with dealing with uncertainty and knowledge representation.
-
Complete chapters on Functional programming and many aspects of the Lua Recursive mechanism (the protocols and tools for building applications) so you can code for all platforms and derestrict your program’s user base.
-
How to develop powerful Lua applications using Advanced Tree Representations and Module-Directed Programming.
What if I have questions?
As if this course wasn’t complete enough, I offer full support, answering any questions you have each day of the week.
This means you’ll never find yourself stuck on one lesson for days on end. With my hand-holding guidance, you’ll progress smoothly through this course without any major roadblocks.
There’s no risk either!
This course comes with a full guarantee. Meaning if you are not completely satisfied with the course or your progress, simply let me know and I’ll refund you 100%, every last penny no questions asked.
You either end up with Lua skills, go on to develop great programs and potentially make an awesome career for yourself, or you try the course and simply get all your money back if you don’t like it…
You literally can’t lose.
Ready to get started, developer?
Enroll now using the “Add to Cart” button on the right, and get started on your way to creative, advanced Lua brilliance. Or, take this course for a free spin using the preview feature, so you know you’re 100% certain this course is for you.
See you on the inside (hurry, Lua is waiting!)
Basic Fundamentals
-
1Introduction to Lua
In this lecture we make a brief introduction to Lua programming language.
-
2Installing Lua on Windows
In this lecture we learn how to install Lua on Windows.
-
3Installing Lua on Linux
In this lecture we learn how to install Lua on Linux.
-
4Installing Lua on MacOS
In this lecture we learn how to install Lua on MacOS.
-
5Interlude - Factorial Computation
In this interlude we implement a function to compute the factorial of a number.
Tables
-
6Lexical Conventions
In this lecture we study the Lexical Conventions in Lua.
-
7Types and Values
In this lecture we introduce the types in Lua.
-
8Booleans and Logical Operators
In this lecture we study booleans and logical operators in Lua.
-
9Input and Output
In this lecture we see the input and output system in Lua.
Functions
Solved Problems - Functions
Conditional Structures
-
17Problem 1 - Square Roots and Squares
In this lesson we solve the problem 1 of the problems section on Functions.
-
18Problem 2 - Special Prime Number
In this lesson we solve the problem 2 of the problems section on Functions.
-
19Problem 3 - Stamps
In this lesson we solve the problem 3 of the problems section on Functions.
-
20Problem 4 - Related Sum
In this lesson we solve the problem 4 of the problems section on Functions.
-
21Problem 5 - Polynomial Evaluation
In this lesson we solve the problem 5 of the problems section on Functions.
Loops
Solved Problems - Loops
-
24Numerical For
On this lecture we study the numerical for loop in Lua.
We explain the fundamentals of this control structure and practise with some examples.
-
25Generic For and Iterators
On this lecture we study the generic for loop and learn to define iterator functions.
-
26While Loop
On this lecture we introduce the while loop in Lua.
-
27Repeat Statement
On this lecture we study the repeat statement in Lua and practise with some examples.
Basic Data Structures
-
28Problem 1 - Multiplication Table
In this lesson we solve the problem 1 of the problems section on Loops.
-
29Problem 2 - Sum of Squares
In this lesson we solve the problem 2 of the problems section on Loops.
-
30Problem 3 - Number of Digits
In this lesson we solve the problem 3 of the problems section on Loops.
-
31Problem 4 - Reversed Number
In this lesson we solve the problem 4 of the problems section on Loops.
-
32Problem 5 - Cool Numbers
In this lesson we solve the problem 5 of the problems section on Loops.
Stacks
Solved Problems - Stacks
Queues
-
39Introduction to the Section
On this lecture we introduce the stack problems section.
-
40Problem 1 - Palindromic Sequence
In this lesson we solve the problem 1 of the problems section on Stacks.
-
41Important Considerations
On this lecture we solve the problem 1 using the stack data structure.
-
42Problem 2 - Parenthesization Evaluation
On this lesson we solve problem 2 of the problems section on Stacks.
-
43Problem 3 - Smaller on the Left
On this lesson we solve problem 3 of the problems section on Stacks.
Solved Problems - Queues
Dictionaries (Maps)
Solved Problems - Dictionaries (Maps)
Sets
Solved Problems - Sets
Binary Trees
Solved Problems - Binary Trees
Graphs
-
61Problem 1 - Size
In this lesson we solve problem 1 of the problems section on Binary Trees.
-
62Problem 2 - Height
In this lesson we solve problem 2 of the problems section on Binary Trees.
-
63Problem 3 - Equivalent Trees
In this lesson we solve problem 3 of the problems section on Binary Trees.
-
64Problem 4 - Isomorphism
In this lesson we solve problem 4 of the problems section on Binary Trees.
-
65Problem 5 - Preorder Traversal
We solve problem 5 of the problems section on binary trees.
-
66Problem 6 - Postorder Traversal
We solve problem 6 of the problems section on binary trees.
-
67Problem 7 - Inorder Traversal
We solve problem 7 of the problems section on binary trees.
-
68Problem 8 - Minimum Value
We solve problem 8 of the problems section on binary trees.
-
69Problem 9 - Root to Leaf Paths
We solve problem 9 of the problems section on binary trees.
Graph Algorithms - Depth First Search (DFS)
-
70Introduction to Graphs
In this lesson we introduce Graphs.
-
71Representation of a Graph
In this lesson we study the two main representations of graphs.
The adjacency list and the adjacency matrix.
-
72Implementation of Graphs
In this lecture we learn how to implement the graph data structure in Lua.
Solved Problems - Depth First Search - Graphs
Graph Algorithms - Breadth First Search (BFS)
-
74Problem 1 - Treasures in a Map
In this lesson we solve problem 1 of the problems section on Depth First Search.
-
75Problem 2 - Number of Rewards
In this lesson we solve problem 2 of the problems section on Depth First Search.
-
76Problem 3 - Forest
In this lesson we solve problem 3 of the problems section on Depth First Search.
-
77Problem 4 - Two Colors
In this lesson we solve problem 4 of the problems section on Depth First Search.
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!
Stars 5
41
Stars 4
31
Stars 3
17
Stars 2
3
Stars 1
2