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
# Traduções adicionais em https://github.com/heartcombo/devise/wiki/I18n | |
pt: | |
devise: | |
confirmations: | |
confirmed: "Seu endereço de email foi confirmado com sucesso." | |
send_instructions: "Você receberá um email com instruções sobre como confirmar seu endereço de email em alguns minutos." | |
send_paranoid_instructions: "Se o seu endereço de email existir em nosso banco de dados, você receberá um email com instruções sobre como confirmar seu endereço de email em alguns minutos." | |
failure: | |
already_authenticated: "Você já está logado." |
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 | |
echo "ATUALIZANDO VERSAO DO ANDROID" | |
versaoCode="$(cat android/app/build.gradle | grep 'versionCode ' | xargs | cut -d' ' -f2)" | |
versaoCodeAtualizado=$(bc <<< "$versaoCode + 1") | |
versaoName="$(cat android/app/build.gradle | grep 'versionName ' | xargs | cut -d' ' -f2)" | |
versaoNameAtualizado=$(bc <<< "$versaoName + 0.01") |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
// ********************************************************************** | |
// Go to the Run view ⇧⌘D and click on the gear button or Create a launch.json link to create a `launch.json`` | |
// debugger configuration file. | |
// Choose Edge: launch from the Select Environment dropdown list. | |
// This will create a launch.json file in a new `.vscode` folder in your project | |
// which includes a configuration to launch the website. | |
// ********************************************************************** |
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
// font do código inicial https://github.com/nmantzanas/Heapsort.git | |
#include <stdio.h> | |
void Heap(int vetor[], int quantidade_posi_vetor, int i) | |
{ | |
// pai_aux = para pai e temp = variavel para troca | |
int pai_aux = i, temp; | |
// define os filhois, tanto da esquerda como da direita sendo que i e o pai verdadeiro do vetor |