Skip to content

Instantly share code, notes, and snippets.

View froi's full-sized avatar
🎯
Focusing

Froilán Irizarry Rivera froi

🎯
Focusing
View GitHub Profile
@froi
froi / Makefile
Last active January 15, 2024 05:51
Base Makefile for Python projects
.DEFAULT_GOAL := help
mypy: ## Run the MyPy type checker
@poetry run mypy src
ruff: ## Lint project using Ruff
@poetry run ruff check .
lint: mypy ruff
format: ## Format project using Ruff --fix
@poetry run ruff check --fix .
@froi
froi / README.md
Last active July 20, 2023 03:45
semver dependency spec
@froi
froi / pydantic-settings.py
Last active July 19, 2023 19:32
pydantic-settings
from pydantic import BaseSettings
class Settings(BaseSettings):
"""Setting / configuration class that inherits from Pydantic BaseSettings
This will first check for environment variables of the same name, if none are found
the default values are applied.
More info: https://pydantic-docs.helpmanual.io/usage/settings/
"""
@froi
froi / poetry-install-compilation-log
Last active May 5, 2023 01:05
nullptr_t: Error log for Poetry install of Python packages that need some sort of compilation
❯ poetry install --only=main
Installing dependencies from lock file
Package operations: 20 installs, 0 updates, 0 removals
• Installing grpcio-tools (1.48.2): Failed
CalledProcessError
Command '['/Users/froi/Library/Caches/pypoetry/virtualenvs/projecte-5wzozpT2-py3.8/bin/python', '-m', 'pip', 'install', '--use-pep517', '--disable-pip-version-check', '--prefix', '/Users/froi/Library/Caches/pypoetry/virtualenvs/projecte-5wzozpT2-py3.8', '--no-deps', '/Users/froi/Library/Caches/pypoetry/artifacts/4c/f1/a9/934e68c4bc7e032f327f4bc871af52e86a4f31a91e0e3b33ac131d84f7/grpcio-tools-1.48.2.tar.gz']' returned non-zero exit status 1.
@froi
froi / .gitconfig
Last active July 22, 2022 19:12
Global Git configuration and template
[user]
name = Froilán Irizarry Rivera
email =
signingkey =
[core]
excludesfile = ~/.gitignore_global
editor = nano
quotepath = false
@froi
froi / cbt-helpers.sh
Last active May 25, 2022 20:48
gcp helper commands
#!/usr/bin/env zsh
# These commands can be configured somewhat in ~/.cbtrc
# full docs at https://cloud.google.com/bigtable/docs/cbt-overview#create-cbtrc
instance=""
project_id=""
table_name=""
# Delete all rows in a table
cbt -instance ${instance} \
@froi
froi / manage-lets-encrypt-cert-aws-cloudfront.sh
Last active April 17, 2022 23:40
Script to help manage and install Let's Encrypt cert to Cloudfront
#!/usr/bin/env sh
# This code is based on https://eang.it/letsencrypt-with-amazon-cloudfront/
export AWS_ACCESS_KEY_ID=""
export AWS_SECRET_ACCESS_KEY=""
bucket_name=""
region=""
distribution_id=""
domain=""
@froi
froi / candidate-eval-template.md
Last active April 17, 2022 20:32
Template to help me evaluate a candidate

Interview notes for {{candidate name}}

Technical submission

Submission doc

Things to evaluate

Documentation

@froi
froi / pull_request_template.md
Last active February 23, 2022 17:59
GitHub PR template

Description

Jira and GitHub Issues