Skip to content

Instantly share code, notes, and snippets.

View pedroaugusto's full-sized avatar

Pedro Benevides pedroaugusto

View GitHub Profile
@pedroaugusto
pedroaugusto / resume.json
Last active February 24, 2026 09:49
Resume
{
"meta": {
"theme": "monochrome-noir"
},
"basics": {
"name": "Pedro A. S. Benevides",
"email": "pedro.augusto.sb@gmail.com",
"phone": "+351 914-380-408",
"summary": "Senior Software Engineer with over a decade of experience, primarily in high-growth startup environments. Expert in scaling web applications from initial development to global cloud deployment. Proven track record managing systems with 1 million daily active users and executing massive 30 TB database migrations with minimal downtime.",
"location": {
@pedroaugusto
pedroaugusto / configure.py
Created August 10, 2022 15:49
Configure custom slack Oauth Install page using Bolt Django
import slack_bolt.oauth.oauth_flow
from slack_bolt.oauth.oauth_flow import OAuthFlow
from slack_bolt.request import BoltRequest
class CustomPageOauthFlow(OAuthFlow):
def build_install_page_html(self, url: str, request: BoltRequest) -> str:
return 'Hello world!'
settings=OAuthSettings(
client_id=client_id,