Welcome to Rosario Martone’s .NET Hub!
As a dedicated Software Engineer, I’m excited to share this space where we explore the dynamic world of .NET development. Whether you’re a coding novice or an experienced developer, find tutorials, insights, and personal stories tailored to enhance your journey.
My passion extends beyond coding to include Agile methodology and Scrum practices—topics often discussed with my partner, a seasoned Scrum Master. These discussions provide unique insights into collaborative software development dynamics.
Away from the screen, I’m an avid traveler and cultural enthusiast. Since 2015, my partner and I have had the privilege of living in the United Kingdom, bringing a global perspective to our discussions.
Moreover, I am deeply passionate about AI, and it’s worth noting that the content on this page is crafted with the assistance of ChatGPT. Rest assured, while ChatGPT aids in creating the content, everything else is a result of my extensive experience—I’ve been working in IT since 2002.
Explore the website to find a dedicated section where you can connect with me, download code examples, and discover links to courses that have shaped my growth. Let’s foster a community that shares, learns, and grows together in the realms of .NET, Agile, Scrum, AI, and beyond! For ongoing discussions and updates, you can connect with me on LinkedIn—let’s keep the conversation alive.
using System.Collections.Generic;
namespace rossdev.Domain
{
public class Ross : IPerson
{
public string FullName { get; } = "Rosario Martone";
public string CurrentJob { get; } = "Software Engineer at Handelsbanken, UK";
public string WorkExperience { get; } = "20+ years";
public IEnumerable<string> SpokenLanguages { get; } = new List<string>() { "Italian, English" };
public string OnGoingLearning { get; } = "Clean Architecture, by Amichai Mantinband";
public string Email { get; } = "contacts@rossdev.it";
public string Greetings()
{
return "Ciao! Hello!";
}
//...
}
}
Currently focused on...
...preparing for Microsoft Certified: Azure Developer Associate.
Couse documentation
...preparing for Microsoft Certified: Azure Fundamentals.
Couse documentation