Skip to content

Instantly share code, notes, and snippets.

View italopessoa's full-sized avatar
🎯
Focusing

Italo Pessoa italopessoa

🎯
Focusing
View GitHub Profile
@italopessoa
italopessoa / DesafioCleanArchitectureFIAP.md
Last active June 8, 2024 00:01
Desafio: Arquitetura Limpa para uma ONG

Desafio: Arquitetura Limpa para uma ONG

Não vale nota.* Esta é uma atividade individual que tem como objetivo fixar os conteúdos desenvolvidos durante a disciplina.

O Desafio

Para entender melhor como a Arquitetura Limpa funciona, desafiamos você a construir uma solução para o seguinte problema:

Uma ONG recebe doações de alimentos em pacotes, armazena-os e depois entrega esses pacotes para outras ONGs, de acordo com suas necessidades.

https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/master/README.md
AWSTemplateFormatVersion: 2010-09-09 #ItaloTestLambdaFunctionStack
Description: Template to create an lambda function
Resources:
HelloWorldLambdaCloudFormationItaloTemplate:
Type: 'AWS::Lambda::Function'
Properties:
Handler: index.helloworld
Role: 'arn:aws:iam::{account}:role/{role}'
Description: Hello World Lambda CloudFormation Italo Template description
Code:
AWSTemplateFormatVersion: 2010-09-09
Description: 'Create lambda function to access DynamoDB, CloudFormation and CloudWatch'
Resources:
HelloWorldExecutionRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
@italopessoa
italopessoa / SimpleInjectorAspNetCoreMVC_Boilerplate.cs
Last active September 10, 2017 00:29
Simple boilerplate to configure SimpleInjector in a asp.net core mvc project
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BitcoinShow.Web.Repositories;
using BitcoinShow.Web.Repositories.Interface;
using BitcoinShow.Web.Services;
using BitcoinShow.Web.Services.Interface;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
@italopessoa
italopessoa / .gitignore
Created September 9, 2017 16:16 — forked from kmorcinek/.gitignore
Example .gitignore file I use for C# projects
# Download this file using PowerShell v3 under Windows with the following comand:
# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore
# or wget:
# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
# User-specific files
*.suo
*.user
*.sln.docstates
@italopessoa
italopessoa / removedeadstrings.cs
Created September 8, 2017 16:33 — forked from danmoseley/removedeadstrings.cs
Remove unused strings
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace FindDeadResources