Ilaria Digital School
Full Stack Web Developer
Become a Full Stack Web Developer and master the development to create, manage and deploy complete applications (HTML, CSS, introduction to algorithms, JavaScript, NodeJS as the main backend, Python for scripting/automation, SQL, NoSQL, automation, SQL, NoSQL, automation, SQL, SQL, NoSQL, Git, SQL, Git, Git, unit tests, unit tests, secure your web application, CI/CD). Skills: Design a multi-layered and secure software architecture (presentation, business, persistence); Develop the front-end and back-end components of a web application; Implement secure REST APIs interconnected to a relational...
Autor
Ilaria Digital School
Kategorie
Podcast-Website
Neueste Folge
10. Jul 2026
Wo hören?
Podcasts in der App Replaio Radio Bald verfügbarPodcasts kommen bald in die App. Installiere sie jetzt und erlebe als Erster einen ganz neuen Blick auf Podcasts
Folgen
Hypertext links: a tag and essential attributes 21.05.2026 15:00
Hypertext links are one of the most fundamental and defining features of the web. Without them, web pages would be isolated islands of content, unable to connect to one another. As a future Full Stack Web Developer, mastering how hypertext links work...
Block vs Inline: Understanding Document Flow 21.05.2026 15:00
When you write HTML code, every element you place in a page behaves according to a specific display logic. This logic is called the document flow. Understanding it is essential because it directly determines how your content is positioned and rendere...
Workshop: Nested lists 20.05.2026 15:00
THEORETICAL RECAP A nested list is a list that contains one or more other lists inside one of its items. In HTML, this means placing a , , or element directly inside a element of a parent list. The browser will automatically indent the child list, vi...
Assessment of acquired skills and next stages of the course 19.05.2026 15:00
Welcome to this final theoretical lesson of the introductory chapter. This text serves as a structured review of everything you have covered so far, and a clear map of what lies ahead in your journey toward becoming a Full Stack Web Developer. Read c...
Mini-project: static site improvement + complete README 19.05.2026 15:00
## Overview This mini-project is the capstone of the introductory chapter 'Getting started: development environment and developer mindset'. It brings together everything you have practiced so far: debugging HTML/CSS with DevTools, using the test-comm...
Workshop: write a clear README for the mini-project 19.05.2026 15:00
**Theoretical Recap** A README is the front door of any technical project. It is typically the first file a developer, recruiter, or collaborator reads when they open a repository. A good README answers four fundamental questions immediately: What do...
Markdown and README: presenting your project 19.05.2026 15:00
When you work on a software project, the code itself is rarely enough. Anyone who visits your repository — a recruiter, a collaborator, a future version of yourself — needs to understand what the project does, how to install it, and how to use it. Th...
Workshop: finding the right answer on MDN and applying it 19.05.2026 15:00
**Theoretical Recap** MDN Web Docs (Mozilla Developer Network) is the reference documentation for web technologies: HTML, CSS, JavaScript, and web APIs. Unlike a tutorial or a blog post, MDN is a specification-level resource — it tells you exactly wh...
Effective documentation and research (MDN, StackOverflow) 19.05.2026 15:00
As a developer, you will spend a significant portion of your working time reading documentation and searching for solutions online. This is not a sign of weakness or lack of skill — it is a core professional habit. Even senior engineers with decades ...
Test-commit cycle: small, fast iterations 19.05.2026 15:00
When you start working as a developer, one of the most important professional habits you need to build from day one is the test-commit cycle. This practice is not optional or reserved for experienced developers — it is a fundamental discipline that s...
Workshop: fix an HTML/CSS display bug with DevTools 19.05.2026 15:00
THEORETICAL RECAP Browser DevTools are a built-in suite of tools available in every modern browser (Chrome, Firefox, Edge) that let you inspect, debug, and modify a web page in real time — without touching your source files. Think of DevTools as an X...
Step-by-step debugging method 19.05.2026 15:00
Debugging is one of the most fundamental skills a developer must master. Whether you are writing your first lines of HTML or building a complex backend application, you will encounter bugs. The ability to find and fix them methodically, without panic...
Mini-project: versioned static site (env + Git) 19.05.2026 15:00
## Overview This mini-project is the culminating exercise of the 'Getting Started' chapter. You have learned how to set up a development environment, write meaningful commits, manage commit history, work with branches, and create a .gitignore file. N...
Workshop: adding a .gitignore file adapted to an HTML/CSS project 19.05.2026 15:00
**Theoretical Recap** A .gitignore file tells Git which files and directories to intentionally leave untracked. When Git scans your project folder, it reads .gitignore and skips anything matching the listed patterns — those files never appear in git ...
Creating a .gitignore file: why and how 19.05.2026 15:00
When you work on a development project and use Git to track your changes, not all files in your project folder should be versioned. Some files are generated automatically by your operating system, your code editor, or your development tools. Others c...
Workshop: add the list of skills in the resume 19.05.2026 15:00
**Theoretical Recap** HTML provides three types of lists, each with a distinct semantic purpose. The unordered list (``) is used when the order of items does not matter — a perfect fit for a set of technical skills. The ordered list (``) is reserved ...
HTML lists: ul, ol, dl 19.05.2026 15:00
HTML lists are fundamental structural elements that allow you to group related items together in a meaningful and accessible way. They are not simply visual formatting tools: they carry semantic meaning, which means they communicate the nature and re...
Interim assessment and self-assessment checklist 19.05.2026 15:00
This interim assessment is a structured pause in your learning journey. You have now completed a significant block of content covering HTML structure, semantic tags, title hierarchies, accessibility, code cleanliness, file naming conventions, and a f...
mini-project: creating your semantic resume 19.05.2026 15:00
## Project Overview You will build a fully semantic HTML resume (curriculum vitae) from scratch. This is a real-world document you can actually use — your own professional profile structured with clean, accessible, and meaningful HTML. No CSS, no Jav...
Workshop: cleaning and commenting your code 19.05.2026 15:00
**Theoretical Recap** Clean code and meaningful comments are not optional refinements — they are professional standards. Clean HTML means your code is readable at a glance: consistent indentation (typically 2 or 4 spaces per level), no orphaned tags,...
Best practices: file naming and simple tree structure 19.05.2026 15:00
When you build a web project, even a small one, the way you name your files and organize your folders has a direct and lasting impact on the quality of your work. This is not a matter of aesthetics or personal preference: these are professional stand...
HTML comments and clean indentation 19.05.2026 15:00
HTML comments and clean indentation are two fundamental practices in writing high-quality HTML code. Although they may seem secondary compared to semantic structuring or title hierarchy, they are essential for any professional developer working on re...
Workshop: applying title levels correctly 19.05.2026 15:00
**Theoretical Recap** HTML heading tags — from h1 to h6 — define the hierarchical structure of a document's content. Think of them as an outline: h1 is the main title of the page (used once per page, ideally), h2 breaks the content into major section...
H1-h6 title hierarchy and accessibility 19.05.2026 15:00
In the previous activities, you explored semantic tags such as header, nav, main, section, article, aside, and footer, and you learned how ARIA landmarks help assistive technologies navigate a page. Now it is time to go deeper into one of the most fu...
Workshop: building the model of a one-column blog 19.05.2026 15:00
**Theoretical Recap** Semantic HTML5 is not just about making code look organised — it is about giving meaning to the structure so that browsers, search engines, and assistive technologies can interpret the page correctly. The key section tags you ha...
Ähnliche Podcasts
Replaio ist kein Herausgeber von Podcasts; die Namen der Sendungen, Cover und Audioinhalte gehören ihren Autoren und werden über öffentliche RSS-Feeds verbreitet