The following lessons explain different programming concepts and have been published by our members. Search for a particular lesson using the filters
Functions are an amazing tool, they allow you to re-use and simplify your code like never before. Before functions existed algorithms were almost impossible to maintain
Classes are the last pieces needed to master the programming tricks! Welcome to the amazing world of object-oriented programming.
Nobody manually sorts lists anymore, but it is still a fantastic way to master your algorithmic skills
It is imposible to software without storing information, its time to practice and master the science behind storage
SQLAlchemy is the most popular ORM for Python, start using it in 8min
Functions are not optional - they are probably the most used feature in any programming language. They let you separate your code into smaller mini-programs where each one takes care of its own thing. Divide and conquer!
Get to know what is JavaScript, everybody is talking about it and by now you probably know it's time to learn to code in JavaScript in order to get things to the next level.
Have you heard of Fetch? In this lesson, you will learn how to request information from APIs and make use of that data with the most used technology for that purpose - the JS Fetch API.
Before heading towards development, We need a strategy (User Stories). Find and learn here with user stories examples. It is the most undervalued activity in the software development cycle and it accounts for 70% of the reasons that projects are not delivered on time.
Learn how to use GIT with an interactive tutorial, video, and great article. Without GIT you won't be able to work at any company, and you won't be able to use anyone's code.
Building layouts is the most painful process when coding HTML & CSS. Learn the CSS layout rules: Display, Position, Float and Flex; and place any element anywhere you want.
Without Flux, React is just a cute front-end library. React Flux will make it a framework, giving your application a defined structure, taking care of the data-processing layer, and much more about what is flux.
Learn how to implement an authentication system that allows users to log in and log out from your web app and API
String concatenation is the Web Developer's bread and butter, our job is to concatenate strings to create HTML/CSS documents programmatically
Split and conquer (again), this time we teach you how to split your code into several files to avoid GIT conflicts and to also be more organized, By the end of this lesson you will be able to dominate JavaScript import and exports.