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
<template> | |
<v-app style="overflow: hidden" v-if="!loading"> | |
<v-row> | |
<v-col | |
:cols="tabs === 'left' ? 10 : 6" | |
class="px-0 mx-0" | |
v-if="tabs !== 'right'" | |
> | |
<pacient-exam | |
v-if="dicom_image" |
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
<template> | |
<v-app style="overflow: hidden" v-if="!loading"> | |
<v-row> | |
<v-col | |
:cols="tabs === 'left' ? 10 : 6" | |
class="px-0 mx-0" | |
v-if="tabs !== 'right'" | |
> | |
<pacient-exam | |
v-if="dicom_image" |
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
const csv = require('async-csv'); | |
const fs = require('fs').promises; | |
const dotenv = require('dotenv'); | |
dotenv.config(); | |
const [CONCURRENT_UPLOADS = 5 ] = process.argv.slice(2); | |
const { | |
uploadToPanda, | |
} = require('./src/controllers/uploader') |
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
const texto = 'ana'; | |
const inversa = texto.split('').reverse().join(''); | |
if(texto===inversa){ | |
console.log('PALÍNDROMO'); | |
}else{ | |
console.log('NÃO É UM PALÍNDROMO'); | |
} |
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
programa | |
{ | |
inclua biblioteca Texto-->t | |
funcao inicio() | |
{ | |
inteiro op=0 | |
inteiro cont=0 | |
cadeia aluno[1000000] | |
enquanto(op!=7){ | |
escreva("###CONTROLE DE ALUNOS###\n") |
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
import java.util.Scanner; | |
/* | |
Feito por: João Victor Cabral Nunes Baião | |
Tempo de desenvolvimento: 20 min | |
Versão: 1.0 | |
*/ | |
public class Space_IFMG { | |
public static void clear(){ | |
for(int i=0;i<80;i++){ //Método para limpar tela |
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
print(' ') | |
print(' \33[1;31m _______ _______ _______ _______ _______ _______ ___ ___ _______ ') | |
print(' | ___ | | ___ | | ___ | | ____ | | ___ | | ___ | | \ / | | ___ |') | |
print(' | | | | | | | | | | | | | | |_| | | | | | | | | | |\ \ / /| | | | | |') | |
print(' | | | | | | | | | | | | | | | | | | | | | | | | \ \ / / | | | | | |') | |
print(' | |___| | | |___| | | | | | | | ___ | |___| | | | | | | | \ \/ / | | | | | |') | |
print(' | ______| | ___| | | | | | | |_ | | ___| | |___| | | | \ / | | | |___| |') | |
print(' | | | |\ \ | | | | | | | | | |\ \ | ___ | | | \/ | | | ___ |') | |
print(' | | | | \ \ | | | | | | | | | | \ \ | | | | | | | | | | | |') | |
print(' | | | | \ \ | |___| | | |___| | | | \ \ | | | | | | | | | | | |') |