Home Podcasts Full Stack Web Developer
Full Stack Web Developer

Full Stack Web Developer

Ilaria Digital School 142 Episodes Mar 24, 2026

This podcast is about becoming a Full Stack Web Developer, covering front-end and back-end technologies such as HTML, CSS, JavaScript, Node.js, Python, SQL/NoSQL, Git, testing, and CI/CD. It teaches how to design secure software architectures, build REST APIs, automate deployments, and collaborate in Agile teams. Aimed at learners who want practical skills for developing and deploying complete web applications.

Episodes

Welcome and chapter goals
Welcome and chapter goals Mar 24, 2026 00:15:00 Welcome to the Full Stack Web Developer course. This first chapter is designed to set the foundation for everything you will learn throughout this program. Whether you are transitioning from a completely different career, upgrading your existing skil...
What is a development environment?
What is a development environment? Mar 25, 2026 00:15:00 Before writing a single line of code, every developer — beginner or experienced — needs a properly configured development environment. This concept is fundamental, and understanding it from the very beginning will save you enormous amounts of time an...
Guided workshop: identify components (editor, terminal, browser)
Guided workshop: identify components (editor, terminal, browser) Mar 25, 2026 00:15:00 THEORETICAL RECAP A development environment is the set of tools a developer uses daily to write, test, and run code. Three components are absolutely central and you will interact with them constantly throughout your career as a Full Stack Web Develop...
Install Visual Studio Code step by step
Install Visual Studio Code step by step Mar 26, 2026 00:15:00 Now that you understand what a development environment is and what its main components are — the code editor, the terminal, and the browser — it is time to take action and install the first essential tool: Visual Studio Code. This is the code editor ...
Workshop: installing and first opening VS Code
Workshop: installing and first opening VS Code Mar 27, 2026 00:15:00 **Theoretical Recap** A development environment is the set of tools a developer uses daily to write, test, and run code. Among these tools, the code editor holds a central place. Visual Studio Code (VS Code) is a free, open-source, and cross-platform...
Discover the VS Code interface (bars, panels, extensions)
Discover the VS Code interface (bars, panels, extensions) Mar 27, 2026 00:15:00 Now that you have successfully installed Visual Studio Code and opened it for the first time, it is time to go deeper and understand exactly what you are looking at. The Visual Studio Code interface is built around several distinct visual zones, each...
Workshop: guided interface journey and key shortcuts
Workshop: guided interface journey and key shortcuts Mar 28, 2026 00:15:00 **Theoretical Recap** Visual Studio Code (VS Code) is a free, open-source code editor developed by Microsoft that has become the industry standard for web development. Understanding its interface is not optional — it is a foundational skill that dire...
Introduction to the terminal and the command line
Introduction to the terminal and the command line Mar 30, 2026 00:15:00 Now that you have installed and explored Visual Studio Code, it is time to get comfortable with one of the most essential tools in a developer's daily life: the terminal and the command line. Many beginners feel intimidated by the terminal, because i...
Workshop: basic commands (cd, ls, mkdir, touch)
Workshop: basic commands (cd, ls, mkdir, touch) Mar 31, 2026 00:15:00 **Theoretical Recap** The terminal is a text-based interface that allows you to communicate directly with your operating system using commands. Unlike a graphical interface where you click on folders and files, the terminal requires you to type instr...
Variation workshop: managing folders and files in a mini-project
Variation workshop: managing folders and files in a mini-project Mar 31, 2026 00:15:00 THEORETICAL RECAP Before diving into the workshop, let's consolidate what you've learned about the terminal and file system management. The file system is organized as a tree: a root directory contains folders, which themselves contain subfolders and...
Browser: activate and read DevTools
Browser: activate and read DevTools Apr 1, 2026 00:15:00 Every modern web browser comes equipped with a built-in set of tools designed specifically for developers. These tools, collectively called DevTools (short for Developer Tools), allow you to inspect, debug, and analyze any web page directly in your b...
Workshop: inspecting an HTML page with DevTools
Workshop: inspecting an HTML page with DevTools Apr 2, 2026 00:15:00 **Theoretical Recap** Browser DevTools is a built-in suite of developer tools available in every modern browser (Chrome, Firefox, Edge). It allows you to inspect, debug, and analyze any web page in real time — without modifying the actual source file...

Recommended