Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@satoruhiga
satoruhiga / ofxDelayLineQueue.h
Last active April 3, 2016 14:38
ofxDelayLineQueue.h
#pragma once
#include <chrono>
#include <deque>
template <typename T>
class ofxDelayLineQueue
{
public:
@satoruhiga
satoruhiga / tellmeUSBSerialDevice.h
Created September 24, 2015 18:25
tellmeUSBSerialDevice.h
#pragma once
#include "ofMain.h"
inline void tellmeUSBSerialDevice()
{
ofDirectory dir;
int n = dir.listDir("/dev");
vector<string> arr;
@satoruhiga
satoruhiga / ofxAutoSaveParam.h
Last active April 3, 2016 14:59
ofxAutoSaveParam.h
#pragma once
/*
USAGE:
ofxAutoSaveParam param;
class ofApp {
public:
@satoruhiga
satoruhiga / PackedBuffer.h
Created June 27, 2015 17:53
PackedBuffer.h
template <typename T, bool (*remove_predicate)(const T&)>
class PackedBuffer
{
public:
PackedBuffer(size_t size)
: size_(0)
, buffer_(size)
{}
@satoruhiga
satoruhiga / TypedArray.h
Created March 24, 2015 18:09
TypedArray.h
#include <vector>
#include <cmath>
#include <assert.h>
class ArrayBuffer
{
public:
ArrayBuffer(size_t size)
: data_(size, 0)
@satoruhiga
satoruhiga / stack_blur.h
Last active April 3, 2016 14:43
stack_blur.h
#include "ofMain.h"
namespace stack_blur {
template<class T> struct stack_blur_tables {
static uint16_t const g_stack_blur8_mul[255];
static uint8_t const g_stack_blur8_shr[255];
};
//------------------------------------------------------------------------
@satoruhiga
satoruhiga / ofxNanoSVG.h
Created February 16, 2015 16:09
ofxNanoSVG.h
#pragma once
#define NANOSVG_IMPLEMENTATION
#include "nanosvg.h"
class ofxNanoSVG
{
public:
bool load(const string& filepath)
@satoruhiga
satoruhiga / CollectAllWindows.applescript
Created December 28, 2014 11:46
collect all windows
(*
collect all windows
http://apple.stackexchange.com/questions/709/how-to-retrieve-windows-that-have-moved-off-screen
http://d.hatena.ne.jp/hirose31/20111213/1323761962
*)
property processesToIgnore : {}
tell (do shell script "/usr/sbin/system_profiler SPDisplaysDataType | grep Resolution | tail -n 1") to set {screen_width, screen_height} to {word 2, word 4}
@satoruhiga
satoruhiga / BAD_TUNE_TV.fs
Last active April 3, 2016 14:43
BAD_TUNE_TV.fs
/*{
"DESCRIPTION": "BAD_TUNE_TV",
"CREDIT": "by satoruhiga",
"CATEGORIES": [
"GLSL FX"
],
"INPUTS": [
{
"NAME": "inputImage",
"TYPE": "image"
@satoruhiga
satoruhiga / ofxMaxCollTextParser.h
Last active August 29, 2015 14:04
ofxMaxCollTextParser.h
#pragma once
#include "ofMain.h"
class ofxMaxCollTextParser
{
public:
bool open(const string& path)
{