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
#include <stdio.h> | |
int main(void) | |
{ | |
char nome[21], sobrenome[21]; | |
printf("Primeiro nome: "); | |
scanf("%s", nome); | |
printf("Ultimo sobrenome: "); |
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 unsigned long MILI_MAX = 4294967295; | |
const unsigned long MILI_30_DIAS = 2592000000; | |
unsigned long mili_ant = 0; | |
unsigned long mili_atual; | |
unsigned long mili_dif; | |
void loop(){ | |
mili_atual = millis(); | |
if (mili_atual > mili_ant) |
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
void processo(int meu_tipo, int minha_prioridade, int minha_duracao, Fila * fila_interrupcoes, int * interrupcoes_ativas, int * tempo_total){ | |
Processo * nova_interrupcao; | |
Processo * primeiro_fila_interrupcoes; | |
int tempo_total_inicial; | |
tempo_total_inicial = *tempo_total; | |
printf("\nTempo de início do Processo: %d\n", *tempo_total); | |
printf("Duracão Esperada do Processo: %d\n", minha_duracao); | |
for(int i = 1; i <= minha_duracao; i++){ | |
nova_interrupcao = gera_processo(TIPO_INTERRUPCAO,interrupcoes_ativas); // Gera, com certa probabilidade, um processo do tipo interrupção aleatório, com duração aleatória |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<script> | |
window.onload = function () { | |
var confirmed = []; | |
var projection = []; | |
var chart = new CanvasJS.Chart("chartContainer", { | |
animationEnabled: true, | |
theme: "light2", |
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
""" | |
Esse gráfico apresenta os dados referentes aos números acumulados oficiais de casos e mortes | |
relacionados à COVID-19 no Brasil. Além dessas informações, uma projeção desses números para | |
1 semana além do dia atual também são apresentados. As informações para a projeção provém do | |
Centro de Ciência e Engenharia de Sistemas da universidade Johns Hopkins e sofrem uma maior | |
influência dos números oficiais da doença registrados nos últimos {days_before} dias. | |
Como é possível observar, há no momento uma tendência de {tendency} no número de casos de | |
COVID-19 no Brasil. Com a manutenção dessa tendência, no dia {last_projected_date} deverão | |
estar registrados no país um número acumulado de casos de COVID-19 próximo de {cases_last_projected_date}. |
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
caution_message (){ | |
echo -e " | |
-------------------------------------------------------- | |
CAUTION | |
-------------------------------------------------------- | |
You are using a root user which is not a recommended | |
practice as those users have the potetial to cause | |
severe damages to the systems under many circunstances. | |
For being the most privileged accounts on Unix/Linux, | |
their use have to be restricted and avoided at all costs. |