Skip to content

Instantly share code, notes, and snippets.

Loja População Vendas
1 2 58
2 6 105
3 8 88
4 8 118
5 12 117
6 16 137
7 20 157
8 20 169
9 22 149
@eduardodx
eduardodx / tempos_reacao.csv
Created June 28, 2025 01:45
tempos_reacao.csv
Indivíduo Idade Tempo de reação Sexo Acuidade visual
1 20 96 1 90
2 20 92 0 100
3 20 106 1 80
4 20 100 0 90
5 25 98 0 100
6 25 104 1 90
7 25 110 1 80
8 25 101 0 90
9 30 116 0 70
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Keybase proof

I hereby claim:

  • I am eduardodx on github.
  • I am eduardodx (https://keybase.io/eduardodx) on keybase.
  • I have a public key ASBhPLyClSlKGap9T-3V8vFiAAQum91VJxJP_P1gRZwxsgo

To claim this, I am signing this object:

@eduardodx
eduardodx / Software that gets used
Created December 28, 2012 16:32
What makes a simple software.
http://www.johndcook.com/blog/2009/07/31/software-that-gets-used/
1. was developed to address existing needs, not speculation of future needs;
2. solved a general problem; and
3. was simple, often controversially simple.
@eduardodx
eduardodx / calibre.css
Created December 13, 2012 20:23
This is my css for reading ebooks in Calibre.
/**
* Font: EB Garamond <http://www.georgduffner.at/ebgaramond/>
* and use of 2 columns
*/
html {
line-height: 1.5em;
text-align: justify;
font-family: "EB Garamond" !important;
@eduardodx
eduardodx / ffmpeg-referencia-pt-br.md
Created November 25, 2012 20:29
FFmpeg Referência pt-br

Instalação

Ubuntu:

O passo a passo da instalação no Ubuntu (executados no terminal):

  1. Adicione a ppa do ffmpeg
@eduardodx
eduardodx / pacman.c
Created June 16, 2012 19:09
Pacman
#include <unistd.h> // lib para o delay => usleep()
#include <stdlib.h>
#include <time.h>
#include <ncurses.h>
#define H 25 // altura do mapa
#define W 42 // largura do mapa
#define UP 0
#define RIGHT 1
#define DOWN 2
#define LEFT 3
@eduardodx
eduardodx / SPOJ_PESCA11.c
Created June 8, 2012 01:27
SPOJ - Pesca
#include <stdio.h>
int main () {
int c[100][4], i, j, n, area_total, ax, ay;
area_total = 0;
// Limpando o vetor
for (i = 0; i < 100; i++) {
c[i][0] = 0;
#include <stdio.h>
int main() {
char opcao;
scanf("%c", &opcao);
switch(opcao) {