Skip to content

Instantly share code, notes, and snippets.

@satoruhiga
satoruhiga / .clang-format
Last active August 29, 2015 13:56
.clang-format setting
BasedOnStyle: Google
Standard: Cpp03
# BreakBeforeBraces: Allman
PointerBindsToType: true
DerivePointerBinding: false
# tab
UseTab: Always
TabWidth: 4
@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)
{
@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 / 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 / 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 / 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 / SimpleKalmanFilter
Last active September 24, 2015 16:38
SimpleKalmanFilter
class SimpleKalmanFilter
{
public:
float xhat, xhatminus;
float P, Pminus;
float _x, _p;
float Q, R, K;
@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 / uncrustify.cfg
Created April 1, 2011 06:35
uncrustify.cfg
indent_align_string=false
indent_braces=false
indent_braces_no_func=false
indent_brace_parent=false
indent_namespace=false
indent_extern=false
indent_class=true
indent_class_colon=false
indent_else_if=false
indent_func_call_param=false
@satoruhiga
satoruhiga / run_titanium.py
Created July 7, 2011 13:01
run_titanium.py
#!/usr/bin/env python
'''
dependent to ios-sim command (https://github.com/Fingertips/ios-sim)
brew install ios-sim
'''
import os
def search_parent(path, target, count):