This file contains hidden or 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 flask_restful import Resource, reqparse | |
hoteis = [ | |
{ | |
'hotel_id': 1, | |
'nome': 'Hotel 1', | |
'estrelas': 4.3, | |
'diaria': 420.34, | |
'cidade': 'Fortaleza' | |
}, |
This file contains hidden or 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.startupEditor": "none", | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
// Fontes | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 14, |
This file contains hidden or 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
import 'package:http/http.dart' as http; | |
// T é sua classe | |
// T is your class | |
Future<List<T>> getDeputados() async { | |
final response = await http.get('url'); | |
if (response.statusCode == 200) { |
This file contains hidden or 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.startupEditor": "none", | |
"workbench.colorTheme": "One Dark Pro", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.fontFamily": "'Fira Code', monospace", | |
"editor.fontLigatures": true, | |
"window.zoomLevel": 0, | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "es5", |
This file contains hidden or 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
[ | |
{ | |
"url": "https://queroworkar.com.br/jobs/desenvolvedor-android-21/", | |
"title": "Desenvolvedor Android", | |
"date": "13 de março de 2020", | |
"description": "A FS está em busca de um(a) Desenvolvedor(a) Android para atuar em nosso time. Este(a) profissional deve ser apaixonado pelo desenvolvimento de software e pelo trabalho colaborativo em equipes multidisciplinares de desenvolvimento, sendo evangelista na melhoria contínua da qualidade dos aplicativos mobile. Será responsável em desenvolver aplicativos mobile, colaborando com os demais times no entendimento dos requisitos de negócio e técnico, juntamente com os respectivos critérios de aceitação para a elaboração e codificação dos aplicativos. Requisitos e Conhecimentos Desejáveis Experiência comprovada em desenvolvimento Android Excelente conhecimento na linguagem Kotlin Vivencia com desenvolvimento com testes unitários e instrumentados Inglês avançado Domínio da Arquitetura do Android (threads, services, job schedulers, receivers, coroutines, |
This file contains hidden or 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.startupEditor": "none", | |
// Editor | |
"editor.formatOnSave": true, | |
// Theme | |
"workbench.colorTheme": "One Dark Pro Darker", | |
"workbench.iconTheme": "material-icon-theme", |
This file contains hidden or 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
1. Bash, Zsh environment variables | |
# Android | |
export ANDROID_SDK=$HOME/Android/Sdk | |
export PATH=$PATH:$ANDROID_SDK/emulator | |
export PATH=$PATH:$ANDROID_SDK/platform-tools | |
# Flutter | |
export PATH=$PATH:$HOME/Developer/flutter/bin | |
export PATH=$PATH:$HOME/.pub-cache/bin |
OlderNewer