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 <sys/types.h> | |
#include <sys/socket.h> | |
#include <arpa/inet.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <pthread.h> | |
#define PORTA 8880 | |
int e_socket, conexao; |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
window.onload = function() { | |
var clicks = 0; | |
var lastClick = [0, 0]; | |
var canvas = document.getElementById('exemploCanvas'); | |
canvas.addEventListener('click', draw, false); |
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 <stdio.h> | |
#include <unistd.h> | |
#include <pthread.h> | |
#include <stdlib.h> | |
#define DIM 10 | |
int a[DIM], swapped = 0; | |
pthread_t thread[DIM]; | |
void v_initiate() { |
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
<?php | |
define('RAIZ_DA_APP', dirname(__FILE__)); | |
define('LIB', RAIZ_DA_APP.'/lib'); | |
function meuAutoload($classe){ | |
$d = LIB; | |
include "{$d}/{$classe}.php"; | |
} | |
spl_autoload_register('meuAutoload'); |
NewerOlder