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
2020-09-21 16:10:04,439-0300 JIRA-Bootstrap INFO [c.a.j.config.database.SystemDatabaseConfigurationLoader] Reading database configuration from /var/atlassian/application-data/jira/dbconfig.xml | |
2020-09-21 16:10:04,442-0300 JIRA-Bootstrap INFO [c.a.j.config.database.DatabaseConfigHandler] Trying to get encrypted password from xml and decrypt it | |
2020-09-21 16:10:04,442-0300 JIRA-Bootstrap INFO [c.a.j.config.database.DatabaseConfigHandler] Database password decryption not performed. | |
2020-09-21 16:10:04,950-0300 JIRA-Bootstrap INFO [c.a.jira.upgrade.ConsistencyCheckerImpl] Checking JIRA consistency | |
2020-09-21 16:10:04,953-0300 JIRA-Bootstrap INFO [c.a.jira.upgrade.ConsistencyCheckerImpl] The Server ID for this JIRA instance is: [BMQ5-ISH7-NHUI-ECF8] | |
2020-09-21 16:10:05,002-0300 JIRA-Bootstrap INFO [c.a.jira.upgrade.UntranslatedKeyFixer] [KEY-FIXER] Not running untranslated key fixer as it was already run, application property: com.atlassian.jira.upgrade.untranslatedkeyfixer.disabled=t |
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
let vg_juros = 5.5 | |
out vg_juros | |
out $truncate(vg_juros) | |
if $modulus(vg_juros,2) <> 0 | |
out 'Arredonda: ', ($truncate(vg_juros)+1) | |
endif | |
let vg_juros = 5.4 | |
out vg_juros | |
out $truncate(vg_juros) |
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
/* | |
To change this license header, choose License Headers in Project Properties. | |
To change this template file, choose Tools | Templates | |
and open the template in the editor. | |
*/ | |
/* | |
Created on : 6 Dec, 2019, 10:08:20 AM | |
Author : ivan | |
*/ | |
.error {color: #FF0000;} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<title>.:: Calculadora de Massa Corporal ::.</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<link rel="stylesheet" type="text/css" media="screen" href="style.css" /> | |
<script src="main.js"></script> |
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
<?php | |
session_start(); | |
$_SESSION["login"] = $login_banco; | |
$_SESSION["nome"] = $nome_banco ; | |
?> |
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
#include <stdio.h> | |
int main() | |
{ | |
printf("Hello World numero!!!"); | |
return 0; | |
} |
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
/****************************************************************************** | |
Online C Compiler. | |
Code, Compile, Run and Debug C program online. | |
Write your code in this editor and press "Run" button to compile and execute it. | |
*******************************************************************************/ | |
#include <stdio.h> |
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
/usr/lib/postgresql/11/bin/pg_upgrade -U postgres --old-datadir "/opt/PostgreSQL/9.6/data" --new-datadir "/var/lib/postgresql/11/main" --old-bindir "/opt/PostgreSQL/9.6/bin" --new-bindir "/usr/lib/postgresql/11/bin" |
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
#include <stdio.h> | |
int main() { | |
char str[10] ; /*reserva espao para 11 caracteres*/ | |
int i; | |
printf("\nDIGITE Um nome qualquer: "); | |
gets(str); | |
i = 0; |
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
#include <stdio.h> | |
int main() { | |
char str[] = "meu string"; /*reserva espaço para 11 caracteres*/ | |
/* Vou alterar o caracter da sexta posição do vetor str[] */ | |
str[5] = 'd'; | |
printf("Ou seja troquei o t pelo d na frase: meu string -> %s ",str); | |
return 0; | |
} |
NewerOlder