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
# Feed of bigviktor domains | |
# The list contains three columns: | |
# Domian, Start and end of valid time(UTC) | |
# | |
# Feed Provided By: Kelvin Alves | |
# kalves@mx2.unisc.br | |
unisc.br 2021-09-01 00:00:00 2021-09-30 23:59:59 |
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
function calcularMedia() { | |
var linhas = document.getElementById('disciplina-cursada-grid').getElementsByTagName('tbody')[0].rows; | |
var retorno = { totalDisciplinas: 0, totalNotas: 0, mediaFinal: 0, maiorQue8: 0 }; | |
for (var i = 0; i < linhas.length; i++) { | |
if (linhas[i].cells.length > 4) { | |
if (linhas[i].cells[11].innerText != 'Reprovada') { | |
retorno.totalDisciplinas++; | |
console.log('Nota: ' + parseFloat(linhas[i].cells[8].innerText.replace(",", "."))); | |
if (parseFloat(linhas[i].cells[8].innerText.replace(",", ".")) > 9) { |
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
function aula4 () | |
n = [0:pi/32:4*pi]; | |
sa = cos(n); | |
sb = 2*cos(n*pi); | |
s = sa + sb; | |
r = rand(size(s)); | |
rs = r + s; |
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
function aula4 () | |
n = [0:pi/32:4*pi]; | |
sa = cos(n); | |
sb = 2*cos(n*pi); | |
s = sa + sb; | |
r = rand(size(s)); | |
rs = r + s; |
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
mysqldump -u usuario -p nome_do_banco_de_dados > /salvar/nesse/diretorio/arquivo.sql |