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
// Exercise of the course "JavaScript - Codecademy (https://www.codecademy.com)" | |
// Student - Willian Schuck | |
// Creates the variables | |
var text = "Willian, are now programming. Please, talk with Wilbor"; | |
var myName = "Willian"; | |
var hits = []; | |
// Exercise requirements.. I will not comment them.. ;P | |
for (var c = 0; c < text.length; c++) { |
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
# Programa em Assembly (MIPS) para gerar valores pseudo aleatório | |
# Base para o projeto o modelo de um gerador congruencial linear | |
# int rng(int v) { | |
# return (mul*v + inc) % mod; | |
# } | |
.data | |
divisao: .asciiz", " |
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
typedef int reg; | |
struct no { | |
reg data; | |
no* previous; | |
no* next; | |
no() { | |
data = 0; | |
this->previous = nullptr; |
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
# ------- Jogo de Damas em Assembly ------- | |
# Curso: Bacharelado em Ciência da Computação | |
# Disciplina: Arquitetura de Computadores II | |
# Autores: Willian R. Schuck, Kimberly Geremia | |
.data | |
tabuleiro: .space 64*4 | |
atual: .space 4 | |
anterior: .space 4 | |
brancasJogam:.asciiz" Brancas Jogam\n" |
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
import sys | |
import requests | |
from urllib.parse import urlparse | |
from urllib.parse import parse_qs | |
if len(sys.argv) == 1: | |
print('url não foi informada') | |
exit() | |
url = sys.argv[1] |
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
/* Estrutura de Dados II - Árvore Binária */ | |
#include <iostream> | |
#include <windows.h> | |
typedef int tipochave; | |
using namespace std; | |
typedef struct aux { |
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
from bs4 import BeautifulSoup | |
import getpass | |
import requests | |
import re | |
import os | |
urlLogin = 'https://moodle.passofundo.ifsul.edu.br/login/index.php' | |
def getPageContent(url): | |
return s.get(url).text |
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 <iostream> | |
#include <windows.h> | |
#include <cstdio> | |
using namespace std; | |
typedef int tipochave; | |
typedef struct aux { | |
tipochave chave; |
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 <iostream> | |
using namespace std; | |
struct MinhaStruct { | |
int chave; | |
}; | |
/* | |
Os operadores de comparação não são gerados quando a struct é definida. |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<!-- Utilizando facetas, faça as restrições necessárias para os campos: pessoas | |
(nome, salario, sexo e e-mail) e telefones(numero). --> | |
<xs:element name="pessoas"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element ref="pessoa" minOccurs="0" maxOccurs="unbounded"/> |
OlderNewer