From 4e84c0790345f06dd09641a9be46a50f8adc23a5 Mon Sep 17 00:00:00 2001 From: Gabriel Dunne Date: Sun, 1 Aug 2010 14:43:03 -0700 Subject: [PATCH] added new post --- content/blog/2010-07-29_biennial_perf | 43 +++++++++++++++++++++++++++ content/config | 2 ++ content/projects/config | 2 ++ pages/cv | 31 +++++++++---------- public/css/style.css | 4 +-- scripts/content | 22 +++++++------- templates/head-inc.html.tpl | 7 ++--- templates/nav.html.tpl | 2 +- 8 files changed, 79 insertions(+), 34 deletions(-) create mode 100644 content/blog/2010-07-29_biennial_perf create mode 100644 content/config create mode 100644 content/projects/config diff --git a/content/blog/2010-07-29_biennial_perf b/content/blog/2010-07-29_biennial_perf new file mode 100644 index 0000000..11350ad --- /dev/null +++ b/content/blog/2010-07-29_biennial_perf @@ -0,0 +1,43 @@ +title = biennial performance +tags = perf install projection vis aud +notes = this might need to be split up into a few posts +-- + +# video + +[video] + + + +# documentation + +Snapshotsof the ICOSI piece for the biennial show. + +![icosi install](http://farm5.static.flickr.com/4092/4847387548_8a127a4c4f.jpg) +![icosi](http://farm5.static.flickr.com/4110/4847387674_5419f0b672.jpg) + +[view photoset on flickr](http://www.flickr.com/photos/quilime/sets/72157624499344281/with/4847387648/) + + + +#   +# fabrication + +The process gave way to many more ideas about fabricating much more dynamic shapes. This current fab ended up using metal piano hinges between wood panels. Each panel was stretched with thick white lycra. + +Some future ideas are to rapid prototype custom hinges for frame-like panels with an emphasis on lightness, ease of construction, the ability to be cleaned, none-wasteful, and are sturdy. + +The software and audio toolset took place over the last three weeks leading up to the performance. The performance dramatically split my focus into two places (playing music, changing visuals), which was a juggle that I wasn't anticipating, as I was developing the visual software on one split-screen before the performance. Inspired to continue pursuing interfaces and controllers to overcome the separation of creating audio and visuals simultaneously. + +The multiple mediums (sculpture, sound, visual media) of this particular project was fascinating. Each iteration represents a process of my own curiosities in technology, consciousness, spirituality, design, and fabrication. + +#   +# concept & design + +The piece represents my practice and experiences in regards to my own spiritual growth and experience. Geometrically, the form is inspired by sacred polyhedra that represent forms of transition. The choice of an [icosidodecahedron](http://en.wikipedia.org/wiki/Icosidodecahedron) represents transition of two frequencies, represented by an [icosahedron](http://en.wikipedia.org/wiki/Icosahedron) and its dual polyhedron, a [dodecahedron](http://en.wikipedia.org/wiki/Dodecahedron). + +The form is composed of 7 panels trimmed and scaled from a full icosidodecahedron. The visuals follow the structure of the form nearly explicitly, with the exception of textural elements. Below is the UV map for the geometry. + +![ref](/media/blog/icosi/plane_layout3.png) + +The inclusion of the Merkaba/Star Tetrahedron represents an inspiration for the visuals. The Merkaba, a dual spinning pyramid, represents a spiritual light vehicle used by the ancients to transcend to and contact spiritual realms. "Mer" means Light. "Ka" means Spirit. "Ba" means Body. Mer-Ka-Ba means the spirit/body surrounded by counter-rotating fields of light, (wheels within wheels), spirals of energy as in DNA, which transports spirit/body from one dimension to another. [[1]](http://www.crystalinks.com/merkaba.html) diff --git a/content/config b/content/config new file mode 100644 index 0000000..cf77a4f --- /dev/null +++ b/content/config @@ -0,0 +1,2 @@ +title = index +template = index \ No newline at end of file diff --git a/content/projects/config b/content/projects/config new file mode 100644 index 0000000..d798728 --- /dev/null +++ b/content/projects/config @@ -0,0 +1,2 @@ +title = projects +template = projects \ No newline at end of file diff --git a/pages/cv b/pages/cv index 38110a9..9e493a6 100644 --- a/pages/cv +++ b/pages/cv @@ -6,11 +6,24 @@ b. 1981, san francisco
- +**cv** +Tessellated Group +Stamen Design +Google, Inc +Motion Theory +
-**selected exhibitions, performance** -2010 Biennial of the Americas, Denver + +**edu** +2003 B.A. Design | Media Arts, UCLA +2002 Pont Avent School of Art, France +1999 Architecture, Art, College of Marin +
+
+ +**exhibitions, performance** +2010 Biennial of the Americas, Denver (performance) 2010 Prototype, Gray Area Foundation for the Arts, San Francisco 2010 Powers of Ten, Gray Area Foundation for the Arts 2008 Design and the Elastic Mind, MoMA NYC (w/Stamen Design. Permanent Collection) @@ -77,15 +90,3 @@ b. 1981, san francisco 2001 UCLA Merit Scholarship
-**cv** -Tessellated Group -Stamen Design -Google, Inc -Motion Theory -
- -**edu** -2003 B.A. Design | Media Arts, UCLA -2002 Pont Avent School of Art, France -1999 Architecture, Art, College of Marin - diff --git a/public/css/style.css b/public/css/style.css index 2060f5c..63636b9 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -1,10 +1,10 @@ body { margin:80px 100px 50px 40px; } -html, body, table { font-family: helvetica; font-size:14px; line-height:1.5em; color:#ccc; background:#121212; } +html, body, table { font-family: helvetica; font-size:12px; line-height:1.5em; color:#ccc; background:#121212; } .nav { position:absolute; z-index:1; top:20px; left:30px; } .nav ul { margin-left:1em; } .nav h1 { margin-bottom:50px;} -.nav { position:fixed; top: 20px; left: 20px; } +.nav { position:absolute; top: 20px; left: 20px; } diff --git a/scripts/content b/scripts/content index bbff300..5b2afe4 100755 --- a/scripts/content +++ b/scripts/content @@ -1,9 +1,6 @@ DATE=$(date +%Y"-"%m"-"%d) FOLDER=$1 -echo -n "prepend filename with current date? (y/n) " -read -e USE_DATE - if $USE_DATE then FILE=$DATE_$2 @@ -11,12 +8,15 @@ else FILE=$2 fi -if test -d content/$FOLDER - then - echo "dir already exists..." -else - mkdir content/$FOLDER -fi +echo $FILE -echo -e "title = $2\ndate = $DATE\ndraft = true\n--\n\n" > content/$FOLDER/$FILE -emacs content/$FOLDER/$FILE \ No newline at end of file +# +#if test -d content/$FOLDER +# then +# echo "dir already exists..." +#else +# mkdir content/$FOLDER +#fi +# +#echo -e "title = $2\ndate = $DATE\ndraft = true\n--\n\n" > content/$FOLDER/$FILE +#emacs content/$FOLDER/$FILE \ No newline at end of file diff --git a/templates/head-inc.html.tpl b/templates/head-inc.html.tpl index 5158ef9..31f8539 100644 --- a/templates/head-inc.html.tpl +++ b/templates/head-inc.html.tpl @@ -1,6 +1,3 @@ - - - - - + + \ No newline at end of file diff --git a/templates/nav.html.tpl b/templates/nav.html.tpl index 7c5a094..3661a71 100644 --- a/templates/nav.html.tpl +++ b/templates/nav.html.tpl @@ -10,7 +10,7 @@
-
  • blog
  • +
  • blog
  • 0)); ?> -- 2.34.1