I'm passionate about software development and gaming, with a solid background in .NET, ASP.NET, and C#. Currently, I work as a Software Engineer and also function as a DevOps Engineer, combining my technical skills to deliver high-performance solutions.
- Languages: C#, ASP.NET, JS, Python
- DevOps: CI/CD, Docker, Kubernetes, Azure Devops
- Front-end: Angular, NodeJs, jQuery
- Back-end: ASP.NET Core, Web API, Swagger
- Security: Fortify
- Design: Figma, Adobe XD
- Architecture: MVC / Draw: Bizagi
- Database: SQL Server, MSSQL
- SISGEDD: SISGEDD is a web solution that helps monitor the conduct of companies and their stakeholders, allowing anyone to report atmospheric conduct and keep their identity preserved. Thus contributing to an integrated cooperative environment.
- CMS/Front&Web API: Create for substitute the SISGEDD Project, the CMS&WebAPI have a new concept for optimize the coms with User and UX.
-
Deloitte Touche Tohmatsu (2022 - 01/2024) - Software Enginner PL
- Software Engineer with experience in ASP.NET development. I worked on applications for more than 100 multinational companies, with around 1000 to 5000 views daily. I have knowledge in project management with Azure DevOps, being one of the winners of the MICROSOFT DevOps Challenge, CI/CD automation, RESTful API, MVC architecture, JavaScript and its frameworks, such as Angular. Solid experience with databases, using MSSQL.
-
Deloitte Touche Tohmatsu (2022 - 2022) - Software Enginner JR
- FullStack Engineer with experience in ASP.NET development. Engaged in applications serving over 100 multinational companies, with approximately 1,000 to 5,000 daily views.
-
Latam Airlines (2016 - 2019)
- Front end Developer.
You can find me on LinkedIn. I'm always up for discussions on technology, games, or anything else!
When I'm not coding or managing infrastructure, I'm exploring new challenges. Check out what I've recently discovered:
}
using System;
class Program
{
static void Main(string[] args)
{
RandomDiscoveryOfTheDay();
}
public static void RandomDiscoveryOfTheDay()
{
string[] interestingFacts = new string[]
{
"Learned to play the guitar on my own during the quarantine.",
"Achieved the title of 'Family Chess Champion' in a heated match.",
"Developed a chocolate cake recipe that's a culinary masterpiece.",
"Tried to explain programming concepts to my cat, who probably understood nothing.",
"Unveiled a new magic trick that amazed my friends in our last virtual meetup.",
};
string discovery = interestingFacts[new Random().Next(interestingFacts.Length)];
Console.WriteLine($"Discovery of the Day: {discovery}");
}
}