commit ebb4b92b2f914806b162f203e96c6b91aca09238 Author: suroh Date: Tue May 1 22:20:32 2018 +0200 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9904be7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Don't upload research folder +research/ diff --git a/assets/imgs/chagrin1.png b/assets/imgs/chagrin1.png new file mode 100755 index 0000000..0d11687 Binary files /dev/null and b/assets/imgs/chagrin1.png differ diff --git a/assets/imgs/chagrin2.png b/assets/imgs/chagrin2.png new file mode 100755 index 0000000..0194788 Binary files /dev/null and b/assets/imgs/chagrin2.png differ diff --git a/assets/imgs/chagrin3.png b/assets/imgs/chagrin3.png new file mode 100755 index 0000000..79fef58 Binary files /dev/null and b/assets/imgs/chagrin3.png differ diff --git a/assets/imgs/euclid.svg b/assets/imgs/euclid.svg new file mode 100755 index 0000000..685d752 --- /dev/null +++ b/assets/imgs/euclid.svg @@ -0,0 +1 @@ +Artboard 4 copy \ No newline at end of file diff --git a/assets/imgs/euclidLogo.png b/assets/imgs/euclidLogo.png new file mode 100644 index 0000000..34cf5cd Binary files /dev/null and b/assets/imgs/euclidLogo.png differ diff --git a/assets/imgs/euclidScore.png b/assets/imgs/euclidScore.png new file mode 100755 index 0000000..fc5d4b3 Binary files /dev/null and b/assets/imgs/euclidScore.png differ diff --git a/assets/imgs/euclidScore2.png b/assets/imgs/euclidScore2.png new file mode 100755 index 0000000..c50f8cf Binary files /dev/null and b/assets/imgs/euclidScore2.png differ diff --git a/assets/imgs/euclidianGenerator_mk2.png b/assets/imgs/euclidianGenerator_mk2.png new file mode 100755 index 0000000..64211ea Binary files /dev/null and b/assets/imgs/euclidianGenerator_mk2.png differ diff --git a/assets/imgs/guildFloppies.jpg b/assets/imgs/guildFloppies.jpg new file mode 100755 index 0000000..f31da87 Binary files /dev/null and b/assets/imgs/guildFloppies.jpg differ diff --git a/assets/imgs/memphis1.png b/assets/imgs/memphis1.png new file mode 100755 index 0000000..7f4ec22 Binary files /dev/null and b/assets/imgs/memphis1.png differ diff --git a/assets/imgs/memphis2.png b/assets/imgs/memphis2.png new file mode 100755 index 0000000..3c5dbf4 Binary files /dev/null and b/assets/imgs/memphis2.png differ diff --git a/assets/imgs/memphis3.png b/assets/imgs/memphis3.png new file mode 100755 index 0000000..0e0129b Binary files /dev/null and b/assets/imgs/memphis3.png differ diff --git a/assets/imgs/playingTetra.jpg b/assets/imgs/playingTetra.jpg new file mode 100755 index 0000000..c0f9c02 Binary files /dev/null and b/assets/imgs/playingTetra.jpg differ diff --git a/assets/imgs/polydog.png b/assets/imgs/polydog.png new file mode 100755 index 0000000..e7b9394 Binary files /dev/null and b/assets/imgs/polydog.png differ diff --git a/assets/imgs/rePoem3.png b/assets/imgs/rePoem3.png new file mode 100755 index 0000000..d3c9bc4 Binary files /dev/null and b/assets/imgs/rePoem3.png differ diff --git a/assets/imgs/silentStatement_3179.jpg b/assets/imgs/silentStatement_3179.jpg new file mode 100755 index 0000000..6c85623 Binary files /dev/null and b/assets/imgs/silentStatement_3179.jpg differ diff --git a/assets/imgs/tetra.jpg b/assets/imgs/tetra.jpg new file mode 100755 index 0000000..f9cd04f Binary files /dev/null and b/assets/imgs/tetra.jpg differ diff --git a/assets/imgs/tetra2.jpg b/assets/imgs/tetra2.jpg new file mode 100755 index 0000000..ad177a9 Binary files /dev/null and b/assets/imgs/tetra2.jpg differ diff --git a/assets/imgs/xpubGenerator.jpg b/assets/imgs/xpubGenerator.jpg new file mode 100755 index 0000000..2f463b1 Binary files /dev/null and b/assets/imgs/xpubGenerator.jpg differ diff --git a/css/styles.css b/css/styles.css new file mode 100755 index 0000000..df4b839 --- /dev/null +++ b/css/styles.css @@ -0,0 +1,125 @@ +@import url("https://fontlibrary.org/face/tex-gyre-adventor"); +@import url("https://fontlibrary.org/face/thsarabun-new"); +body { + font: 1.6em "THSarabunNewRegular", Helvetica, sans-serif; + color: #333; + line-height: 0.8em; } + +a { + color: #FF3300; + text-decoration: none; + width: 100%; + -moz-transition: color 0.3s ease; + -o-transition: color 0.3s ease; + -webkit-transition: color 0.3s ease; + transition: color 0.3s ease; } + a:hover { + color: #99FFFF; + -moz-transition: color 1s ease; + -o-transition: color 1s ease; + -webkit-transition: color 1s ease; + transition: color 1s ease; } + +h1, h2, h3, h4, h5 { + font-family: "TeXGyreAdventorRegular", sans-serif; } + +footer { + grid-row: 9 / span 1; + grid-column: 1 / 6; + margin: 40px 0px 10px; } + footer p { + text-align: center; + font-size: 0.5em; + color: #CECECE; } + +iframe { + max-width: 100%; + max-height: auto; + border: thin #99FFFF dashed; } + +nav { + width: 100%; + margin: 20px 0; + text-align: center; } + nav ul { + list-style: none; } + nav ul li { + display: inline-block; + padding: 0 15px; } + +#wrapper { + max-width: 900px; + margin: 0 auto; + display: grid; + grid-gap: 10px; + grid-template-columns: repeat(6) 10%; + grid-template-rows: repeat(9); } + #wrapper div img, #wrapper div video, #wrapper div object, #wrapper section img, #wrapper section video, #wrapper section object, #wrapper header img, #wrapper header video, #wrapper header object, #wrapper footer img, #wrapper footer video, #wrapper footer object { + max-width: 100%; } + +header { + grid-column: 3 / span 4; + grid-row: 1 / span 4; + align-self: stretch; + text-align: right; } + +.one { + grid-column: 1 / span 2; + grid-row: 4 / span 2; + align-self: top; + z-index: 3; } + +.text { + grid-column: 1 / span 4; + grid-row: 2 / span 5; + align-self: top; + font-size: 0.8em; + text-align: justify; + padding: 20px 40px; + border: thin #99FFFF dashed; } + +.work { + grid-column: 2 / 6; + grid-row: 5 / auto; } + .work img, .work object, .work iframe { + display: block; + margin: 100px auto; + border: thin #99FFFF dashed; } + .work img, .work object:first-of-type { + margin: 0px auto 100px; } + +.inPage { + grid-row: 8 / auto; } + +.cv section:first-of-type { + grid-column: 1 / 6; + grid-row: 1 / span 1; + padding: 0 20px; + border: thin #99FFFF dashed; } + .cv section:first-of-type #me { + position: relative; + top: 5px; + width: 25%; + text-align: right; + font-style: italic; } + +.cv #edu { + grid-column: 4 / 6; + grid-row: 2 / 3; + align-self: center; } + +.cv #music { + grid-column: 1 / span 2; + grid-row: 3 / 5; + align-self: start; } + +.cv #things { + grid-column: 3 / 4; + grid-row: 1 / 5; + align-self: center; + padding: 0 50px 0 0; } + +.cv #prof { + grid-column: 3 / 6; + grid-row: 6; + align-items: start; } diff --git a/cv.html b/cv.html new file mode 100755 index 0000000..b6b93ad --- /dev/null +++ b/cv.html @@ -0,0 +1,114 @@ + + + + wkflw : about + + + + + + + + + +
+ +
+

Max Franklin

+ +
+ max.e.franklin@gmail.com + +

Currently based in the Netherlands making experimental publications at the Piet Zwart Institute.

+
+
+ +
+

Education

+ +

Piet Zwart Institute
+ 2016 (current) // The Netherlands
+ Master's in Media Design : Experimental Publishing

+ +

Conservatorium of Sydney (University of Sydney)
+ 2009 // Australia
+ Bachelor Jazz Performance (Saxophone) & Creative Sound Engineering

+
+ +
+

Things

+ +

Autonomous Archive
+ Het Nieuw Instituut
+ 2017 // The Netherlands
+ Archival machine, installation and research project centred around autonomous living and archival practices. Presented alongside the Architecture of Apropriation exhibition.

+ +

TGC#3 : Euclid
+ De Player
+ 2017 // The Netherlands
+ Experimental sound publication object and performative instrument. Collaborative project between De Player and the Piet Zwart Experimental Publishing unit.

+ +

LowTechLabLondon2016
+ Saatchi Gallery
+ 2016 // England
+ International art lab organised by Raul Marroquin around the theme of Low Tech.

+ +

Festival de Projets Scolaires
+ La Gaîté lyrique
+ 2016 // France
+ Partnership workshop show with Paris College of Art students and faculty.

+ +

IDENTITE REVE(L)EE
+ *Mi Gallery
+ Paris Digital Week
+ 2015 // France
+ Collaborative piece prestented at *Mi Gallery as part of Paris Digital Week.

+ +

Barcu Art Fair
+ 2015 // Columbia
+ Presentation via Skype on Collaborative Art, Interactivity and Improvisation.

+
+ +
+

Music

+ +

Shaolin Afronauts
+ 2012 – 2014 // Australia
+ Sideman on “Quest under Capricorn” and “Follow the Path”

+ +

Debonair Gentlemen
+ 2009 – 2012 // Australia
+ Leftwing jazz trio

+
+ +
+

Professional Experience

+ +

Paris College of Art
+ 2014 - 2016 // France
+ Faculty Member in Foundation and Communication Design Departments

+ +

Freelance Graphic Designer
+ 2009 – 2014 // Australia
+ Web-design, poster and album design

+ +

Linear Recording
+ 2009 – 2010 // Australia
+ Assistant Sound Engineer

+
+ +
+

website and server built by hand with off the shelf parts

+
+ +
+ + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100755 index 0000000..ed3b114 --- /dev/null +++ b/index.html @@ -0,0 +1,38 @@ + + + + wkflw + + + + + + + +
+ +
+

max franklin

+
+ +
+

work > experiments > research. get my cv check out my code or read my incoherent research.

+

know more about experimental publishing and the what we do there.

+
+ +
+ + + + + +
+ +
+

website and server built by hand with off the shelf parts

+
+ +
+ + + \ No newline at end of file diff --git a/tgc3-euclid.html b/tgc3-euclid.html new file mode 100755 index 0000000..bdac437 --- /dev/null +++ b/tgc3-euclid.html @@ -0,0 +1,59 @@ + + + + wkflw + + + + + + + +
+ +
+

max franklin

+
+ +
+ +

euclid

+
+ +

Tetra Gamma Circulaire 3 was a collaborative work between De Player and the Experimental Publishing unit at the Piet Zwart Institute.

+ +

The core theme of the publication was the investigation on score. What is a score's function, historically, and how it can be interpreted today.

+ +

I drew on previous experience with music performance, theory and composition, and decided to continue to explore themes that I had previously been investigating - primarily improvisation.

+ +

My piece, Euclid, is an improvisational instrument that aims to explore musical improvisational exploration. It is designed to allow the player to explore its musical possibilities, while requiring active experimentation to master its interface. The music produced by Euclid are based upon Euclidian rhythms, a mathematical system that generates traditional rhythmic patterns. Rather than a noise instrument, the musicality encourages continuous compositional exploration and creates a dialogue between performer and instrument.

+ +

The instrument is controlled via a series of touch conductive points. These points work very differently depending on the environmental, and individual conductivity of the player. The instrument therefore has been designed to adjust and learn from the player as the performance progresses. In turn the performer must learn the unique situationally affected intricacies of the instrument, as well as their own affects, allowing for very different performances of the instrument each time.

+ +

The end result was an interactive, improvisational, chaotic music machine. Its score, a mash of software and numbers, humanly unintelligible, and musically irreproducible.

+
+ +
+ + + + + + + + + + + + + + +
+
+

website and server built by hand with off the shelf parts

+
+ +
+ + + \ No newline at end of file diff --git a/work/euclid-pd.html b/work/euclid-pd.html new file mode 100755 index 0000000..912807d --- /dev/null +++ b/work/euclid-pd.html @@ -0,0 +1,16 @@ + + + + wkflw : work : euclid pd + + + + + + + +
+
+ + + \ No newline at end of file diff --git a/work/euclid.html b/work/euclid.html new file mode 100755 index 0000000..de024d2 --- /dev/null +++ b/work/euclid.html @@ -0,0 +1,16 @@ + + + + wkflw : work : euclid + + + + + + + +
+
+ + + \ No newline at end of file diff --git a/work/polydog.html b/work/polydog.html new file mode 100755 index 0000000..644ab4b --- /dev/null +++ b/work/polydog.html @@ -0,0 +1,16 @@ + + + + wkflw : work : polydog + + + + + + + +
+
+ + + \ No newline at end of file diff --git a/work/repoem.html b/work/repoem.html new file mode 100755 index 0000000..e69de29 diff --git a/work/xpubGenerator.html b/work/xpubGenerator.html new file mode 100755 index 0000000..9aa3286 --- /dev/null +++ b/work/xpubGenerator.html @@ -0,0 +1,19 @@ + + + + wkflw : work : xpubGenerator + + + + + + + +
+ + + +
+ + + \ No newline at end of file