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
public class Fatorial { | |
public int fatorial(int num) throws InvalidNumberException { | |
if (num < 0) | |
return 0; | |
if (num <= 1) { | |
return 1; | |
} else { |
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
var datas; | |
db.transaction(function(transaction){ | |
transaction.executeSql('SELECT * FROM Comics WHERE name = ? ', | |
[["batman"]], | |
function(transaction,result){ | |
for(var i = 0; i < result.rows.length;i++){ | |
datas = result.rows.item(i)['name']; | |
} | |
}, |
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 <iostream> | |
#include <string> | |
#include <vector> | |
using namespace std; | |
int main(){ | |
string nome("Texto #3"); | |
string nova = ""; | |
int i,aux,n,m; | |
cin >> 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
#include <iostream> | |
#include <map> | |
#include <utility> | |
using namespace std; | |
/* dado usa sequencia de caracteres numericos imprime quantos leds serão preciso para mostrar os caracteres | |
é utilizado a entrada e saída padrão | |
*/ |
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 random | |
lista = random.sample(xrange(1,61), 50) | |
lista2 = random.sample(xrange(1,61), 50) | |
lista = lista + lista2 |
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
#coding: utf-8 | |
import json | |
with open('urls.json', 'r') as urls: | |
dic = json.load(urls, encoding='utf-8') | |
for item in dic['responseData']: | |
sub_item = dic['responseData']['results'] | |
for s in sub_item: |
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
# coding: utf-8 | |
""" | |
Participantes: | |
Zorak, Iury, Lucas Rogério, Willian, Lucas Campos, Bruno Henrique, Elias, Rafael, Bustalover, Jhonny, Plinio | |
""" | |
import unittest |
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> | |
#include <stdlib.h> | |
#include <mpi.h> | |
void print(int vector[], int process, int size){ | |
// imprime todos os numeros no vetor | |
int i; | |
printf("processo: %d \n", process); | |
for(i = 0; i < size ; i++){ |
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> | |
#include <stdlib.h> | |
#include <mpi.h> | |
/* | |
Pra compilar execute mpicc mpi_largest_sum.c -o mpi_largest_sum | |
Pra rodar execute mpirun -n 4 mpi_largest_sum | |
o parametro -n indica a quantidade de processadores, voce pode aumentar ou diminuir = ) | |
*/ |
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
sudo apt-get install postfix | |
sudo apt-get install mailutils | |
sudo nano /etc/postfix/main.cf | |
sudo service postfix restart | |
mail -s "subject" [email protected] < mensagem.txt | |
# See /usr/share/postfix/main.cf.dist for a commented, more complete version |