View utils.api.exception_handler.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from functools import wraps | |
from marshmallow import ValidationError | |
from mensageria.backends.exceptions import BackendException | |
from mensageria.core.exceptions import ( | |
BackendNotFoundException, | |
ConfigurationNotFoundException, | |
) | |
View dec.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from decimal import * | |
PLACES = Decimal(10) ** -6 | |
option1 = Decimal("1000.1111") | |
option2 = Decimal("300.2222") | |
option3 = Decimal("500.3333") | |
total = option1 - option2 - option3 |
View gols.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jogos = range(1,6) | |
total_1t = total_2t = 0 | |
for j in jogos: | |
gols_1t = int(input(f"Quantos gols no jogo {j} no primeiro tempo? >>> ")) | |
gols_2t = int(input(f"Quantos gols no jogo {j} no segundo tempo? >>> ")) | |
total_1t += gols_1t | |
total_2t += gols_2t | |
media_1t = total_1t/5 |
View python.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"if": { | |
"prefix": "if", | |
"body": [ | |
"if ${1:expression}:", | |
"\t${2:pass}" | |
], | |
"description": "Code snippet for an if statement" | |
}, | |
"if/else": { |
View Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM nginx:alpine | |
COPY index.html /usr/share/nginx/html |
View app.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from time import sleep | |
import os | |
hi = os.environ.get('HELLO') | |
seconds = 1 | |
while(True): | |
sleep(1) | |
print("logging...", seconds, "Env Var: ", hi) |
View term_colors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default="\033[39m" | |
black="\033[30m" | |
red="\033[0;31m" | |
green="\033[32m" | |
yellow="\033[33m" | |
blue="\033[34m" | |
magenta="\033[35m" | |
cyan="\033[36m" | |
gray="\033[90m" |
View post-receive
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
export GIT_WORK_TREE=/folder/to/my/app # like /var/www | |
#export GIT_DIR=/my/repo.git | |
git checkout -f master | |
cd $GIT_WORK_TREE | |
composer dump-autoload |
View .bashrc_ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hostname hardcoded for weird hosting names | |
# Generates a nice hostname for use in hosting services that creates random users and random nameservers | |
# | |
# Helps to track whare you are logged in when using ssh | |
# | |
# Generated with: http://ezprompt.net/ | |
export PS1="\[\e[36m\]hostname\[\e[m\]:\W\[\e[34m\] \$\[\e[m\] " |
View vscode_settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Hackerman", | |
"files.trimTrailingWhitespace": true, | |
"workbench.colorCustomizations": { | |
"editor.background": "#000", | |
"editorRuler.foreground": "#08ae6e95", | |
"statusBar.background": "#000", | |
}, | |
"terminal.integrated.fontSize": 14, | |
"window.zoomLevel": 1, |
NewerOlder