<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: michelebitetto</title>
    <description>The latest articles on DEV Community by michelebitetto (@michelebitetto).</description>
    <link>https://dev.to/michelebitetto</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F326606%2Fa7a09e01-5fb7-4a8f-92a6-48258e4cf02f.jpeg</url>
      <title>DEV Community: michelebitetto</title>
      <link>https://dev.to/michelebitetto</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/michelebitetto"/>
    <language>en</language>
    <item>
      <title>Delete unused node modules and improves performance in a minute 🚀</title>
      <dc:creator>michelebitetto</dc:creator>
      <pubDate>Fri, 20 Oct 2023 16:00:53 +0000</pubDate>
      <link>https://dev.to/michelebitetto/delete-unused-node-modules-and-improves-performance-in-a-minute-3hon</link>
      <guid>https://dev.to/michelebitetto/delete-unused-node-modules-and-improves-performance-in-a-minute-3hon</guid>
      <description>&lt;p&gt;&lt;strong&gt;Table of content&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;1. Introduction&lt;br&gt;
2. Impact of node modules files&lt;br&gt;
3. Use "npm-check"&lt;br&gt;
4. Ongoing monitoring and maintenance&lt;br&gt;
5. Improving performance and environmental impact&lt;br&gt;
6. My Vision&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Introduction 🌐
&lt;/h2&gt;

&lt;p&gt;When it comes to software development, managing storage space can be a critical issue. A common problem that many developers face is the accumulation of unused "node modules" files in projects. These files can take up significant amounts of disk space and adversely affect system performance.&lt;/p&gt;

&lt;p&gt;However, manually deleting them can be tedious and time-consuming. In this article, we will explore &lt;strong&gt;how you can quickly delete unused "node modules" files&lt;/strong&gt; and free up valuable disk space.&lt;/p&gt;

&lt;h3&gt;
  
  
  Importance of cleaning up node modules files
&lt;/h3&gt;

&lt;p&gt;Over time, the "node modules" directory can grow significantly due to the installation of new packages and their dependencies.&lt;/p&gt;

&lt;p&gt;Many of these dependencies may no longer be needed in the project, but they still remain in the directory, taking up valuable space. This accumulation of unused modules can &lt;strong&gt;make the project unwieldy and affect performance&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Objective
&lt;/h3&gt;

&lt;p&gt;The main objective of this article is to provide practical guidance on how to identify and delete unused "node modules" files efficiently and safely. We will explore &lt;strong&gt;best practices&lt;/strong&gt; for dealing with this common problem. You will learn how to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Identify unused modules in your project.&lt;/li&gt;
&lt;li&gt; Perform the cleanup in a safe manner to avoid loss of important data.&lt;/li&gt;
&lt;li&gt; Automate the cleaning process to save time and effort.&lt;/li&gt;
&lt;li&gt; Constantly monitor your development environment to maintain a clean and optimized workspace.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  2. Impact of node modules files 💥
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvdk10ofkemesklnutv4o.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvdk10ofkemesklnutv4o.jpg" alt="Unused node modules meme"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The size of the "node modules" directory can vary greatly depending on the project. In smaller projects, it may not pose a significant problem, but in complex applications or long-running projects, this directory can grow exponentially. The consequences of uncontrolled accumulation of "node modules" files include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Disk space occupancy&lt;/strong&gt;: As new dependencies are installed, the overall size of the "node modules" directory increases, consuming disk space. This can become problematic, especially on systems with limited storage space.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Performance&lt;/strong&gt;: Projects with a large "node modules" directory may experience performance slowdowns. Loading all these dependencies can take more time and resources, affecting startup speed and application execution.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Difficulties in maintenance&lt;/strong&gt;: Managing a bulky "node modules" directory can make project maintenance more complex. Searching for specific packages or resolving conflicts between dependencies may require more effort.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  3. Use npm-check 🎩
&lt;/h2&gt;

&lt;p&gt;To identify and remove unused "node modules" files in your js project, you can use a tool called &lt;strong&gt;npm-check&lt;/strong&gt;. "npm-check" is a command-line tool that allows you to scan your project and identify unused dependencies. Here's how you can do it:&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 1: Install npm-check
&lt;/h3&gt;

&lt;p&gt;Before you start, make sure you have "npm-check" installed on your system. You can easily do this using npm, with the following command:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

npm install -g npm-check


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h3&gt;
  
  
  Step 2: Run npm-check
&lt;/h3&gt;

&lt;p&gt;Once installed, you can run "npm-check" from any directory in your js project. Use the following bash command to start the scan:&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

npm-check


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h3&gt;
  
  
  Step 3: Identify unused dependencies
&lt;/h3&gt;

&lt;p&gt;Npm-check will highlight unused dependencies in the list with a specific marking. They will be marked as "unused" next to their name.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpc2a754ea02ykvc47k0x.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpc2a754ea02ykvc47k0x.jpg" alt="Unused dependencies example"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  Step 4: Remove unused node modules.
&lt;/h3&gt;

&lt;p&gt;After unused dependencies are identified, you will have two options:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Remove them directly from the "npm-check" interface. You can select the dependencies you want to remove, and the tool will handle the removal safely.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Remove them manually with:&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

npm uninstall 'package-name'


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Make sure you are sure you want to remove these dependencies, as this operation is not reversible.&lt;/p&gt;

&lt;p&gt;Using "npm-check," you can greatly simplify the process of identifying and removing unused dependencies, saving disk space and improving the performance of your js project. &lt;/p&gt;

&lt;p&gt;Before performing significant removal operations, it is always a good practice to back up your project or use a version control system. This way, you can maintain a clean and optimized development environment.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd9djsrs6jpsm2iw49bcx.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd9djsrs6jpsm2iw49bcx.jpg" alt="Remove unused dependencies meme"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Ongoing monitoring and maintenance 📈
&lt;/h2&gt;

&lt;p&gt;Once you have eliminated unused "node modules" files in your js project, it is critical to establish an ongoing monitoring and maintenance practice to ensure that your development environment remains clean and efficient over time.&lt;/p&gt;

&lt;p&gt;In this section, we will explore the importance of keeping a constant eye on dependencies and suggest some best practices for effective maintenance.&lt;/p&gt;

&lt;h3&gt;
  
  
  Importance of periodic maintenance
&lt;/h3&gt;

&lt;p&gt;Periodic maintenance of your js project is crucial to avoid the accumulation of unused "node modules" files in the future.&lt;/p&gt;

&lt;p&gt;As your project evolves and new dependencies are added, new unused modules may emerge. This is why it is essential to establish a regular cleanup routine to keep your workspace in order.&lt;/p&gt;

&lt;h3&gt;
  
  
  Continuous monitoring
&lt;/h3&gt;

&lt;p&gt;To simplify continuous monitoring of your project's dependencies, you can take advantage of tools and practices such as constant monitoring with npm-check.&lt;/p&gt;

&lt;p&gt;Continuous maintenance and dependency monitoring of your project ensures that your development environment remains efficient and free of unused files. They also reduce the chance of accumulating unnecessary dependencies again and improve the overall management of your project's libraries and modules.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Improving performance and environmental impact 😁
&lt;/h2&gt;

&lt;p&gt;In the process of identifying and removing unused "node modules" files, you are not only freeing up disk space, but you are also helping to reduce digital pollution and improve the overall performance of your project.&lt;/p&gt;

&lt;p&gt;In this section, we will examine how optimizing your development environment can reduce environmental impact and improve efficiency.&lt;/p&gt;

&lt;h3&gt;
  
  
  Application performance benefits
&lt;/h3&gt;

&lt;p&gt;In addition to taking up disk space, the accumulation of unused dependencies can adversely affect the performance of your applications.&lt;/p&gt;

&lt;p&gt;Loading unnecessary modules takes time and system resources, slowing down the startup and execution of applications. By keeping your development environment clean, you can ensure that your applications are faster and more responsive.&lt;/p&gt;

&lt;h3&gt;
  
  
  Reduce environmental impact
&lt;/h3&gt;

&lt;p&gt;As developers, we have a responsibility to use computing resources responsibly. Cleaning up unused dependencies not only improves the performance of your project, but also demonstrates a commitment to sustainability and environmental responsibility in software development.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;This conscious behavior can be an integral part of an ethical and sustainable development practice.&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Saving disk space, improving performance, and reducing digital pollution are important goals for modern developers. By maintaining a clean and efficient development environment, you contribute to a more sustainable technology industry and the optimization of computing resources.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. My Vision 🌱
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffnh460s1rrgo7ajgo5li.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffnh460s1rrgo7ajgo5li.jpg" alt="Nature"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My name is Michele, I'm a frontend developer&lt;/strong&gt; concerned about the environment, and I have embarked on an important journey to share awareness about the environmental impact of website performance.&lt;/p&gt;

&lt;p&gt;This series of articles not only provides practical guidance on how to optimize web projects, but also demonstrates the importance of reducing digital pollution, an aspect often overlooked in the development world.&lt;/p&gt;

&lt;p&gt;Responsibility in resource use and adopting sustainable development practices have become an essential part of your approach to frontend development.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/michelebitetto"&gt;These articles&lt;/a&gt; are a valuable contribution to educating developers and the technology community on how to reduce digital pollution and preserve the environment. By continuing on this path, you will help build a cleaner, more efficient and sustainable digital world.&lt;/p&gt;

&lt;p&gt;If you are interested, follow me and join in this journey to a more sustainable and efficient web 😊&lt;/p&gt;

&lt;p&gt;Thank you 🍋&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🌱 How I realized my website was affecting climate change 🌡️</title>
      <dc:creator>michelebitetto</dc:creator>
      <pubDate>Thu, 19 Oct 2023 16:04:13 +0000</pubDate>
      <link>https://dev.to/michelebitetto/how-i-realized-my-website-was-affecting-climate-change-48kn</link>
      <guid>https://dev.to/michelebitetto/how-i-realized-my-website-was-affecting-climate-change-48kn</guid>
      <description>&lt;p&gt;In the fast-paced world of web development, we often focus on aspects such as attractive design, cutting-edge functionality and intuitive user interfaces. &lt;strong&gt;&lt;em&gt;But how often do we stop to think about the environmental impact of our digital creations?&lt;/em&gt;&lt;/strong&gt; I confess that, for a long time, this aspect escaped my attention. That all changed when I decided to explore the environmental impact of my own website. And what I discovered left me shocked.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔥 The call to attention
&lt;/h2&gt;

&lt;p&gt;The idea of examining the environmental impact of my website came about casually. I was involved in a discussion about climate change and it occurred to me that if even large data centers consume huge amounts of energy, how much energy was my modest website consuming? So I decided to do something we rarely do: measure the environmental impact of my web pages.&lt;/p&gt;

&lt;h2&gt;
  
  
  🌡️ The shocking discovery
&lt;/h2&gt;

&lt;p&gt;To begin with, I used a web performance evaluation tool to analyze my website; it was &lt;a href="https://www.websitecarbon.com"&gt;https://www.websitecarbon.com&lt;/a&gt;. What I discovered left me speechless: my site was slow, heavy and required a huge amount of energy to load since it was a very large blog on wordpress (50K visits per month).&lt;/p&gt;

&lt;h2&gt;
  
  
  🌐 My website's carbon footprint
&lt;/h2&gt;

&lt;p&gt;As I examined the data, I discovered that my website had a considerable carbon footprint. Every time someone visited my site, it emitted more CO2 than I ever thought it would. Unoptimized images, unused scripts and CSS, and a number of plugins were the problem in all of this. My website was polluting far more than I had ever imagined: &lt;strong&gt;every year a 99000 km trip of a car, absurd right?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---JdV4l43--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t63xwpmts3c0gixjyixk.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---JdV4l43--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t63xwpmts3c0gixjyixk.jpg" alt="Me when i realized my website impact" width="668" height="374"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;All this for the mere convenience of having a ready-made wordpress website. I knew all along that it was not the best performing choice, but for convenience and the large amount of traffic, I decided to use it anyway.&lt;/p&gt;

&lt;p&gt;I realized that if my website was so damaging, who knows how many other websites were having an even greater impact on the environment?&lt;/p&gt;

&lt;h2&gt;
  
  
  🌱 Rebirth: Toward a sustainable web
&lt;/h2&gt;

&lt;p&gt;My discovery prompted me to embark on a journey toward digital sustainability. I began optimizing my websites more efficiently by reducing page loads, compressing images, and using performance-conscious technologies. I prefer to spend more time on performance rather than using old technologies that only hurt the environment.&lt;/p&gt;

&lt;p&gt;In addition, I have decided that I will start sharing my findings with the community and encourage other developers to evaluate and improve the performance of their websites so that we can improve the environmental impact of our applications.&lt;/p&gt;

&lt;h2&gt;
  
  
  💬 Always communicate 😊
&lt;/h2&gt;

&lt;p&gt;I'm always open to dialogue and knowledge sharing on these topics. Together, we can make the web a better, faster, greener place for everyone. One website at a time.&lt;/p&gt;

&lt;p&gt;If you have questions or would like to discuss websites environmental impact and performance, please feel free to contact me! 🚀&lt;/p&gt;

&lt;p&gt;Thank you&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>performance</category>
      <category>development</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Coronavirus Web Application in Italy 🇮🇹</title>
      <dc:creator>michelebitetto</dc:creator>
      <pubDate>Sun, 05 Apr 2020 11:00:27 +0000</pubDate>
      <link>https://dev.to/michelebitetto/coronavirus-web-application-in-italy-4887</link>
      <guid>https://dev.to/michelebitetto/coronavirus-web-application-in-italy-4887</guid>
      <description>&lt;p&gt;We are in Italy, early March, my friends and I wonder if there is a site to monitor the Italian situation of Covid-19. We find the Italian civil protection website, but the graphics are not what we want, also the service offered is not optimized for mobile devices.&lt;/p&gt;

&lt;p&gt;As I surf the web I find that civil protection has provided the national contagion data in a json file. Perfect, I will create my application. I want to do in a short time to monitor the infections through the graphs. This must be available on the web to be able to share it with my friends, it must also be simple and fast.&lt;/p&gt;

&lt;p&gt;I am very familiar with React, but I decide to deepen AngularJS since I use it a lot in my work, it's only a small application.&lt;/p&gt;

&lt;h2&gt;
  
  
  March 12
&lt;/h2&gt;

&lt;p&gt;On the first day I develop a first draft of the application that I improve in the following days&lt;/p&gt;

&lt;h2&gt;
  
  
  March 16
&lt;/h2&gt;

&lt;p&gt;I release the first version with the features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Display of national data updated to date.&lt;/li&gt;
&lt;li&gt;Graphs of the history of the currently positive, healed, intensive care, deceased, move positive and positive growth percentage.&lt;/li&gt;
&lt;li&gt;Dark theme and Lite theme.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7zhfye77--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.ibb.co/whDhTzG/v1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7zhfye77--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.ibb.co/whDhTzG/v1.png" alt="Alt text of image" width="397" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  March 21
&lt;/h2&gt;

&lt;p&gt;The application begins to be shared by my friends, very well. I continue my developments and integrate new features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;New graphics for updated data to date.&lt;/li&gt;
&lt;li&gt;History of regional data.&lt;/li&gt;
&lt;li&gt;Share button.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--a5VnknkS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.ibb.co/FDgC5fr/v2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--a5VnknkS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.ibb.co/FDgC5fr/v2.png" alt="Alt text of image" width="397" height="598"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;At this point, the application reaches the first views even outside of my friends, 100 unique users per day with only sharing the application on Facebook and Instagram.&lt;/p&gt;

&lt;h2&gt;
  
  
  March 27
&lt;/h2&gt;

&lt;p&gt;In the meantime, I find an API that provides world data, I immediately get to work and in a few days I release these features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;New world data section.&lt;/li&gt;
&lt;li&gt;Search filter on the world cup.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--u_v03tIM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.ibb.co/7NR8rs1/v3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--u_v03tIM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.ibb.co/7NR8rs1/v3.png" alt="Alt text of image" width="404" height="602"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I share the application on Linkedin and with colleagues. It reaches a peak of 400 unique users per day.&lt;/p&gt;

&lt;p&gt;In the following days I released bug fixes and improvements. Everyone talks to me about a simple, fast and intuitive application compared to others on the web that provide the same data. I am happy with the result achieved and that I can be useful in this complicated period for everyone.&lt;/p&gt;

&lt;p&gt;You can see the application via this link: &lt;a href="https://www.daticovid.com"&gt;https://www.daticovid.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I thank you for reading,&lt;br&gt;
Michele.&lt;/p&gt;

</description>
      <category>coronavirus</category>
      <category>angular</category>
      <category>analytics</category>
      <category>chartjs</category>
    </item>
    <item>
      <title>Working in Italy in the time of Coronavirus 🇮🇹</title>
      <dc:creator>michelebitetto</dc:creator>
      <pubDate>Fri, 06 Mar 2020 22:01:11 +0000</pubDate>
      <link>https://dev.to/michelebitetto/working-in-italy-in-the-time-of-coronavirus-3pb2</link>
      <guid>https://dev.to/michelebitetto/working-in-italy-in-the-time-of-coronavirus-3pb2</guid>
      <description>&lt;p&gt;I'm Michele, I'm a computer engineer and I live near Milan. As you well know, Italy is one of the countries most affected by the Corona Virus, so I am here to tell you my work history of the past two weeks.&lt;/p&gt;

&lt;p&gt;In Italy remotely working is not adopted by all companies and you can work remotely at most two days a week if you are lucky. For this reason, after the emergency, it was strange for everyone. Milan after the coronavirus was a deserted city because schools and offices are closed, the fear of people was great.&lt;/p&gt;

&lt;p&gt;Working for two consecutive weeks from home made me realize that I’m more productive with both my team and my client and this didn’t surprise me. I always thought that remote work was a more productive practice.&lt;/p&gt;

&lt;p&gt;I also know that these weeks of remote work are productive for my company's future choices. Many colleagues said they were more productive, and companies are also saving money. When you finish your job you are free, you no longer have to take the train late to go home and this is very important for us.&lt;/p&gt;

&lt;p&gt;Unfortunately, my country isn’t having a good time, but I believe that our government, people and health care will be able to fight this virus.&lt;br&gt;
Many companies are losing money and it’s a difficult time for many workers. I thank for having a job that doesn't suffer any blows and I hope that my compatriots in difficulty will recover better than before.&lt;/p&gt;

&lt;p&gt;I am convinced that my beautiful country will up, together with China.&lt;/p&gt;

&lt;p&gt;Thank you developers,&lt;br&gt;
Michele.&lt;br&gt;
🇮🇹❤️&lt;/p&gt;

</description>
      <category>coronavirus</category>
      <category>remotely</category>
      <category>italy</category>
    </item>
  </channel>
</rss>
