Skip to content

Instantly share code, notes, and snippets.

@fabioivi
fabioivi / app.py
Last active October 16, 2022 04:07
app.py Nubank test
from flask import Flask, request, render_template, url_for, flash, redirect
import logging
import sqlite3
from itsdangerous import base64_decode
logging.basicConfig(filename='application.log', filemode='a', level=logging.DEBUG)
app = Flask(__name__)
app.config['SECRET_KEY'] = 'aXNzb05hb0VoVW1hRmxhZyxTb3JyeQ'
ADM_USER="grace_hopper"
ADM_KEY=b"dm9jZU5hb0RldmVEZWl4YXJTZW5oYXNIYXJkY29kZWRBbGVtRGlzc28sRWhCb2xhY2hhRU5hb0Jpc2NvaXRv"
@fabioivi
fabioivi / next_nginx.md
Created August 1, 2022 20:27 — forked from kocisov/next_nginx.md
How to setup next.js app on nginx with letsencrypt

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example