]> git.quilime.com - plog_bk.git/commitdiff
cleaned master branch
authorGabriel Dunne <quilime@monkey.dreamhost.com>
Thu, 12 Nov 2009 00:11:11 +0000 (16:11 -0800)
committerGabriel Dunne <quilime@monkey.dreamhost.com>
Thu, 12 Nov 2009 00:11:11 +0000 (16:11 -0800)
26 files changed:
content/projects/example/config [new file with mode: 0644]
content/projects/example/content.html [new file with mode: 0644]
css/style.css [moved from style.css with 97% similarity]
lib/config
lib/data.php
templates/404.html
templates/_mus.html [deleted file]
templates/about.html [new file with mode: 0644]
templates/aggregate.html [deleted file]
templates/archive.html [deleted file]
templates/bio.html [deleted file]
templates/code.html [deleted file]
templates/contact.html [deleted file]
templates/cv.html [deleted file]
templates/footer.html [deleted file]
templates/header-src.html [new file with mode: 0644]
templates/header.html [deleted file]
templates/index.html
templates/links.html
templates/log.html [deleted file]
templates/mus.html [deleted file]
templates/nav.html
templates/photo.html
templates/photo_bk.html [deleted file]
templates/projects.html
templates/text.html [deleted file]

diff --git a/content/projects/example/config b/content/projects/example/config
new file mode 100644 (file)
index 0000000..038edfd
--- /dev/null
@@ -0,0 +1,2 @@
+title = Example
+date = october 12 2009
diff --git a/content/projects/example/content.html b/content/projects/example/content.html
new file mode 100644 (file)
index 0000000..4a89148
--- /dev/null
@@ -0,0 +1 @@
+This is an example project
\ No newline at end of file
similarity index 97%
rename from style.css
rename to css/style.css
index 2e985d38edf44f15c636bf610495456cb4d3b7e3..9fc738b43343b9c5c77656a2733cc6153653c796 100644 (file)
--- a/style.css
@@ -52,14 +52,14 @@ table .reader li, table .bookmarks li { margin-bottom:1em; padding-bottom:1em;
 
 #home_arrow { position: absolute; top:11px; left:23px; margin-left:250px; text-decoration:none; }
 
-#content { margin-left:250px; }
+#content { margin-left:120px; }
     #content p {  }
     ul.inline_content { border-top:10px solid #161616; }
     ul.inline_content li { margin:50px 0; padding-bottom:50px; border-bottom:10px solid #161616; }    
     ul.inline_content li div.content li { padding:0; border:0; margin:0; }
     ul.thumbnails    { }
     ul.thumbnails li { display:inline-block; margin: 0px 60px 60px 0px; }
-    ul.thumbnails .thumbnail { width:160px; height:240px; text-align:center; background:#888; }
+    ul.thumbnails .thumbnail { width:160px; height:120px; text-align:center; background:#888; }
     ul.thumbnails a:hover img { 
         filter:alpha(opacity=75);
         -moz-opacity:0.75;
index 01a826bf17bb4e044334e5f2597a2b010086f369..90ff57209b3ecbb80705aebe644f1e62dff09694 100644 (file)
@@ -1,4 +1,4 @@
-LOCAL_ROOT      = /home/quilime/gabrieldunne.com/
+LOCAL_ROOT      = /home/quilime/dev.gabrieldunne.com/
 CONTENT_DIR     = content/
 TEMPLATE_DIR    = templates/
-SITE_TITLE      = Gabriel Dunne
+SITE_TITLE      = plog
index 14cd16e6bd222caa48afda76dff6d361e15ec48b..36510cac26aafcdbceabfed81540fbbbf64a810e 100644 (file)
             }    
         }
         
-        $config['thumb'] = is_file( dirname($config_file) . '/' . $config['thumb'] ) ? 
-                                get_base_dir() . '/' . dirname($config_file) . '/' . $config['thumb'] : 
-                                get_base_dir() . '/' . dirname($config_file) . '/thumb.png';
+        if ($config['thumb'] && is_file( dirname($config_file) . '/' . $config['thumb'] )) {
+            $config['thumb'] = get_base_dir() . '/' . dirname($config_file) . '/' . $config['thumb'];
+        } 
+        else if (is_file(get_base_dir() . '/' . dirname($config_file) . '/thumb.png')) {
+            $config['thumb'] = get_base_dir() . '/' . dirname($config_file) . '/thumb.png';
+        }
         
         $config['timestamp'] = strtotime($config['date']);
 
index 52030443fc3ca57900dbc11e39c4a974eb107adb..6cf670adf38eb8499284c81d1226eadadd5f1b4b 100644 (file)
@@ -2,15 +2,15 @@
 
 <head>
 
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    <title><?php echo SITE_TITLE; ?> 404</title>
+    <?php include_template('header-src.html'); ?>
+
+    <title><?php echo SITE_TITLE; ?> :404</title>
     
 </head>
 
 <body>
     
-    <?php include_once('templates/header.html'); ?>
+    <?php include_template('nav.html'); ?>
 
     <div id="content">
         
@@ -21,8 +21,6 @@
         </p>
         
     </div>
-
-    <?php include_once('templates/footer.html'); ?>
     
 </body>
 
diff --git a/templates/_mus.html b/templates/_mus.html
deleted file mode 100644 (file)
index d95f98b..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-
-<head>
-
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    
-    <title><?php echo SITE_TITLE ?> - music</title>
-    
-</head>
-
-<body>
-    
-    <?php include_once('templates/header.html'); ?>
-
-    <div id="content">
-
-       <h1>music</h1>
-        
-               borked, bbl
-
-    </div>
-
-    <?php include_once('templates/footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
diff --git a/templates/about.html b/templates/about.html
new file mode 100644 (file)
index 0000000..5e852cf
--- /dev/null
@@ -0,0 +1,27 @@
+<html>
+
+<head>
+
+    <?php include_template('header-src.html'); ?>
+        
+    <title><?php echo SITE_TITLE ?> :about</title>
+    
+</head>
+
+<body>
+    
+    <?php include_template('nav.html'); ?>
+
+    <div id="content">
+
+       <h1>about</h1>
+        
+        <p>
+            built with <a href="http://git.quilime.com/?p=plog.git;a=summary">project log</a> by quilime
+       </p>
+
+    </div>
+    
+</body>
+
+</html>
\ No newline at end of file
diff --git a/templates/aggregate.html b/templates/aggregate.html
deleted file mode 100644 (file)
index d13cf09..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-<html>
-
-<head>
-    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-    
-    <title><?php echo SITE_TITLE; ?> - aggregate</title>
-    
-</head>
-
-<body>
-    
-    <?php include_once('templates/header.html'); ?>
-
-    <div id="content">
-
-       <h1>aggregate</h1>
-    
-    <table border="0" id="agg"><tr>
-        
-        
-        
-        <td valign="top" class="column">
-        <?php $agg = get_rss_feed('http://quilime.com/aggregate/?return=rss'); ?>
-        <h2><a href="http://quilime.com/aggregate">image</a></h2>
-        <ul class="image">
-        <?php 
-        $count = 8;
-        foreach($agg->channel->item as $item) :  
-        if ($count-- == 0) break;
-        ?>    
-        <li title="<?php echo $item->title; ?>">
-            <a href="<?php echo $item->link; ?>">
-                <img src="<?php echo $item->thumb; ?>">
-            </a>
-        </li>
-        <? endforeach; ?>  
-        </ul>
-        <p>
-            <a class="more" href="http://quilime.com/aggregate" title="via quilime.com/aggregate">more &rarr;</a>            
-        </p>
-        </td>
-        
-
-
-        
-        <td valign="top" class="column">
-        <?php $tube = get_rss_feed('http://gdata.youtube.com/feeds/base/users/kabr/favorites?alt=rss&v=2&orderby=published&client=ytapi-youtube-profile'); ?>
-        <h2><a href="http://www.youtube.com/profile?user=kabr&view=favorites">video </a></h2>
-        <ul class="video">
-        <?php 
-        $count = 11;
-        foreach($tube->channel->item as $tube) :  
-        if ($count-- == 0) break;
-        ?>    
-        <li title="<?php echo str_replace('"', '\'', $tube->title); ?>">
-            <? 
-            $url = $tube->link;
-            $pattern = '/v=(.+?)&/';
-            preg_match($pattern, $url, $matches);
-            $id = $matches[1];
-            ?>
-            <a href="<?php echo $tube->link; ?>">
-            <img src="http://i3.ytimg.com/vi/<?=$id?>/default.jpg" />
-            </a>
-        </li>
-        <? endforeach; ?>  
-        </ul>
-        <p>
-            <a class="more" href="http://www.youtube.com/profile?user=kabr&view=favorites" title="via youtube">more &rarr;</a>            
-        </p>
-        </td>
-        
-
-        
-
-
-        <td valign="top" class="column">
-        <?php  $feed = get_rss_feed('http://feeds.delicious.com/v2/rss/quilime?count=20'); ?>
-        <h2><a href="http://delicious.com/quilime/">links </a></h2>
-        <ul class="bookmarks">
-        <?php foreach($feed->channel->item as $item) : ?>
-        <li>
-            <a href="<?=$item->link?>"><?=$item->title?></a>
-            <br/>
-            <span class="desc"><?=$item->description;?></span>
-        </li>
-        <? endforeach; ?>       
-        </ul>
-        <p>
-            <a class="more" href="http://delicious.com/quilime/" title="via delicious">more &rarr;</a>            
-        </p>
-        </td>
-
-        <td valign="top" class="column">
-        <?php $read = get_rss_feed('http://www.google.com/reader/public/atom/user%2F10925293898931913532%2Fstate%2Fcom.google%2Fbroadcast'); ?>
-        <h2><a href="http://www.google.com/reader/shared/10925293898931913532">reader </a></h2>
-        <ul class="reader">
-        <?php foreach($read->entry as $item) :  ?>    
-        <li>
-            <a href="<?php echo $item->link['href']; ?>"><?php echo $item->title; ?></a>
-        </li>
-        <? endforeach; ?>  
-        </ul>
-        <p>
-            <a class="more" href="http://www.google.com/reader/shared/10925293898931913532" title="via google reader">more &rarr;</a>            
-        </p>
-        </td>
-
-
-        
-
-        </tr></table>
-        
-    </div>
-
-    <?php include_once('templates/footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
diff --git a/templates/archive.html b/templates/archive.html
deleted file mode 100644 (file)
index 76a5995..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-<?php
-
-//    list($content, $total) = get_content( get_site_root() . get_base_dir() .'/'. CONTENT_DIR . $url_string );
-
-?>
-
-<html>
-
-<head>
-    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-    
-    <title><?php echo SITE_TITLE; ?> - content</title>
-    
-</head>
-
-<body>
-    
-    <?php include_once('templates/header.html'); ?>
-
-    <div id="content">
-
-        <table cellspacing=0 cellpadding=0><tr>
-                
-                <?php list($archive, $total) = list_content( 'archive' ); ?>
-                <td valign=top class="column">
-                    <h2><a href="<? echo get_base_dir(); ?>/archive/">archive</a></h2>
-                        <ul>
-                        <?php foreach ($archive as $p) : ?>
-                            <li><div class="img"></div><a href="<?php echo $p['href']; ?>"><?php echo $p['title']; ?></a></li>
-                        <?php endforeach; ?>
-                        </ul>
-
-
-                        <ul>
-                            <li><a href="http://portfolio.quilime.com/2008/">works 4</a></li>
-                            <li><a href="http://portfolio.quilime.com/new/port.php">works 3</a></li>
-                            <li><a href="http://portfolio.quilime.com/recent.html">works 2</a></li>
-                            <li><a href="http://quilime.com/content/archive/">1999 - 2004</a></li>
-                        </ul>
-                    </div>
-                </td>
-                
-                
-                
-                
-            </tr>
-        </table>
-        
-        
-    </div>
-
-    <?php include_once('templates/footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
diff --git a/templates/bio.html b/templates/bio.html
deleted file mode 100644 (file)
index 18df49a..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-<html>
-
-<head>
-
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    
-    <title><?php echo SITE_TITLE ?> - bio</title>
-    
-</head>
-
-<body>
-    
-    <?php include_once('templates/header.html'); ?>
-
-    <div id="content">
-
-       <h1>bio</h1>
-        
-               <p>
-               born 1981 in San Francisco
-               <br/><br/>
-               currently lives/works in San Francisco
-               </p>
-               
-               <br/>
-               
-               <p>
-               <a href="/cv/">c/v</a>
-               </p>
-
-    </div>
-
-    <?php include_once('templates/footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
diff --git a/templates/code.html b/templates/code.html
deleted file mode 100644 (file)
index c8983c3..0000000
+++ /dev/null
@@ -1,126 +0,0 @@
-<?php
-
-    $items = array();
-    $single = false;
-    
-    if (is_dir(CONTENT_DIR . $url_string) && !is_file(CONTENT_DIR . $url_string . '/config') ) {
-        list($items_list, $total) = get_content(basename($url_string));
-    }
-    else {
-        $config = parse_config(CONTENT_DIR . $url_string . '/config');
-        $items = $config;
-        $single = true;
-    }
-
-       $inline = isset($_GET['inline']) ? false : true;
-
-
-?>
-<html>
-
-<head>
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    <title><?php echo SITE_TITLE; ?> - code<?php if (sizeof($items) > 0 ) : ?>: <?echo strtolower($items['title']); ?> [<?php echo $items['medium']; ?>]<?php endif; ?></title>
-    <script src="/js/jquery-1.3.2.min.js"></script>
-</head>
-
-<body>
-    
-    <?php 
-        include_template('nav.html');         
-    ?>
-
-    <div id="content">
-
-        <?php if ($single) : ?>
-
-                   <h1><a href="/code/">code</a> / <?php echo $items['title']; ?>   <small class="medium">[<?php echo $items['medium']; ?>]</small></h1>
-
-               
-            <div class="content">
-                <?php 
-                    $base_dir = $items['base_dir'];
-                    include_once($items['content']); 
-                ?>
-            </div>
-                   
-       
-        <?php elseif ($inline): ?>
-
-            <h1>code</h1>         
-            
-            <p>
-                code notes
-            </p>   
-                          
-            <ul class="func">            
-                   <li><a class="func" href="/code/?inline=1">view as list</a></a></li>
-           </ul>
-
-            <ul class="inline_content">
-            <?php foreach($items_list as $items): ?>
-                   <li>
-                           <a href="<?php echo $items['href']?>"><?php echo $items['title']; ?></a>
-                    <small class="medium">[<?php echo $items['medium']; ?>]</small>                                    
-                    <div class="content">
-                    <?php 
-                        $base_dir = $items['base_dir'];
-                        include( $items['content'] ); 
-                    ?>
-                    </div>
-                </li>
-            <?  endforeach; ?>
-            </ul>        
-            
-            
-            
-
-        <?php else: ?>
-
-    
-
-            
-            <h1>code</h1>    
-
-
-            <p>
-                code notes
-            </p>   
-            
-            
-            <ul class="func">
-                       <li><a href="/code/">view inline</a></li>
-               </ul>
-           
-            <table class="archive" cellspacing="0" cellpadding="0">
-                <?php
-                $c = 1; 
-                foreach($items_list as $items): ?>
-                       <tr>
-                    <td style="text-align:right; padding-right:1em;">
-                        <small class="medium">[<?php echo $items['medium']; ?>]</small>
-                    </td>
-                    <td>
-                                   <a onmouseout="$('.c_pop').hide();" onmouseover="$('.c_pop').hide(); $('#c_<?php echo $c; ?>').show();" href="<?php echo $items['href']?>"><?php echo $items['title']; ?></a>
-                        
-                        <div id="c_<?php echo $c; ?>" class="c_pop">
-                        <?php 
-                            $base_dir = $items['base_dir'];
-                            include( $items['content'] ); 
-                        ?>
-                        </div>
-                    </td>
-                    </tr>
-                <? $c++;  endforeach; ?>
-            </table>          
-
-        <?php endif; ?>
-        
-    </div>
-
-    <?php include_once( TEMPLATE_DIR . 'footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
diff --git a/templates/contact.html b/templates/contact.html
deleted file mode 100644 (file)
index 6a53ed5..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-<html>
-
-<head>
-
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    
-    <title><?php echo SITE_TITLE ?> - contact</title>
-    
-       <style>
-
-       #message { width:300px; height:100px; padding:0.25em; font-size:1em; }
-       input[type='text'] { width:300px; font-family:monospace; }
-
-       </style>
-
-</head>
-
-<body>
-    
-    <?php include_once('templates/header.html'); ?>
-
-    <div id="content">
-
-       <h1>contact</h1>
-        
-               <p>
-               studio@gabrieldunne.com
-               </p>
-
-               <br/>
-
-               <p>
-        <form name="contact" style="display:none;">
-
-                   <label>message</label><br/>
-                       <textarea id="message"></textarea>
-
-                       <br/><br/>        
-
-            <label>reply to email</label><br/>
-            <input type="text">            
-
-                       <br/><br/>                      
-
-            <input type="submit" value="send">
-            
-                       <br/><br/><br/>
-
-        </form>
-
-               </p>
-               
-
-    </div>
-
-    <?php include_once('templates/footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
diff --git a/templates/cv.html b/templates/cv.html
deleted file mode 100644 (file)
index f95e842..0000000
+++ /dev/null
@@ -1,191 +0,0 @@
-<html>
-
-<head>
-
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    
-    <title><?php echo SITE_TITLE ?> - c/v</title>
-    
-    <style>
-        small { color:#aaa; font-weight:bold;  }
-    </style>
-    
-</head>
-
-<body>
-    
-    <?php include_once('templates/header.html'); ?>
-
-    <div id="content">
-
-       <h1>Gabriel Dunne</h1>
-    <p> 
-        http://gabrieldunne.com<br/>
-    </p>
-
-    <br/><br/>
-
-
-
-<h3>edu</h3>
-2004 B.A. Design | Media Arts, UCLA
-<br/>
-2002 Pont Avent School of Art, France
-<br/>
-1999 Architecture, Art Foundation, College of Marin
-
-<br/><br/><br/><br/>
-
-<h3>selected exhibitions / conferences</h3>
-
-<small>2008</small><br/>
-“Design and the Elastic Mind”, MoMA NYC (w/Stamen Design). Permanent Collection.<br/>
-<small>2006</small><br/>
-Interferenze: Naturalis Electronica, Valle Caudina, Italy <br/>
-Japan Media Arts Festival, Tokyo, Japan (collab.) <br/>
-Festival Sonar, Barcelona, Spain <br/>
-SIGGRAPH, Boston<br/>
-<small>2005</small><br/>
-New Wight Gallery MFA Show, UCLA, Los Angeles, CA (collab.)<br/>
-SIGGRAPH, Los Angeles<br/>
-<small>2004</small> <br/>
-:Output International Design Competition, Amsterdam, Netherlands <br/>
-CiberArt: International Festival of New Technologies, Bilbao, Spain <br/>
-Traffic, New Wight Gallery, UCLA, Los Angeles, CA (collab.) <br/>
-<small>2003</small> <br/>
-narr@tive: Digital Storytelling, Hammer Museum, Los Angeles<br/>
-Sur(Face), Design Media Arts EDA, Los Angeles, CA <br/>
-Eyberrations Digital Film Festival, Irvine, CA<br/>
-<small>2002</small><br/>
-Text + Architecture & Writing in Architecture, SCIARC, Los Angeles, CA <br/>
-Melbourne International Film Festival, Melbourne, Australia<br/>
-Experimental Works On Paper, Paris, France<br/>
-Experimental Works On Paper, Rennes, France<br/>
-Jaquez Gallery Collection, Pont Aven, France. Permanent  Collection.<br/>
-
-
-<br/><br/><br/><br/>
-
-
-<h3>teaching</h3>
-<small>2009</small><br/>
-Creative Coding (series), Gray Area Foundation for the Arts, San Francisco<br/>
-<small>2006</small>
-<br/>
-Programming and Design, UCLA, Los Angeles<br/>
-Video, UCLA Summer Institute, Guest Lecturer, UCLA, Los Angeles<br/>
-<small>2004</small><br/>
-Processing Workshop, Makers Faire, San Jose<br/>
-<small>2005</small><br/>
-UCLA, Artist Symposium. Los Angeles<br/>
-<small>2003</small><br/>
-Maya Workshop Series, UCLA, Los Angeles <br/>
-Typography Workshop Series, UCLA, Los Angeles<br/>
-<small>2002</small><br/>
-Adobe Design Workshops, UCLA, Los Angeles<br/>
-<small>2001</small><br/>
-Macromedia Design Student Workshops, UCLA, Los Angeles
-
-
-<br/><br/><br/><br/>
-
-<h3>selected projects</h3>
-"Daschtein"<br/>
-The Daschtein Ice Cave Project facilitates a global dialogue about clean energy. The public interacts with the installation by sending messages via SMS, and can view real-time display of the public discourse projected on the inside of the Dachstein Ice Cave in Austria. Created with TheGreenEyl and Club of Pioneers in Berlin. Developed in Processing, C++, Max/MSP.
-
-<br/><br/>
-"Celestial Mechanics"</strong>"<br/>
-A planetarium dome artwork that visualizes statistics, data, and protocols of man-made aerial technologies animated with Processing, Java, Maya/MEL with 5 channel surround sound. Featured in numerous international exhibitions, including Interferense Festival, Italy, Japan Media Arts festival, SIGGRAPH, and :Output Design Competition in the Netherlands.
-
-
-<br/><br/><br/><br/>
-
-
-       
-       
-
-
-       
-
-  
-       
-<h3>press</h3>
-<small>2008</small><br/>
-MIT Aerospace Annual, featuring imagery from Celestial Mechanics<br/>
-<small>2007</small><br/>
-a mínima #17, cover image <a href="http://www.flickr.com/photos/44694989@N00/2088945508/" title="view via a minima onflickr">&rarr;</a><br/>
-Contemporary Art of Science and Technology, Zhang Yanxiang, ISBN# 978-7-03-020415-8<br/>
-<small>2006</small><br/>
-AD: Architectural Digest, Featuring excerpts from Celestial Mechanic. Sep Issue<br/>
-FOCUS Italia, May Issue<br/>
-Discover Magazine, Imagery from Celestial Mechanics, Apr Issue <br/>
-Wired, Interview, March Issue<br/>
-HDRI, Interview, Feb Issue<br/>
-
-<br/><br/><br/>    <br/>   
-       
-<!--
-<h3>awards</h3>
-<small>2005</small><br/>
-Creative Review Best in Show  – Beck ‘Girl’ Music Video (w/Motion Theory)<br/>
-Type Directors Award – Nike ‘Golf’ (w/Motion Theory)<br/>
-<small>2004</small><br/>
-AIGA – HP ‘It Consolidates’ (w/Motion Theory)<br/>
-AICP – HP ‘Hands’ (w/Motion Theory)<br/>
-<small>2003</small><br/>
-Screen Network Australia<br/>
-<small>2002</small><br/>
-Shorttakes Film Festival<br/>
-
-
-<br/><br/><br/><br/>   
--->
-
-<h3>professional / residencies</h3>
-
-
-<small>2008 - Current</small>
-<br/>
-<strong>Gray Area Foundation for the Arts</strong>, San Francisco CA (Residency, Studio Director)
-<br/>
-
-<small>2004 - Current</small>
-<br/>
-<strong>Tessellated Group</strong>, Napa CA (Partner, Designer)
-<br/>
-Presentation, modeling, and display of material designs and machinery used in creating industrial  
-material formations for structure, aerospace, and packaging. Built a variety of tools, processes, and presentation with Maya, Rhino, CAD/CAM, AS3, Processing/Java, C++.
-
-<br/>
-
-<small>2008</small>
-<br/>
-<strong>Stamen Design</strong>, San Francisco CA  (Designer, Programmer)
-<br/>
-Worked on a variety of data visualization software design projects, ranging in scope from real-time interactive displays for digg.com to architectural media installations for SOM, written in AS3, Java, Processing.  Re-engineered a version of Cabspotting: a visualization of GPS locations of taxi activity in San Francisco,   acquired by MoMA NYC for the permanent collection.<br/>
-
-<small>2007</small>
-<br/>
-<strong>Google Inc</strong>, Mountain View CA (Designer, Developer)
-<br/>
-Designed and engineered visualizations of Google’s information, such as search, activity, and real time statistics, displayed internally on an international network. Software developed in Python, AS3, Java, C++, PHP.
-
-<br/>
-
-<small>2004 - 2006</small>
-<br/>
-<strong>Motion Theory</strong>, Los Angeles CA (VFX Supervisor, Designer)
-<br/>
-Animation, compositing, programmatic animation, R+D, concept development, and proposals for award winning commercials and music videos. Managed teams of designers, animators, and programmers for effects sequences, motion control sequences. Custom visual effects written in C++, Maya/MEL, Processing. 
-
-
-
-
-    </div>
-
-    <?php include_once('templates/footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
diff --git a/templates/footer.html b/templates/footer.html
deleted file mode 100644 (file)
index 1fbb7a6..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<div id="footer">
-
-   
-
-</div>
\ No newline at end of file
diff --git a/templates/header-src.html b/templates/header-src.html
new file mode 100644 (file)
index 0000000..3ed9f9b
--- /dev/null
@@ -0,0 +1,5 @@
+
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
+
+<link rel="stylesheet" href="<?php echo get_base_dir(); ?>/css/style.css" type="text/css">
+
diff --git a/templates/header.html b/templates/header.html
deleted file mode 100644 (file)
index 4ac161f..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<a href="/" id="home_arrow">&#x2b05;</a>
\ No newline at end of file
index 4abc14b469ec7f7a2d90cdbc42bca1d2b867114e..827ed4c29ac29c5770013231b023357100dcdcbc 100644 (file)
@@ -2,32 +2,15 @@
 
 <head>
     
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
+    <?php include_template('header-src.html'); ?>
     
     <title><?php echo SITE_TITLE; ?></title>
     
 </head>
 
-<?php
-
-    $bg = array(
-        'http://farm4.static.flickr.com/3599/3369443370_68ee7df73a_o.jpg',
-        'http://farm3.static.flickr.com/2568/3928515082_bd4e37902f.jpg',
-        'http://gabrieldunne.com/img/bg2.png'
-        );
-                
-?>
-
-<!--style="background:url('<?php echo $bg[rand(0, sizeof($bg) - 1)]; ?>');" --> 
-
 <body>
     
     <? include_template('nav.html'); ?>
     
-    <div id="content">
-
-    </div>
-    
 </body>
 </html>
\ No newline at end of file
index b52d31c76224deb851e395fe1d57c019c6714e1a..8a5151898da50bd88c18b7b18c7fc13ee32eb79a 100644 (file)
@@ -2,16 +2,15 @@
 
 <head>
 
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
+    <?php include_template('header-src.html'); ?>
     
-    <title><?php echo SITE_TITLE ?> links</title>
+    <title><?php echo SITE_TITLE ?> :links</title>
     
 </head>
 
 <body>
     
-    <?php include_once('templates/header.html'); ?>
+    <?php include_template('nav.html'); ?>
 
     <div id="content">
 
             }
         
            $links = array(
-                    array('http://aaronkoblin.com', 'aaron koblin'),
-                    array('http://universaloscillation.com', 'aaron meyers'),
-                    array('http://ripevessel.com', 'adam roth'),
-                    array('http://reas.com/', 'casey reas'),
-                    array('http://cenizal.com', 'cj cenizal'),
-                    array('http://www.oddsympathy.com/', 'daniel massey'),
-                    array('http://davidrager.org', 'david rager'),
-                    array('http://fredericeyl.de', 'frédéric eyl'),
-                    array('http://dabkitsch.com/jml', 'jeff lubow'),
-                    array('http://jtnimoy.net', 'joshua nimoy'),
-                    array('http://keithpasko.com', 'keith pasko'),
-                    array('http://digitanalog.net', 'marc nimoy'),
-                    array('http://makaga.com', 'matthew gale'),
-                    array('http://davidmichaeldunne.com', 'michael dunne'),                    
-                    array('http://mike.teczno.com', 'michal migurski'),
-                    array('http://mylinhtrieu.com', 'mylinh trieu'),
-                    array('http://renataraksha.com', 'renata raksha'),
-                    array('http://onecm.com', 'ryan alexander'),
-                    array('http://pohflepp.com', 'sascha pohflepp'),
-                    array('http://ssherriff.com', 'stephanie sherriff'),
-                    array('http://www.thegreeneyl.com/', 'the green eyl'),
-                    array('http://tom-carden.co.uk', 'tom carden')
+                    array('http://quilime.com', 'quilime'),
+                    array('http://gabrieldunne.com', 'gabriel dunne')
                     );    
         ?>
     
@@ -59,8 +38,6 @@
         </ul>
 
     </div>
-
-    <?php include_once('templates/footer.html'); ?>
     
 </body>
 
diff --git a/templates/log.html b/templates/log.html
deleted file mode 100644 (file)
index 16ea6b0..0000000
+++ /dev/null
@@ -1,129 +0,0 @@
-<?php
-
-    $single = false;
-    
-    if (is_dir(CONTENT_DIR . $url_string) && !is_file(CONTENT_DIR . $url_string . '/config') ) {
-        list($log_list, $total) = get_content(basename($url_string), "type=flat");
-    }
-    else {
-        $config = parse_config(CONTENT_DIR . $url_string);
-        $log = $config;
-        $base_dir = $log['base_dir'];        
-        $single = true;        
-    }
-    
-    $list = isset($_GET['list']) ? $_GET['list'] : false;
-    
-?>
-<html>
-
-<head>
-
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    
-    <title><?php echo SITE_TITLE; ?><?php if ($single) : ?> - <?php echo date("Y M d", strtotime($log['date']));?> - <?echo strtolower($log['title']); ?><? else: ?> - log<? endif; ?></title>
-
-    <script src="/js/jquery-1.3.2.min.js"></script>
-
-</head>
-
-<body>
-    
-    <?php include_template('nav.html'); ?>
-
-    <div id="content">
-
-        <?php if ($single) : ?>
-
-               <h1><a href="/log/">log</a> / <?php echo $log['title']; ?> <small class="date"><?php echo date("M d Y", $log['timestamp']); ?></small></h1>    
-            
-            <div class="content">
-            <?php echo $log['inline_content']; ?>
-            </div>
-            
-            <p>
-            <a href="/log/" class="back">&larr; back to log</a>
-            </p>
-                    
-        <?php elseif ($list): ?>
-
-            <h1>log</h1>
-
-            <ul class="func">            
-                       <li><a class="func" href="/log/">view inline</a></li>
-               </ul>            
-
-        
-           <table class="archive" cellspacing="0" cellpadding="0">
-                <tr>
-                <td style="text-align:right; padding-right:1em;">
-             
-                </td>
-                <td>
-                </td>
-                <?php 
-                    $c = 1; 
-                    foreach($log_list as $log): 
-                ?>
-                <tr>
-                <td style="text-align:right; padding-right:1em;">
-                <small class="medium"><?php echo date("M d Y", $log['timestamp']); ?></small>
-                </td>
-                <td>
-                                   <a onmouseout="$('.c_pop').hide();" onmouseover="$('.c_pop').hide(); $('#c_<?php echo $c; ?>').show();" href="<?php echo $log['href']?>"><?php echo $log['title']; ?></a>
-                    <div id="c_<?php echo $c; ?>" class="c_pop">
-                    <?php 
-                        $base_dir = $log['base_dir'];
-                        echo $log['inline_content']; 
-                        ?>
-                    </div>
-                </td>
-                </tr>
-            <?  $c++;  endforeach; ?>
-            </table> 
-            
-
-
-            
-        <?php else: ?>
-
-
-
-
-
-            
-            <h1>log</h1>
-            
-            <ul class="func">            
-                   <li><a class="func" href="/log/?list=1">view archive</a></a></li>
-           </ul>            
-
-            <ul class="inline_content log">
-            <?php foreach($log_list as $log): ?>
-                   <li>
-                       <h3>
-                           <a title="<?php echo get_relative_time($log['timestamp']); ?>" href="<?php echo $log['href'];?>">
-                               <?php echo $log['title']; ?></a> 
-                                               <small class="date"><?php echo date("M d Y", $log['timestamp']); ?></small>
-                       </h3>
-                    <br/>
-                    <?php echo $log['inline_content']; ?>
-                </li>
-            <? endforeach; ?>
-            </ul>
-
-
-
-
-
-            
-        <?php endif; ?>
-                
-    </div>
-
-    <?php include_once( TEMPLATE_DIR . 'footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
diff --git a/templates/mus.html b/templates/mus.html
deleted file mode 100644 (file)
index 61ce4d1..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-<?php
-
-    $projects = array();
-    $single = false;
-    
-    if (is_dir(CONTENT_DIR . $url_string) && !is_file(CONTENT_DIR . $url_string . '/config') ) {
-        list($projects_list, $total) = list_content(basename($url_string));
-    }
-    else {
-        $config = parse_config(CONTENT_DIR . $url_string . '/config');
-        $project = $config;
-        $single = true;
-    }
-
-?>
-<html>
-
-<head>
-
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    
-    <title><?php echo SITE_TITLE; ?> - projects<?php if (sizeof($projects) > 0 ) : ?>: <?echo strtolower($project['title']); ?> [<?php echo $project['medium']; ?>]<?php endif; ?></title>
-    
-</head>
-
-<body>
-    
-    <?php include_once(TEMPLATE_DIR . 'header.html'); ?>
-
-    <div id="content">
-    
-       
-        
-        <?php if ($single) : ?>
-
-           <h1><a href="<?php echo get_base_dir(); ?>/projects">projects</a> / <?php echo $project['title']; ?></h1>    
-            <?php 
-                $base_dir = $project['base_dir']; 
-                include_once($project['content']); 
-            ?>
-            
-        
-        <?php elseif ($list): ?>
-        
-        <?php else: ?>
-        
-             <h1>projects</h1>
-
-            <ul class="thumbnails">
-            <?php foreach($projects_list as $project): 
-            ?>
-                   <li>
-                           <div class="title"><? echo $project['title']; ?></div>
-                           <p>
-                               <? include ($project['content']);?>
-                       </p>
-                </li>
-            <? endforeach; ?>
-            </ul>
-        <?php endif; ?>
-        
-    </div>
-
-    <?php include_once( TEMPLATE_DIR . 'footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
index 3285395de98cd27b85964f6db6337ff64eb32a54..d285cc451ba4c0f5d6382f2678d4698e1e729bcc 100644 (file)
         <?php echo list_content('projects', array()); ?>
     </ul>
     
-    <br/>
+    <br/>    
     
-    <h3><a href="/code/">code</a></h3>
-    <ul>
-        <?php echo list_content('code', array()); ?>
-    </ul>
-    
-    <br/>
-
-    <!--
-    <ul>
-        <li><a href="/log/">log</a></li>
-
-    </ul>
-    -->
-
-       <li><a href="/log/">log</a></li>        
-       <li><a href="/photo/">photo</a></li>            
-       <li><a href="/text/">text</a></li>              
-       <li><a href="/mus/">music</a></li>
-    <li><a href="/bio/">bio</a></li>
-    <li><a href="/contact/">contact</a></li>           
-    <li><a href="/aggregate/">aggregate</a></li>
+    <li><a href="/about/">about</a></li>
     <li><a href="/links/">links</a></li> 
     
 </ul>  
index 0fdb7fbc7a29bebee96b7ba9f1f78bd117278352..e74efc59fd7a3b906f02bd96e74917901394ab85 100644 (file)
@@ -8,9 +8,8 @@ $img = get_rss_feed('http://api.flickr.com/services/feeds/photos_public.gne?id=2
 
 <head>
     
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-    
+    <?php include_template('header-src.html'); ?>
+        
     <title><?php echo SITE_TITLE; ?> :photo</title>
     
     <style>
@@ -46,8 +45,6 @@ $img = get_rss_feed('http://api.flickr.com/services/feeds/photos_public.gne?id=2
         <a href="http://www.flickr.com/photos/quilime/" title="via flickr" class="more">more via flickr &rarr;</a>            
  
     </div>
-
-    <?php include_once('templates/footer.html'); ?>
     
 </body>
 
diff --git a/templates/photo_bk.html b/templates/photo_bk.html
deleted file mode 100644 (file)
index e0ad96a..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-<?php
-
-    $photo = array();
-    $single = false;
-    
-    if (is_dir(CONTENT_DIR . $url_string) && !is_file(CONTENT_DIR . $url_string . '/config') ) {
-        list($photo_list, $total) = list_content(basename($url_string));
-    }
-    else {
-        $config = parse_config(CONTENT_DIR . $url_string . '/config');
-        $photo_single = $config;
-        $single = true;
-    }
-
-?>
-<html>
-
-<head>
-
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    
-    <title><?php echo SITE_TITLE; ?> - photo<?php if (sizeof($photo) > 0 ) : ?>: <?echo strtolower($photo_single['title']); ?> [<?php echo $photo_single['medium']; ?>]<?php endif; ?></title>
-    
-</head>
-
-<body>
-    
-    <?php include_once(TEMPLATE_DIR . 'header.html'); ?>
-
-    <div id="content">
-    
-       
-        
-        <?php if ($single) : ?>
-
-           <h1><a href="<?php echo get_base_dir(); ?>/photo">photo</a> / <?php echo $photo_single['title']; ?></h1>    
-            <?php 
-                $base_dir = $photo_single['base_dir']; 
-                include_once($photo_single['content']); 
-            ?>
-            
-        
-        <?php elseif ($list): ?>
-        
-        <?php else: ?>
-        
-             <h1>photo</h1>
-            <ul class="thumbnails">
-            <?php foreach($photo_list as $photo_single): ?>
-                   <li>
-                       <a href="<?php echo $photo_single['href']?>">
-                           <div class="thumbnail" title="<? echo $photo_single['title'] ?>"><img src="<?php echo $photo_single['thumb']; ?>" /></div>
-                           <div class="title"><? echo $photo_single['title']; ?></div>
-                       </a>
-                </li>
-            <? endforeach; ?>
-            </ul>
-
-        <?php endif; ?>
-        
-    </div>
-
-    <?php include_once( TEMPLATE_DIR . 'footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file
index 331b8036ad1b59960598d921acda38aff981a747..054f6413c8e5be3931bbdcd13e0fb7c3ff7d5f9d 100644 (file)
@@ -17,8 +17,7 @@
 
 <head>
 
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
+    <?php include_template('header-src.html'); ?>
     
     <title><?php echo SITE_TITLE; ?> - projects<?php if (sizeof($projects) > 0 ) : ?>: <?echo strtolower($project['title']); ?> [<?php echo $project['medium']; ?>]<?php endif; ?></title>
     
 
 <body>
     
-    <?php
-        include_template('nav.html');         
-    ?>
+    <?php include_template('nav.html'); ?>
 
     <div id="content">
-    
-       
         
         <?php if ($single) : ?>
 
                 $base_dir = $project['base_dir']; 
                 include_once($project['content']); 
             ?>
-            
-        
+                    
         <?php elseif ($list): ?>
         
         <?php else: ?>
         
              <h1>projects</h1>
 
             <ul class="thumbnails">
             <?php foreach($projects_list as $project): ?>
                    <li>
                        <a href="<?php echo $project['href']?>">
-                           <div class="thumbnail" title="<? echo $project['title'] ?>"><img src="<?php echo $project['thumb']; ?>" /></div>
+                           <div class="thumbnail" title="<? echo $project['title'] ?>">
+                               <?php if(isset($project['thumb'])) :?>
+                               <img src="<?php echo $project['thumb']; ?>" />
+                               <?php endif; ?>
+                               </div>
                            <div class="title"><? echo $project['title']; ?></div>
                        </a>
                 </li>
             <? endforeach; ?>
-            </ul>
-
-            
-            <ul>
-                <li><a href="http://portfolio.quilime.com/2008/?p=tessellated">Tessellated Group</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=rattle">Rattles</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=sempernull">Sempernull</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=synonymovement">Synonymovement</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=mask">Mask</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=prism">Prism</a></li>
-                <li><a href="http://content.stamen.com/som_transbay_tower">SOM w/ Stamen Design</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=spacelamp">Spacelamp</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=boat">Boat</a></li>
-                <li><a href="http://portfolio.quilime.com/new/port.php?p=01_Dots">Dots</a></li>
-                <li><a href="http://portfolio.quilime.com/new/port.php?p=02_Jellyfish">Jelly</a></li>
-                <li><a href="http://portfolio.quilime.com/new/port.php?p=05_Swim_Tank">Swim Tank</a></li>
-                <li><a href="http://portfolio.quilime.com/new/port.php?p=06_Web">Web</a></li>
-                <li><a href="http://portfolio.quilime.com/new/port.php?p=04_Stars">Sempernull (prog)</a></li>
-                <li><a href="http://portfolio.quilime.com/new/port.php?p=03_Rattles">Rattles (prog)</a></li>
-                <li><a href="http://www.motiontheory.com/work/modest-mouse_dashboard">Modest Mouse "Dashboard"</a></li>
-                <li><a href="http://www.motiontheory.com/work/hp_pharrell">HP Pharrel</a></li>
-                <li><a href="http://portfolio.quilime.com/content/daschtein/index.html">Dachstein</a></li>
-                <li><a href="http://portfolio.quilime.com/content/cm/index.html">Celestial Mechanics</a></li>
-                <li><a href="http://www.motiontheory.com/work/beck_girl">Beck "Girl"</a></li>
-                <li><a href="http://www.motiontheory.com/work/hp_it-consolidates">HP "It Consolidates"</a></li>
-                <li><a href="http://www.motiontheory.com/work/resfest_panoramic">Resfest Panoramic</a></li>
-                <li><a href="http://dev.motiontheory.com/nikegolf/">Nike Golf</a></li>
-                <li><a href="http://portfolio.quilime.com/content/valentine/index.html">Valentine</a></li>
-                <li><a href="http://quilime.com/content/fr_weekly">Weekly</a></li>
-                <li><a href="http://quilime.com/content/fr_posters">Posters</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=obsession">Obsession</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=bodyneg">Body Negative</a></li>
-                <li><a href="http://portfolio.quilime.com/content/nosreves/index.html">Nos Reves</a></li>
-                <li><a href="http://portfolio.quilime.com/2008/?p=icarus">Icarus</a></li>
-          </ul>            
+            </ul>     
             
         <?php endif; ?>
         
     </div>
-
-    <?php include_once( TEMPLATE_DIR . 'footer.html'); ?>
     
 </body>
 
diff --git a/templates/text.html b/templates/text.html
deleted file mode 100644 (file)
index 8ae7150..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-
-    $single = false;
-    
-    if (is_dir(CONTENT_DIR . $url_string) && !is_file(CONTENT_DIR . $url_string . '/config') ) {
-        list($log_list, $total) = get_content(basename($url_string), "type=flat");
-    }
-    else {
-        $config = parse_config(CONTENT_DIR . $url_string);
-        $log = $config;
-        $base_dir = $log['base_dir'];        
-        $single = true;        
-    }
-    
-    $list = isset($_GET['list']) ? $_GET['list'] : true;
-    
-?>
-<html>
-
-<head>
-
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
-    <link rel="stylesheet" href="<?php echo get_base_dir(); ?>/style.css" type="text/css">
-    
-    <title><?php echo SITE_TITLE; ?><?php if ($single) : ?> - <?echo ($log['title']); ?><? else: ?> - text<? endif; ?></title>
-
-    <script src="/js/jquery-1.3.2.min.js"></script>
-
-</head>
-
-<body>
-    
-    <?php include_once(TEMPLATE_DIR . 'header.html'); ?>
-
-    <div id="content">
-
-        <?php if ($single) : ?>
-
-               <h1><a href="/text/">text</a> / <?=$log['title']?></h1>
-            
-            
-            <div class="content text">
-            <?php echo $log['inline_content']; ?>
-            </div>
-            
-            <p>
-            <a href="/text/" class="back">&larr; back to text</a>
-            </p>
-                    
-        <?php elseif ($list): ?>
-
-            <h1>text</h1>
-
-           <table class="archive" cellspacing="0" cellpadding="0">
-                <tr>
-                <?php 
-                    $c = 1; 
-                    foreach($log_list as $log): 
-                ?>
-                <tr>
-                <td>
-                                   <a href="<?php echo $log['href']?>"><?php echo $log['title']; ?></a>
-                </td>
-                </tr>
-            <?  $c++;  endforeach; ?>
-            </table> 
-            
-
-
-
-        <?php endif; ?>
-                
-    </div>
-
-    <?php include_once( TEMPLATE_DIR . 'footer.html'); ?>
-    
-</body>
-
-</html>
\ No newline at end of file