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
/* | |
This is my hacked up copy of Marked.app/Contents/Resources/gridless.css | |
Changes: | |
1. Smaller headings | |
2. ~~No scrollbars~~ (I now prefer the Lion default behavior) | |
3. Styling of definition lists ala LaTeX description lists. | |
4. Centering h1.title, h3.author, h4.date (pandoc's title/author/date block). | |
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
#ifndef APOLLO_GRASSBRANCH | |
#define APOLLO_GRASSBRANCH | |
#include <roxlu/Roxlu.h> | |
#include <vector> | |
class GrassBranch { | |
public: | |
GrassBranch(VerticesPT& vertices); | |
~GrassBranch(); |
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
require 'rubygems' | |
require 'streamio-ffmpeg' | |
threads = [] | |
i = 1 | |
Dir.glob('*.avi') do |f| | |
j = i.to_s | |
threads.push Thread.new { | |
begin |
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 "testApp.h" | |
testApp::testApp() { | |
} | |
void testApp::setup(){ | |
ofBackground(22,33,44); | |
ofSetFrameRate(60); | |
grad_w = 50; |