Skip to content

Instantly share code, notes, and snippets.

View eduardo3g's full-sized avatar

Eduardo Santana eduardo3g

View GitHub Profile
@eduardo3g
eduardo3g / dell-D6000-dock-ubuntu.md
Created August 23, 2022 12:46 — forked from noahp/dell-D6000-dock-ubuntu.md
Dell Universal Dock D6000 on ubuntu
@eduardo3g
eduardo3g / ambiente-dev-ubuntu.sh
Created August 23, 2022 01:03 — forked from luizomf/ambiente-dev-ubuntu.sh
Ambiente de desenvolvimento Python no Ubuntu - Com VS Code, Google Chrome, ZSH, Oh-my-zsh, zsh-syntax-highlighting, zsh-autosuggestions e spaceship prompt.
#!/bin/bash
# Executar comandos a seguir para atualizar os pacotes
sudo apt update -y
sudo apt upgrade -y
# Instalar pacotes a seguir
sudo apt install dkms make perl gcc build-essential git curl -y
# Instalar Python 3.10 (opcional)
@eduardo3g
eduardo3g / serverless.yml
Created February 16, 2022 19:29 — forked from codecitizen/serverless.yml
A serverless.yml file configuring a AWS ElastiCache redis instance that is accessible by all AWS Lambda functions deployed by this serverless function.
service: my-service
provider:
name: aws
runtime: nodejs8.10
stage: ${opt:stage, 'dev'}
environment:
REDIS_HOST:
"Fn::GetAtt": [ElasticCacheCluster, RedisEndpoint.Address]
functions:
@eduardo3g
eduardo3g / .env
Created September 9, 2021 00:39 — forked from antstanley/.env
Get Cognito User Token
COGNITO_CLIENT_ID=<cognito client id>
COGNITO_USER_POOL_ID=<cognito user pool id>
COGNITO_USERNAME=<cognito username>
COGNITO_PASSWORD=<cognito user password>