Skip to content

Instantly share code, notes, and snippets.

View bilderbuchi's full-sized avatar
💭
I may be slow to respond.

Christoph Buchner bilderbuchi

💭
I may be slow to respond.
View GitHub Profile
@bilderbuchi
bilderbuchi / test-PP-at-current-level.cpp
Created August 22, 2012 10:21
tweaked OF code style
// Correct
#ifdef WIN32
#define IS_WIN32
#endif
#ifndef TARGET_LINUX
doSomething();
#define TARGET_LINUX
#endif
@bilderbuchi
bilderbuchi / shortlogns.after
Created May 16, 2012 13:35
Contributor log comparison of git shortlog -ns before/after .mailmap addition
1959 Arturo Castro
675 Theodore Watson
436 Kyle McDonald
262 Zachary Lieberman
166 Mehmet Akten
93 Lukasz Karluk
72 stefan
67 Todd Vanderlin
61 Jonathan Brodsky
60 Keith Pasko
class ofColorHSVA{
public:
ofColorHSVA(){
h = 255;
s = 255;
v = 255;
a = 255;
}
virtual ~ofColorHSVA(){}