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
/************************************** | |
Nombre: parallel.cpp | |
Autor: Gabriel Espinoza | |
Fecha: 12-Jun-2018 | |
License: MIT | |
Desc: hace una comparacion del algoritmo sort | |
estandar y su version paralela | |
**************************************/ | |
#include <vector> |
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 <wiringPiSPI.h> | |
#include <iostream> | |
using namespace std; | |
int customAnalogRead(int spiPort) | |
{ | |
unsigned char spiData[2]; | |
spiData[0] = 0b11110000; | |
spiData[1] = 0; |
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
/************************************** | |
Name: 1046_reconn.cpp | |
Desc: demuestra como reconectar | |
un phidgets 1046_0 | |
Autor: Gabriel Espinoza <[email protected]> | |
Date: 05-Sep-2020 | |
License: MIT | |
*/ | |
#include <iostream> |
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 <chrono> | |
#include <thread> | |
#include <vector> | |
#include <algorithm> | |
#include <iterator> | |
#include <random> | |
using namespace std; |
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 <iomanip> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; | |
bool isEven(int n ){ | |
return !(n % 2); |
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
#!/bin/bash | |
cd ~/rpi-qt | |
PIADDR='192.168.0.2' | |
rsync -avz --rsync-path="sudo rsync" --delete pi@$PIADDR:/lib sysroot | |
rsync -avz --rsync-path="sudo rsync" --delete pi@$PIADDR:/usr/include sysroot/usr | |
rsync -avz --rsync-path="sudo rsync" --delete pi@$PIADDR:/usr/lib sysroot/usr | |
rsync -avz --rsync-path="sudo rsync" --delete pi@$PIADDR:/opt/vc sysroot/opt |
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
/****************************************************************************** | |
program to test several functions to tokenize strings | |
*******************************************************************************/ | |
#include <iostream> | |
#include <chrono> | |
#include <vector> | |
#include <functional> | |
#include <sstream> |
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 <tuple> | |
using namespace std; | |
int c_style_function(int* n, double* f,const char* c) | |
{ | |
*n = 42; | |
*f = 3.14159; | |
c = "a"; | |
return 0; |
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
/**********************\ | |
Name: format_test.cpp | |
Author: Gabriel Espinoza <[email protected]> | |
License: MIT | |
Desc: string concatenation and output test benchmark | |
*/ | |
//!!!! C++ 2020 required | |
#include <iostream> |
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 <algorithm> | |
#include <array> | |
class User { | |
protected: | |
static int* data; | |
static int* auxData1; | |
static int* auxData2; | |
int tamannoAD1; |
OlderNewer