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 "ofMain.h" | |
#include "ofAppNoWindow.h" | |
#include "ofxGPIO.h" | |
class HC_SR04{ | |
public: | |
HC_SR04(); | |
~HC_SR04(); | |
long micros() { |
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
int analog0 = A0; | |
int analog1 = A1; | |
void setup() | |
{ | |
Serial.begin(9600); | |
} | |
void loop() | |
{ |
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
/work/kashim/android/ndk/android-ndk-r15c/sources/cxx-stl/llvm-libc++/include/memory:2157: error: undefined reference to 'ofxAndroidVideoGrabber::ofxAndroidVideoGrabber()' | |
/work/kashim/android/ndk/android-ndk-r15c/sources/cxx-stl/llvm-libc++/include/memory:2044: error: undefined reference to 'ofxAndroidVideoGrabber::~ofxAndroidVideoGrabber()' | |
/media/disk-backup/openframeworks/of_v0.10.0RC4_android_release/libs/openFrameworks/gl/ofFbo.cpp:299: error: undefined reference to 'ofxAndroidEvents()' | |
/media/disk-backup/openframeworks/of_v0.10.0RC4_android_release/libs/openFrameworks/gl/ofFbo.cpp:336: error: undefined reference to 'ofxAndroidEvents()' | |
/media/disk-backup/openframeworks/of_v0.10.0RC4_android_release/libs/openFrameworks/gl/ofFbo.cpp:451: error: undefined reference to 'ofxAndroidEvents()' | |
/media/disk-backup/openframeworks/of_v0.10.0RC4_android_release/libs/openFrameworks/gl/ofFbo.cpp:357: error: undefined reference to 'ofxAndroidEvents()' | |
/work/kashim/android/ndk/android-ndk-r15c/sources/cxx-stl/llvm-libc |
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
meta: | |
ADDON_NAME = ofxDlib | |
ADDON_DESCRIPTION = An openFrameworks wrapper for dlib. | |
ADDON_AUTHOR = Christopher Baker | |
ADDON_TAGS = "computer vision" "machine learning" "deep learning" | |
ADDON_URL = http://github.com/bakercp/ofxDlib | |
common: | |
ADDON_DEFINES = |
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 <signal.h> | |
#include <iostream> | |
#include <unistd.h> | |
// kill -9 pid | |
// kill -15 pid | |
// kill pid | |
// Ctrl+c | |
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 <opencv2/core.hpp> | |
#include <vector> | |
int main(int argc, char** argv) | |
{ | |
cv::Mat bgr_image = cv::imread("image.png"); | |
cv::Mat lab_image; | |
cv::cvtColor(bgr_image, lab_image, CV_BGR2Lab); | |
// Estrazione L channel |
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
# mkdir /etc/apache2/ssl | |
# openssl req -x509 -nodes -days 1095 -newkey rsa:2048 -out /etc/apache2/ssl/server.crt -keyout /etc/apache2/ssl/server.key | |
# a2enmod ssl | |
# ln -s /etc/apache2/sites-available/default-ssl.conf /etc/apache2/sites-enabled/000-default-ssl.conf | |
# vi /etc/apache2/sites-enabled/000-default-ssl.conf | |
change: | |
## SSLCertificateFile /etc/apache2/ssl/server.crt | |
## SSLCertificateKeyFile /etc/apache2/ssl/server.key | |
# /etc/init.d/apache2 restart |
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 "ofxGPIO.h" | |
#define CMD 0x80 | |
#define ON 0x01 | |
#define OFF 0 | |
#define BRI 0xE0 | |
#define ADD 0x70 | |
I2c * i2c; |
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 "ofxGPIO.h" | |
/* | |
ofxGPIO | |
speed test SPI | |
*/ | |
int main(int argc, char ** argv) | |
{ |
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
/* | |
Author: Dario Longobardi | |
Test ssh brute force multithreading | |
*/ | |
#include <iostream> | |
#include <unistd.h> | |
#include <thread> | |
#include <vector> |
NewerOlder