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
1. Install MSYS2 from https://msys2.github.io/ | |
2. Install Mingw-W64 `pacman -S mingw-w64-i686-gcc` | |
3. Install git autoconf automake libtool make pkg-config | |
`pacman -S git` | |
`pacman -S autoconf` | |
`pacman -S automake` | |
`pacman -S libtool` | |
`pacman -S make` | |
`pacman -S pkg-config` | |
4. yasm:http://yasm.tortall.net/,change to yasm.exe,move to C:\msys32\usr\bin |
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 <SDL.h> | |
#include <cstdio> | |
#include <iostream> | |
#include <string> | |
#include <cstring> | |
#include <sstream> | |
#include <ctime> | |
const int MAX_RECORDING_DEVICES = 10; |
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
count lines of code | |
git ls-files | grep pas | xargs wc -l |
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
[Experimento] | |
Pesquisador.Nome=Thais | |
Nome=Teste 1.Estudo 1.MC1 | |
Objetivo=Testar a microcultura 1 do Estudo 1. | |
Jogadores.Novos.Enviar_Histórico_do_BatePapo=0 | |
Jogadores.GerarAutomaticamente=0 | |
Pesquisador.PodeJogar=0 | |
Pesquisador.BatePapo=0 | |
TipoDePontuação=1 | |
TipoDaMatrix=CORES,LINHAS, |
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"?> | |
<CONFIG> | |
<Lazarus> | |
<ColorSchemes Version="11"> | |
<Names Count="1"> | |
<Item1 Value="Monokai"/> | |
</Names> | |
<Globals Version="11"> | |
<SchemeMonokai> | |
<ahaGutter Background="2238503"/> |
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
time x_norm y_norm | |
0.000000000 679.069 -9.932 | |
0.031957695 679.238 -12.210 | |
0.068050574 676.819 -12.154 | |
0.100027332 676.453 -12.683 | |
0.132040243 674.701 -12.623 | |
0.168026488 675.431 -12.521 | |
0.200026816 675.696 -11.634 | |
0.232030647 674.571 -10.161 | |
0.268027329 675.868 -8.231 |
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
############################################################################# | |
# Full Imports | |
import sys | |
import math | |
import random | |
import subprocess | |
""" | |
This is a pure Python implementation of the K-Means Clustering algorithmn. The |