title = linux bash profile
date = march 11 2011
+comments = true
--
<pre class="prettyprint">
alias ls='ls --color'
--- /dev/null
+title = modulations 2012
+date = may 2 2012
+tags = video visuals live
+--
+
+<iframe src="http://player.vimeo.com/video/41406543?byline=0&portrait=0&color=ff0179" width="800" height="450" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><p>
+
+<a href="http://vimeo.com/41406543">Live visuals for Chris Carlson @ CCRMA Modulations 2012</a>
+
+sorry for the cuttoff at the end -- SD card was full.
+
+this set was essentially more live-coding experiments with non-periodic tiling patterns. I'm still fascinated with the forms. Towards the end of the night I started using color.
+
+visual software done with: [audio-shadertoy](http://notlion.github.com/audio-shadertoy/)
+
+for this setup, the live audio was analyzed by ChucK through the built-in mic on my macbook air. the ChucK script routes osc to Node, and the client receives via web sockets.
+
+because osx-style full-screen multi-monitor support is completely broken in OSX Lion, we couldn't use chrome. so we stripped out all the chrome-only webaudioapi stuff, and replaced it with an osc receiver. This allowed us to analyze the audio with an external interface and use any browser that supports webgl canvas, and does multi-monitory fullscreen correctly on osx. we ended up using firefox.
+
+live-audio branch with float-sliders ui [warning:totally hacky] :
+[http://github.com/quilime/audio-shadertoy/tree/live-audio-ff-datgui](http://github.com/quilime/audio-shadertoy/tree/live-audio-ff-datgui)
\ No newline at end of file
body, table {
- font-size:13px;
font-family: arial, monaco, monospace;
line-height:1.4em;
}
h1, h2, h3, h4, h5, h6 {
font-weight:normal;
color:#666;
- font-size:14px;
+ font-size:1em;
+ text-shadow:1px 1px 3px #000;
+ letter-spacing:0.2em;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
text-decoration:none;
title = about
--
-quilime is a codification of projects, process and resources
+#about
-all content © 1999—2012 **gabriel dunne** ([www](http://gabrieldunne.com), [email](mailto:gdunne@quilime.com)) unless otherwise noted
+quilime is an ongoing collection of projects, sketches, ideas, and process by **gabriel dunne** ([www](http://gabrieldunne.com), [email](mailto:gdunne@quilime.com))
+<br />
+
+built with <a href="http://git.quilime.com/?p=plog.git;a=summary">plog</a>, a static-file `p`roject`log` engine.
-elsewhere
-[clmpr](http://clmpr.com/quilime/)
-[aggregate](http://media.quilime.com/aggregate/)
-[git.quilime.com](http://git.quilime.com)
-[github.com/quilime](http://github.com/quilime/)
-[flickr.com/photos/quilime](http://flickr.com/photos/quilime/)
-[vimeo/quilime](http://vimeo.com/quilime/)
-[twitter/quilime](http://twitter.com/quilime/)
-<!-- add <a href="http://quilime.com/.rss" class="rss">.rss</a> to the end of any url for an xml feed -->
+<!--add <a href="http://quilime.com/.rss" class="rss">.rss</a>-->
<br />
-quilime runs on <a href="http://git.quilime.com/?p=plog;a=summary">plog</a>, a static-file **p**roject+**log**
+
+
+## elsewhere
+[clmpr.com/quilime](http://clmpr.com/quilime/)
+[media.quilime.com/aggregate/](http://media.quilime.com/aggregate/)
+[github.com/quilime](http://github.com/quilime/)
+[flickr.com/photos/quilime](http://flickr.com/photos/quilime/)
+[vimeo.com/quilime](http://vimeo.com/quilime/)
+[twitter.com/quilime](http://twitter.com/quilime/)
--- /dev/null
+<?php
+
+ if (!isset($entries)) {
+ $entries = get_entries();
+ }
+
+?>
+<html>
+<head>
+ <? $this->include_template('head-inc.html.tpl') ?>
+ <title><?=SITE_TITLE?><?=$this->page_title(TITLE_DELIMITER);?></title>
+</head>
+<body>
+
+<div id="content">
+
+ <div class="entries">
+ <? foreach($entries as $entry):
+
+ if (isset($entry['content_short'])) {
+ $entry['content'] = $entry['content_short'] . '<br /><a class="more" href="'.$entry['url'].'">more →</a><br /><br />';
+ } ?>
+
+ <h1><a href="/<?=$entry['url']; ?>">— <?=$entry['title']; ?></a></h1>
+
+ <div class="hidden_entry" style="display:none">
+ <? $this->include_template('entry.html.tpl', array('entry' => $entry)); ?>
+ </div>
+
+ <? endforeach; ?>
+ </div>
+
+ <a href="/index">index →</a>
+ <br />
+ <br />
+ <br />
+
+</div>
+
+<? $this->include_template('nav.html.tpl') ?>
+<? $this->include_template('footer.html.tpl') ?>
+
+</body>
+</html>