| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusecd workspaces && mkdir my-profile && cd my-profile
dotnet new console -n Profile
code .namespace Profile;
internal class Program
{
private static void Main(string[] args)
{
var aboutMeBuilder = new AboutMeBuilder()
.WithBasicInfo(
name: "Jean Carlos Moreira da Silva",
birthDate: new DateTime(1995, 9, 1),
workStartDate: new DateTime(2014, 10, 1),
currentEmployer: "5by5 IT Solutions",
favoriteStack: ".Net Core/C#",
address: new("Araraquara", "São Paulo", "Brazil")
)
.WithLanguageSkills(
new[] { "C#", "Node with JS/TS", "Python", "Powershell", "Shell", "GoLang", "JAVA" },
)
.WithDatabaseSkills(
new[] { "SQL Server", "PostgreSQL", "Oracle", "MongoDB", "DynamoDB", "Redis", "Firestore" },
)
.WithMessagingSkills(
new[] { "RabbitMQ", "SNS", "SQS", "Google Pub/Sub", "Azure Service Bus", "Kafka", "SignalR", "Event Hub", "Cloud events" }
)
.WithDevOpsSkills(
new[] { "Jenkins", "Azure Pipelines", "Cloud Build", "Spinnaker", "Github Actions" }
)
.WithBestPracticeSkills(
new[] { "Clean Code", "SOLID", "TDD", "Clean Architecture", "DDD", "Hexagonal Architecture", "Pipes&Filters" }
)
.WithCloudProviderSkills(
new[] { "AWS", "GCP", "Azure", "OCI" }
)
.WithArchitectureDesignSkills(
new[] { "Microservices", "Event Sourcing", "CQRS", "EDAs", "CDC", "ACLs", "BFFs / Gateway Aggregation", "Federated Identity", "Cache-Aside" }
)
.WithResilienceDesignSkills(
new[] { "Retry", "Circuit Breaker", "Fallback", "BulkHead", "Timeout", "SAGA" }
)
.WithKnowledgeInSSIS()
.WithKnowledgeInMultiLanguageApplication()
.WithKnowledgeInDistributedSystems()
.WithKnowledgeInServerlessApplication();
Console.Writeline(aboutMeBuilder.Build());
}
}dotnet run Profile.csprojScripts to initialize a new env Linux (base a ubuntu and feature snap enabled)
Shell 6
Examples of the Gang of Four (GoF) design patterns from course "Design Patterns in C# and .NET" At Udemy
C# 2
Learning jenkins, basic to hero concepts!! using docker environment
Dockerfile 2
Building a docker image from rabbitmq use delayed plugin
Dockerfile 1
Sample Node/Nest reference architecture, based on a simplified microservices architecture, distributed systems and docker containers.
| Back | FazBrowse Home | New Git URL |