Skip to content

Instantly share code, notes, and snippets.

View mondaini's full-sized avatar
🌎
Coding Remotely

Filipe Mondaini mondaini

🌎
Coding Remotely
View GitHub Profile
@mondaini
mondaini / Remote.md
Last active November 24, 2023 20:08
List of companies hiring for full remote positions to work with companies in the US/Europe
@mondaini
mondaini / app.yaml
Created February 3, 2022 00:19 — forked from alukach/app.yaml
An example Github Actions for Python + Pipenv + Postgres + Pyright
# .github/workflows/app.yaml
name: My Python Project
on: push
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
services:
@mondaini
mondaini / ssm2env.py
Created March 21, 2023 19:07
Get SSM Parameters and set them as Environment Variables
import boto3
import os
# Please replace with your AWS access key and secret key
aws_access_key = "access_key"
aws_secret_key = "secret_key"
# Please replace with your desired region
region_name = "us-east-1"