Category: Technical requirements

In this step, you identify and gather potential data sources that may be relevant to your project’s objectives. This involves finding datasets, databases, APIs, or any other sources that may contain the data needed for your analysis and modeling. The goal of data discovery is to understand the landscape of available data and assess its […]
In this section, we will gain an understanding of what EDA is. We will see why we need to perform it and discuss its advantages. We will also look at the life cycle of an ML project and learn about the role of data labeling in this cycle. EDA comprises data discovery, data collection, data […]
Imagine embarking on a journey through an expansive ocean of data, where within this vastness are untold stories, patterns, and insights waiting to be discovered. Welcome to the world of data exploration in machine learning (ML). In this chapter, I encourage you to put on your analytical lenses as we embark on a thrilling quest. […]
In the preceding code block, we created the exerciseList signal by declaring it to contain ExerciseSetList and initializing it with an empty list. Then, we changed the getInitialList method toupdate the exerciseList signal based on the API return. We also changed the delete method to update the signal after deleting the diary entry. As we […]
Controlling the state of a frontend application is one of the biggest challenges for a developer, as by nature, the interface is dynamic and needs to react to various user actions. Angular, with its stacks included philosophy, already had tools suitable for this task, and we studied in Chapters 5, Angular Services and the Singleton […]
The main intention behind the new HTML template flow control syntax was to have a new basis for building new possibilities in the framework’s templates. The first new feature made possible by the syntax is the defer instruction, with which it is possible to lazy load components directly from the HTML template. We learned in […]
The Angular framework is continually evolving with new features and optimizations, but to help communities and developers keep organized and their applications up to date, the Angular team uses semantic versioning to number their releases. A semantic version number is composed of three parts and each part has the following representation: In this book, we […]
Until this chapter, we have been using the web server included in the Angular package to run our application locally. Although very competent, it focuses purely on the developer’s experience and does not have the performance and scalability capabilities required by the production environment. For this purpose, we use production-grade web servers. One of the […]
With our micro frontend project ready, we need to prepare it to be consumed by another application. There are several ways to share micro frontends, from the simplest (and obsolete), with the use of iframes, to more modern, but complex, solutions such as module federation. In this section, we will use an approach widely used […]
In the service, we are making HTTP requests to consult exercises and add new ones. For more details about Angular services, you can consult Chapter 5, Angular Services and the Singleton Pattern, and Chapter 9, Exploring Reactivity with RxJS. However, we are experiencing an error because we are not importing the HttpClientModule module. But how […]


Terms of Use | About yeagerback | Privacy Policy | Cookies | Accessibility Help | Contact yeagerback