Skip to content

Instantly share code, notes, and snippets.

View ofmxtheuuz's full-sized avatar
:bowtie:

Matheus Piccoli ofmxtheuuz

:bowtie:
View GitHub Profile
@ofmxtheuuz
ofmxtheuuz / main.tf
Created August 11, 2023 19:11
terraform file to aws ec2
provider "aws" {
region = "sa-east-1" # sao paulo
}
resource "aws_instance" "example_instance" {
ami = "ami-0c55b159cbfafe1f0"
instance_type = "t2.micro"
subnet_id = "SUBNET_ID"
key_name = "your-key-pair-name"
@ofmxtheuuz
ofmxtheuuz / init.vim
Created May 2, 2023 21:21
new init.vim
"*****************************************************************************
"" Vim-Plug core
"*****************************************************************************
let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim')
if has('win32')&&!has('win64')
let curl_exists=expand('C:\Windows\Sysnative\curl.exe')
else
let curl_exists=expand('curl')
endif
@ofmxtheuuz
ofmxtheuuz / docker-restart.sh
Created May 2, 2023 21:15
docker-restart.sh
#!/bin/bash
# Para todos os containers
docker stop $(docker ps -aq)
# Remove todos os containers
docker rm $(docker ps -aq)
# Remove todas as imagens (exceto imagens base do Docker)
docker rmi $(docker images -q --filter "dangling=false")
@ofmxtheuuz
ofmxtheuuz / skills.json
Last active October 12, 2023 16:28
mxtheuz.com.br skills
{
"about_me": "Eai, galera! Como não podemos nos conhecer pessoalmente, aqui vai um pouco sobre mim... Mexo com tecnologia há 2 anos, já desenvolvi muitas coisas entre muitas plataformas, um ambiente mais louco que o outro! Já desenvolvi aplicações desktop e webapps, quebrei a cabeça organizando um servidor Linux inteiro! Mas meu foco principal é desenvolvimento Full-Stack com PHP, ASP.NET Core MVC, JavaScript, TypeScript e Banco de Dados, Aplicações no Console e Desktop com .NET, e Aplicações Mobile com React Native.",
"skills": [
{
"id": 1,
"name": "C#",
"level": "Alto",
"description": "Desenvolvimento ASP.NET Core. Desenvolvimento desktop apps. Desenvolvimento no console. SQL Server, MySQL, SQLite, MongoDb. .NET Core/Framework. Entity Framework. Identity Framework. Repository Pattern. SOLID. DDD. Clean Code. D.I. API. Autenticação e autorização. JWT (Json Web Token). Envio de e-mails. "
},
{
@ofmxtheuuz
ofmxtheuuz / init.vim
Created March 27, 2023 17:13
My init.vim (nvim configs)
call plug#begin()
Plug 'sainnhe/sonokai'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'ryanoasis/vim-devicons'
Plug 'sheerun/vim-polyglot'
Plug 'preservim/nerdtree'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'Xuyuanp/nerdtree-git-plugin'