diff --git a/_site/bower_components/imagefill.js/README.md b/_site/bower_components/imagefill.js/README.md index 7a6685c1..8ecc5daa 100644 --- a/_site/bower_components/imagefill.js/README.md +++ b/_site/bower_components/imagefill.js/README.md @@ -4,10 +4,12 @@ by [John Polacek](http://johnpolacek.com) See demo and documentation at the [project page](http://johnpolacek.github.io/imagefill.js) +Requires imagesLoaded - https://github.com/desandro/imagesloaded + * * * #### follow [@johnpolacek](https://twitter.com/johnpolacek) * * * ## Legal -Author & copyright (c) 2013: [John Polacek](http://johnpolacek.com), Dual MIT & GPL license \ No newline at end of file +Author & copyright (c) 2013: [John Polacek](http://johnpolacek.com), Dual MIT & GPL license diff --git a/_site/bower_components/picbookjs/Gruntfile.js b/_site/bower_components/picbookjs/Gruntfile.js deleted file mode 100644 index 0397780f..00000000 --- a/_site/bower_components/picbookjs/Gruntfile.js +++ /dev/null @@ -1,45 +0,0 @@ -/*global require, module */ -/*jslint node: true*/ -'use strict'; - -module.exports = function (grunt) { - - require('time-grunt')(grunt); - require('load-grunt-tasks')(grunt); - - grunt.initConfig({ - - pkg: grunt.file.readJSON('package.json'), - - uglify: { - options: { - banner: '/*! <%= pkg.name %> <%= pkg.version %> Copyright (C) 2014 <%= pkg.author %>, <%= pkg.homepage %> */\n' - }, - lib: { - files: { - 'js/picbook.min.js': ['js/picbook.js'] - } - } - }, - - jshint: { - options: { - reporter: require('jshint-stylish'), - curly: true, - eqeqeq: true, - eqnull: true, - browser: true - }, - gruntfile: { - src: 'Gruntfile.js' - }, - lib: { - src: ['js/picbook.js'] - } - }, - - }); - - grunt.registerTask('default', ['jshint','uglify']); - -}; \ No newline at end of file diff --git a/_site/bower_components/picbookjs/LICENSE.md b/_site/bower_components/picbookjs/LICENSE.md deleted file mode 100644 index a332602a..00000000 --- a/_site/bower_components/picbookjs/LICENSE.md +++ /dev/null @@ -1,12 +0,0 @@ -License -------- - -The MIT License (MIT) - -Copyright © 2014 [Henrique Alves](https://github.com/henriquea) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/_site/bower_components/picbookjs/README.md b/_site/bower_components/picbookjs/README.md deleted file mode 100644 index 4888f92e..00000000 --- a/_site/bower_components/picbookjs/README.md +++ /dev/null @@ -1,87 +0,0 @@ -picbookJs -------- - -A simple Javascript library to display album photos from a Facebook Page. - -## Why? - -The library was made because we wanted to easily "embed" photos from a Facebook page to our church's [website](http://hillsong.co.uk). Also this would be managed by people with basic understanding of HTML, this is why I tried to keep it simple and without dependencies. - -## Installation - -- [Download](https://github.com/henriquea/picbookjs/archive/master.zip) ZIP -- Bower: `bower install picbookjs` - -## Getting Started - -This is the simple way to get the ball rolling. - -### Basic usage - -Include the `picbook.min.js` before the `` tag. Then initialise the library: - -```html -
- - - - -``` - -### Options - -Those are the options avaliable when you initialise the library: - -| Parameter | Description | -| ----------------- | ---------------------------------------------------------------------- | -| _albumId_ | The Facebook album ID (required) | -| _albumLoaded_ | Provide a callback as soon the album is loaded. | -| _photosLoaded_ | Callback a function when the photos are loaded. | -| _limit_ | Number of photos to be loaded. The maximum allower by Facebook is 100. | - -Example: - -```javascript -var options = { - albumId: '10150167782373951', - limit: 10, - albumLoaded: function() { /* do something */ }, - photosLoaded: function() { /* do something else */ } -}; - -var picbook = new picbookJs(options); -``` - -## Questions - -#### Where do I get the album ID? - -Go to an album page and copy the _ID_ from the address bar URL: - -![Image](http://f.cl.ly/items/2s0L3f430q2l1I11101K/fb-album-id.gif) - -#### How about retrieve an album that belongs to a user? - -Not possible. The `user_photo` [permission](https://developers.facebook.com/docs/reference/login/#permissions) is required, which means you would have to create a Facebook app and implement the Facebook Login. - -#### How about pagination? - -This is in my _TODO_ list. For now you can set a `limit` to 100 (maximum allowed by Facebook). - -## License - -The MIT License (MIT) - -Copyright © 2014 [Henrique Alves](https://github.com/henriquea) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/_site/bower_components/picbookjs/TODO.md b/_site/bower_components/picbookjs/TODO.md deleted file mode 100644 index dc9aa570..00000000 --- a/_site/bower_components/picbookjs/TODO.md +++ /dev/null @@ -1,6 +0,0 @@ -TODO -------- - -- Add model layer for album and photos object -- Create one static page to retrieve the album ID from a given URL -- Paginating \ No newline at end of file diff --git a/_site/bower_components/picbookjs/bower.json b/_site/bower_components/picbookjs/bower.json deleted file mode 100644 index 4058ac0a..00000000 --- a/_site/bower_components/picbookjs/bower.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "picbookjs", - "version": "0.3.0", - "homepage": "http://henriquea.github.io/picbookjs/", - "authors": [ - "Henrique Alves " - ], - "description": "A simple Javascript library to display album photos from a Facebook Page", - "main": [ - "js/picbook.js", - "css/picbook.css" - ], - "keywords": [ - "facebook", - "javascript", - "photos" - ], - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] -} diff --git a/_site/bower_components/picbookjs/config.rb b/_site/bower_components/picbookjs/config.rb deleted file mode 100644 index 343863a0..00000000 --- a/_site/bower_components/picbookjs/config.rb +++ /dev/null @@ -1,8 +0,0 @@ -http_path = "/" -css_dir = "css" -sass_dir = "scss" - -# output_style = :expanded or :nested or :compact or :compressed -output_style = :expanded - -line_comments = false \ No newline at end of file diff --git a/_site/bower_components/picbookjs/css/picbook.css b/_site/bower_components/picbookjs/css/picbook.css deleted file mode 100644 index ac6cd08e..00000000 --- a/_site/bower_components/picbookjs/css/picbook.css +++ /dev/null @@ -1,27 +0,0 @@ -.picbook .album-title { - font-size: 1.6em; - font-weight: 300; -} -.picbook .photo-list { - padding: 0; - margin: 0; -} -.picbook .photo-list .photo-list-item { - list-style-type: none; - display: inline-block; -} -.picbook .photo-list .photo-list-item .item-thumb { - cursor: pointer; - display: block; - margin: 3px; - width: 206px; - height: 206px; - background-size: cover; - background-position: 50% 25%; - transition: all 199ms ease; - vertical-align: top; - opacity: .73; -} -.picbook .photo-list .photo-list-item .item-thumb:hover { - opacity: 1; -} diff --git a/_site/bower_components/picbookjs/example.html b/_site/bower_components/picbookjs/example.html deleted file mode 100644 index 1c0d30f0..00000000 --- a/_site/bower_components/picbookjs/example.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - picbookJs - - - - - - - - - - - - - -
- - - - - \ No newline at end of file diff --git a/_site/bower_components/picbookjs/js/picbook.js b/_site/bower_components/picbookjs/js/picbook.js deleted file mode 100644 index a2f246c4..00000000 --- a/_site/bower_components/picbookjs/js/picbook.js +++ /dev/null @@ -1,161 +0,0 @@ -/* picbookJs 0.3.0 | Copyright (C) 2014 Henrique Alves, http://henriquea.github.io/picbookjs */ -var _picbookOptions = null; - -var picbookJs = (function(document){ - - 'use strict'; - - function picbookJs(options) { - - /*jslint validthis: true */ - this.options = this.extend(this._options, options); - this.init(); - _picbookOptions = this.options; - - } - - picbookJs.prototype = { - - count: 0, - - loaded: false, - - dom: {}, - - _options: { - graph: 'https://graph.facebook.com/', - limit: 10, - }, - - init: function() { - - this.loaded = false; - this.getAlbum({ - callback: 'picbookJs.prototype.albumComplete' - }); - - // Setup DOM - this.dom.wrapper = document.querySelector('.picbook'); - this.dom.title = document.createElement('h3'); - this.dom.title.classList.add('album-title'); - this.dom.photos = document.createElement('ul'); - this.dom.photos.classList.add('photo-list'); - this.dom.wrapper.appendChild(this.dom.title); - this.dom.wrapper.appendChild(this.dom.photos); - - }, - - getAlbum: function(params) { - - var js = document.createElement('script'), - options = _picbookOptions || this.options, - url = options.graph + options.albumId, - s; - - js.type = 'text/javascript'; - js.async = true; - js.src = url + '?callback=' + params.callback; - - s = document.getElementsByTagName('script')[0]; - s.parentNode.insertBefore(js, s.nextSibling); - - }, - - // TODO: adpated the method for paging the data - getPhotos: function(params) { - - var js = document.createElement('script'), - options = _picbookOptions || this.options, - url = options.graph + options.albumId + '/photos', - s; - - js.type = 'text/javascript'; - js.async = true; - js.src = url + '?limit=' + options.limit + '&callback=' + params.callback; - - s = document.getElementsByTagName('script')[0]; - s.parentNode.insertBefore(js, s.nextSibling); - - }, - - // https://developers.facebook.com/docs/reference/api/album - albumComplete: function(response) { - - var options = _picbookOptions || this.options; - - this.album = response; - this.count = response.count; - this.getPhotos({ - callback: 'picbookJs.prototype.photosComplete' - }); - - if (typeof options.albumLoaded === 'function') { - options.albumLoaded(); - } - - this.dom.title.innerHTML = response.name; - - }, - - // https://developers.facebook.com/docs/graph-api/reference/photo - photosComplete: function(response) { - - var options = _picbookOptions || this.options; - - this.photos = response.data; - this.loaded = true; - this.createPhotos(); - - if (typeof options.photosLoaded === 'function') { - options.photosLoaded(); - } - - }, - - createPhotos: function() { - - var arrUrl = [], imgSrc, i, len, image, li, a, link; - - for (i=0, len = this.photos.length; i < len; i++) { - - image = this.photos[i].images[0]; - - // Check if photo has public permission - if (!image.source.match(/oh=/)) { - - link = this.photos[i].link.replace(/graph.facebook/gi, 'www.facebook'); - li = document.createElement('li'); - a = document.createElement('a'); - li.classList.add('photo-list-item'); - this.dom.photos.appendChild(li); - li.appendChild(a); - a.classList.add('item-thumb'); - - arrUrl = image.source.split('/').splice(0); - arrUrl.splice(5,0,'p206x206'); - imgSrc = arrUrl.join('/'); - - a.setAttribute('href', link); - a.setAttribute('style', 'background-image: url('+ imgSrc +')'); - } - - } - - }, - - extend: function(a, b) { - - for (var key in b) { - if (b.hasOwnProperty(key)) { - a[key] = b[key]; - } - } - return a; - - } - - }; - - return picbookJs; - -})(document); \ No newline at end of file diff --git a/_site/bower_components/picbookjs/js/picbook.min.js b/_site/bower_components/picbookjs/js/picbook.min.js deleted file mode 100644 index 01118aa3..00000000 --- a/_site/bower_components/picbookjs/js/picbook.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! picbookJs 0.3.0 Copyright (C) 2014 Henrique Alves, http://henriquea.github.io/picbookjs */ -var _picbookOptions=null,picbookJs=function(a){"use strict";function b(a){this.options=this.extend(this._options,a),this.init(),_picbookOptions=this.options}return b.prototype={count:0,loaded:!1,dom:{},_options:{graph:"https://graph.facebook.com/",limit:10},init:function(){this.loaded=!1,this.getAlbum({callback:"picbookJs.prototype.albumComplete"}),this.dom.wrapper=a.querySelector(".picbook"),this.dom.title=a.createElement("h3"),this.dom.title.classList.add("album-title"),this.dom.photos=a.createElement("ul"),this.dom.photos.classList.add("photo-list"),this.dom.wrapper.appendChild(this.dom.title),this.dom.wrapper.appendChild(this.dom.photos)},getAlbum:function(b){var c,d=a.createElement("script"),e=_picbookOptions||this.options,f=e.graph+e.albumId;d.type="text/javascript",d.async=!0,d.src=f+"?callback="+b.callback,c=a.getElementsByTagName("script")[0],c.parentNode.insertBefore(d,c.nextSibling)},getPhotos:function(b){var c,d=a.createElement("script"),e=_picbookOptions||this.options,f=e.graph+e.albumId+"/photos";d.type="text/javascript",d.async=!0,d.src=f+"?limit="+e.limit+"&callback="+b.callback,c=a.getElementsByTagName("script")[0],c.parentNode.insertBefore(d,c.nextSibling)},albumComplete:function(a){var b=_picbookOptions||this.options;this.album=a,this.count=a.count,this.getPhotos({callback:"picbookJs.prototype.photosComplete"}),"function"==typeof b.albumLoaded&&b.albumLoaded(),this.dom.title.innerHTML=a.name},photosComplete:function(a){var b=_picbookOptions||this.options;this.photos=a.data,this.loaded=!0,this.createPhotos(),"function"==typeof b.photosLoaded&&b.photosLoaded()},createPhotos:function(){var b,c,d,e,f,g,h,i=[];for(c=0,d=this.photos.length;d>c;c++)e=this.photos[c].images[0],e.source.match(/oh=/)||(h=this.photos[c].link.replace(/graph.facebook/gi,"www.facebook"),f=a.createElement("li"),g=a.createElement("a"),f.classList.add("photo-list-item"),this.dom.photos.appendChild(f),f.appendChild(g),g.classList.add("item-thumb"),i=e.source.split("/").splice(0),i.splice(5,0,"p206x206"),b=i.join("/"),g.setAttribute("href",h),g.setAttribute("style","background-image: url("+b+")"))},extend:function(a,b){for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c]);return a}},b}(document); \ No newline at end of file diff --git a/_site/bower_components/picbookjs/package.json b/_site/bower_components/picbookjs/package.json deleted file mode 100644 index 50422f40..00000000 --- a/_site/bower_components/picbookjs/package.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "picbookjs", - "version": "0.3.0", - "description": "A simple Javascript library to display album photos from a Facebook Page", - "main": "js/picbook.js", - "directories": { - "example": "examples" - }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "git://github.com/henriquea/picbookjs.git" - }, - "keywords": [ - "facebook", - "album", - "photo" - ], - "author": "Henrique Alves", - "homepage": "http://henriquea.github.io/picbookjs", - "license": "MIT", - "bugs": { - "url": "https://github.com/henriquea/picbookjs/issues" - }, - "devDependencies": { - "bower": "~1.2.8", - "grunt": "~0.4.2", - "grunt-contrib-jshint": "~0.7.0", - "load-grunt-tasks": "~0.2.0", - "time-grunt": "~0.2.0", - "jshint-stylish": "~0.1.3", - "grunt-contrib-uglify": "~0.3.2" - } -} diff --git a/_site/bower_components/picbookjs/scss/picbook.scss b/_site/bower_components/picbookjs/scss/picbook.scss deleted file mode 100644 index b29e5d4c..00000000 --- a/_site/bower_components/picbookjs/scss/picbook.scss +++ /dev/null @@ -1,45 +0,0 @@ -$thumb-margin: 3px; -$thumb-width: 206px; -$thumb-height: 206px; - -.picbook { - - .album-title { - font-size: 1.6em; - font-weight: 300; - } - - .photo-list { - - padding: 0; - margin: 0; - - .photo-list-item { - - list-style-type: none; - display: inline-block; - - .item-thumb { - - cursor: pointer; - display: block; - margin: $thumb-margin; - width: $thumb-width; - height: $thumb-height; - background-size: cover; - background-position: 50% 25%; - transition: all 199ms ease; - vertical-align: top; - opacity: .73; - - &:hover { - opacity: 1; - } - - } - - } - - } - -} \ No newline at end of file diff --git a/_site/feed.xml b/_site/feed.xml index cbf8c6a1..85b482f3 100644 --- a/_site/feed.xml +++ b/_site/feed.xml @@ -6,12 +6,12 @@ http://scopesessions.org/ - Wed, 05 Oct 2016 11:32:36 +0200 - Wed, 05 Oct 2016 11:32:36 +0200 - Jekyll v3.1.1 + Wed, 05 Oct 2016 11:38:46 +0200 + Wed, 05 Oct 2016 11:38:46 +0200 + Jekyll v3.1.2 - + 059 Thu, 13 Oct 2016 00:00:00 +0200 @@ -23,7 +23,7 @@ - + 058 Thu, 08 Sep 2016 00:00:00 +0200 @@ -59,7 +59,7 @@ - + 055 Thu, 12 May 2016 00:00:00 +0200 @@ -71,7 +71,7 @@ - + 054 Thu, 14 Apr 2016 00:00:00 +0200 @@ -83,7 +83,7 @@ - + 053 Thu, 10 Mar 2016 00:00:00 +0100 @@ -95,7 +95,7 @@ - + 052 Thu, 11 Feb 2016 00:00:00 +0100 @@ -107,7 +107,7 @@ - + 051 Thu, 14 Jan 2016 00:00:00 +0100 @@ -119,7 +119,7 @@ - + 050 Thu, 10 Dec 2015 00:00:00 +0100 diff --git a/_site/index.html b/_site/index.html index 21302b23..a3d086dd 100644 --- a/_site/index.html +++ b/_site/index.html @@ -1135,7 +1135,7 @@

#59

October 13th, 2016

-

+

059

    @@ -1274,7 +1274,7 @@

    #58

    September 08th, 2016

    -

    +

    058

    @@ -1706,7 +1706,7 @@

    #55

    May 12th, 2016

    -

    +

    055

    @@ -1856,7 +1856,7 @@

    #54

    April 14th, 2016

    -

    +

    054

    @@ -2002,7 +2002,7 @@

    #53

    March 10th, 2016

    -

    +

    053

    @@ -2153,7 +2153,7 @@

    #52

    February 11th, 2016

    -

    +

    052

    @@ -2299,7 +2299,7 @@

    #51

    January 14th, 2016

    -

    +

    051

    @@ -2448,7 +2448,7 @@

    #50

    December 10th, 2015

    -

    +

    050

    @@ -2591,7 +2591,7 @@

    #49

    November 12th, 2015

    -

    +

    049

    @@ -2737,7 +2737,7 @@

    #48

    October 8th, 2015

    -

    +

    048

    @@ -3034,7 +3034,7 @@

    #46

    September 10th, 2015

    -

    +

    046

    @@ -3297,7 +3297,7 @@

    #44

    June 11th, 2015

    -

    +

    044

    @@ -3437,7 +3437,7 @@

    #43

    May 14th, 2015

    -

    +

    043

    @@ -3926,7 +3926,7 @@

    #40

    March 12th, 2015

    -

    +

    040

    @@ -4076,7 +4076,7 @@

    #39

    Januar 8th, 2015

    -

    +

    039

    @@ -4189,7 +4189,7 @@

    #38

    December 11th, 2014

    -

    +

    038

    @@ -4428,7 +4428,7 @@

    #36

    October 9th, 2014

    -

    +

    036

    @@ -4581,7 +4581,7 @@

    #35

    September 11th, 2014

    -

    +

    035

    @@ -4727,7 +4727,7 @@

    #34

    July 10th, 2014

    -

    +

    034

    @@ -4885,7 +4885,7 @@

    #33

    June 12th, 2014

    -

    +

    033

    @@ -5030,7 +5030,7 @@

    #32

    May 8th, 2014

    -

    +

    032

    @@ -5187,7 +5187,7 @@

    #31

    April 10th, 2014

    -

    +

    031

    @@ -5480,7 +5480,7 @@

    #29

    February 13th, 2014

    -

    +

    029

    @@ -5639,7 +5639,7 @@

    #28

    December 12th, 2013

    -

    +

    028

    @@ -5762,7 +5762,7 @@

    #27

    November 14th, 2013

    -

    +

    027

    @@ -5915,7 +5915,7 @@

    #26

    October 10th, 2013

    -

    +

    026

    @@ -6040,7 +6040,7 @@

    #25

    September 12th, 2013

    -

    +

    025

    @@ -6190,7 +6190,7 @@

    #24

    July 11th, 2013

    -

    +

    024

    @@ -6352,7 +6352,7 @@

    #23

    May 06th, 2013

    -

    +

    023

    @@ -6632,7 +6632,7 @@

    #21

    April 11th, 2013

    -

    +

    021

    @@ -6789,7 +6789,7 @@

    #20

    March 14th, 2013

    -

    +

    020

    @@ -6907,7 +6907,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #19

    February 21st, 2013

    -

    +

    019

    @@ -7066,7 +7066,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #18

    December 18th, 2012

    -

    +

    018

    @@ -7364,7 +7364,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #16

    October 11th, 2012

    -

    +

    016

    @@ -7532,7 +7532,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #15

    September 13th, 2012

    -

    +

    015

    @@ -7876,7 +7876,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #13

    April 12th, 2012

    -

    +

    013

    @@ -8037,7 +8037,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #12

    March 08th, 2012

    -

    +

    012

    @@ -8185,7 +8185,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #11

    February 09th, 2012

    -

    +

    011

    @@ -8346,7 +8346,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #10

    January 10th, 2012

    -

    +

    010

    @@ -8460,7 +8460,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #09

    November 17th, 2011

    -

    +

    009

    @@ -8579,7 +8579,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #08

    November 10th, 2011

    -

    +

    008

    @@ -8722,7 +8722,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #7

    October 20th, 2011

    -

    +

    007

    @@ -8807,7 +8807,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #6

    October 06th, 2011

    -

    +

    006

    @@ -8926,7 +8926,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #5

    September 29th, 2011

    -

    +

    005

    @@ -9076,7 +9076,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #4

    September 15th, 2011

    -

    +

    004

    @@ -9187,7 +9187,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #3

    August 18th, 2011

    -

    +

    003

    @@ -9331,7 +9331,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #2

    July 21st, 2011

    -

    +

    002

    @@ -9442,7 +9442,7 @@ Her imagery plays with narrative structures, developing dreamy ...

    #1

    July 07th, 2011

    -

    +

    001

    diff --git a/_site/session/2011/07/07/001.html b/_site/session/2011/07/07/001.html index f8750427..7c36e124 100644 --- a/_site/session/2011/07/07/001.html +++ b/_site/session/2011/07/07/001.html @@ -6,7 +6,7 @@ - + 001 @@ -1273,7 +1273,7 @@

    Discover more

    - #2: July 21st, 2011 + #2: July 21st, 2011 002
diff --git a/_site/session/2011/07/21/002.html b/_site/session/2011/07/21/002.html index 1776cb07..13c8f544 100644 --- a/_site/session/2011/07/21/002.html +++ b/_site/session/2011/07/21/002.html @@ -6,7 +6,7 @@ - + 002 @@ -1246,8 +1246,8 @@

Discover more

- #1: July 07th, 2011 - #3: August 18th, 2011 + #1: July 07th, 2011 001 + #3: August 18th, 2011 003 diff --git a/_site/session/2011/08/18/003.html b/_site/session/2011/08/18/003.html index 91f8dc4e..4dba0be0 100644 --- a/_site/session/2011/08/18/003.html +++ b/_site/session/2011/08/18/003.html @@ -6,7 +6,7 @@ - + 003 @@ -1282,8 +1282,8 @@

Discover more

- #2: July 21st, 2011 - #4: September 15th, 2011 + #2: July 21st, 2011 002 + #4: September 15th, 2011 004 diff --git a/_site/session/2011/09/15/004.html b/_site/session/2011/09/15/004.html index c22483b6..9dd8076f 100644 --- a/_site/session/2011/09/15/004.html +++ b/_site/session/2011/09/15/004.html @@ -6,7 +6,7 @@ - + 004 @@ -1246,8 +1246,8 @@

Discover more

- #3: August 18th, 2011 - #5: September 29th, 2011 + #3: August 18th, 2011 003 + #5: September 29th, 2011 005 diff --git a/_site/session/2011/09/29/005.html b/_site/session/2011/09/29/005.html index 9569b79f..e1309a6b 100644 --- a/_site/session/2011/09/29/005.html +++ b/_site/session/2011/09/29/005.html @@ -6,7 +6,7 @@ - + 005 @@ -1290,8 +1290,8 @@

Discover more

- #4: September 15th, 2011 - #6: October 06th, 2011 + #4: September 15th, 2011 004 + #6: October 06th, 2011 006 diff --git a/_site/session/2011/10/06/006.html b/_site/session/2011/10/06/006.html index 8f8c2169..f7ed8424 100644 --- a/_site/session/2011/10/06/006.html +++ b/_site/session/2011/10/06/006.html @@ -6,7 +6,7 @@ - + 006 @@ -1254,8 +1254,8 @@

Discover more

- #5: September 29th, 2011 - #7: October 20th, 2011 + #5: September 29th, 2011 005 + #7: October 20th, 2011 007 diff --git a/_site/session/2011/10/20/007.html b/_site/session/2011/10/20/007.html index b8aee1a5..0e9927f2 100644 --- a/_site/session/2011/10/20/007.html +++ b/_site/session/2011/10/20/007.html @@ -6,7 +6,7 @@ - + 007 @@ -1214,8 +1214,8 @@

Discover more

- #6: October 06th, 2011 - #08: November 10th, 2011 + #6: October 06th, 2011 006 + #08: November 10th, 2011 008 diff --git a/_site/session/2011/11/10/008.html b/_site/session/2011/11/10/008.html index 71764a87..7d8e1674 100644 --- a/_site/session/2011/11/10/008.html +++ b/_site/session/2011/11/10/008.html @@ -6,7 +6,7 @@ - + 008 @@ -1277,8 +1277,8 @@

Discover more

- #7: October 20th, 2011 - #09: November 17th, 2011 + #7: October 20th, 2011 007 + #09: November 17th, 2011 009 diff --git a/_site/session/2011/11/17/009.html b/_site/session/2011/11/17/009.html index ecf96623..027b6388 100644 --- a/_site/session/2011/11/17/009.html +++ b/_site/session/2011/11/17/009.html @@ -6,7 +6,7 @@ - + 009 @@ -1257,8 +1257,8 @@ To show this diversity I want to initiate a varity of works. I want to bring tog

Discover more

- #08: November 10th, 2011 - #10: January 10th, 2012 + #08: November 10th, 2011 008 + #10: January 10th, 2012 010 diff --git a/_site/session/2012/01/12/010.html b/_site/session/2012/01/12/010.html index e739086b..f266c09a 100644 --- a/_site/session/2012/01/12/010.html +++ b/_site/session/2012/01/12/010.html @@ -6,7 +6,7 @@ - + 010 @@ -1249,8 +1249,8 @@

Discover more

- #09: November 17th, 2011 - #11: February 09th, 2012 + #09: November 17th, 2011 009 + #11: February 09th, 2012 011 diff --git a/_site/session/2012/02/09/011.html b/_site/session/2012/02/09/011.html index e6ec1713..f2ffd628 100644 --- a/_site/session/2012/02/09/011.html +++ b/_site/session/2012/02/09/011.html @@ -6,7 +6,7 @@ - + 011 @@ -1307,8 +1307,8 @@

Discover more

- #10: January 10th, 2012 - #12: March 08th, 2012 + #10: January 10th, 2012 010 + #12: March 08th, 2012 012 diff --git a/_site/session/2012/03/08/012.html b/_site/session/2012/03/08/012.html index 196f4a5b..093fe4b2 100644 --- a/_site/session/2012/03/08/012.html +++ b/_site/session/2012/03/08/012.html @@ -6,7 +6,7 @@ - + 012 @@ -1292,8 +1292,8 @@

Discover more

- #11: February 09th, 2012 - #13: April 12th, 2012 + #11: February 09th, 2012 011 + #13: April 12th, 2012 013 diff --git a/_site/session/2012/04/12/013.html b/_site/session/2012/04/12/013.html index 9fe53b92..5266737a 100644 --- a/_site/session/2012/04/12/013.html +++ b/_site/session/2012/04/12/013.html @@ -6,7 +6,7 @@ - + 013 @@ -1311,7 +1311,7 @@

Discover more

- #12: March 08th, 2012 + #12: March 08th, 2012 012 #14: May 10th, 2012 FAMU/CAS special session diff --git a/_site/session/2012/05/10/014.html b/_site/session/2012/05/10/014.html index d0b5d6db..1988823c 100644 --- a/_site/session/2012/05/10/014.html +++ b/_site/session/2012/05/10/014.html @@ -1353,8 +1353,8 @@

Discover more

- #13: April 12th, 2012 - #15: September 13th, 2012 + #13: April 12th, 2012 013 + #15: September 13th, 2012 015 diff --git a/_site/session/2012/09/13/015.html b/_site/session/2012/09/13/015.html index f2381900..71f65950 100644 --- a/_site/session/2012/09/13/015.html +++ b/_site/session/2012/09/13/015.html @@ -6,7 +6,7 @@ - + 015 @@ -1295,7 +1295,7 @@ #14: May 10th, 2012 FAMU/CAS special session - #16: October 11th, 2012 + #16: October 11th, 2012 016 diff --git a/_site/session/2012/10/11/016.html b/_site/session/2012/10/11/016.html index a91c86b7..b9f959d8 100644 --- a/_site/session/2012/10/11/016.html +++ b/_site/session/2012/10/11/016.html @@ -6,7 +6,7 @@ - + 016 @@ -1320,7 +1320,7 @@

Discover more

- #15: September 13th, 2012 + #15: September 13th, 2012 015 #17: November 08th, 2012 HGB Leipzig Special Session diff --git a/_site/session/2012/11/08/017.html b/_site/session/2012/11/08/017.html index 2740c6ae..44351411 100644 --- a/_site/session/2012/11/08/017.html +++ b/_site/session/2012/11/08/017.html @@ -1282,8 +1282,8 @@

Discover more

- #16: October 11th, 2012 - #18: December 18th, 2012 + #16: October 11th, 2012 016 + #18: December 18th, 2012 018 diff --git a/_site/session/2012/12/13/018.html b/_site/session/2012/12/13/018.html index 238e567c..8e03775b 100644 --- a/_site/session/2012/12/13/018.html +++ b/_site/session/2012/12/13/018.html @@ -6,7 +6,7 @@ - + 018 @@ -1305,7 +1305,7 @@ #17: November 08th, 2012 HGB Leipzig Special Session - #19: February 21st, 2013 + #19: February 21st, 2013 019 diff --git a/_site/session/2013/02/21/019.html b/_site/session/2013/02/21/019.html index 26c553f4..46150b7b 100644 --- a/_site/session/2013/02/21/019.html +++ b/_site/session/2013/02/21/019.html @@ -6,7 +6,7 @@ - + 019 @@ -1326,8 +1326,8 @@

Discover more

- #18: December 18th, 2012 - #20: March 14th, 2013 + #18: December 18th, 2012 018 + #20: March 14th, 2013 020 diff --git a/_site/session/2013/03/14/020.html b/_site/session/2013/03/14/020.html index b0e104a9..e6ab7c79 100644 --- a/_site/session/2013/03/14/020.html +++ b/_site/session/2013/03/14/020.html @@ -6,7 +6,7 @@ - + 020 @@ -1275,8 +1275,8 @@ David Sanz Kirbis is a multidisciplinary experimenter interested in how things w

Discover more

- #19: February 21st, 2013 - #21: April 11th, 2013 + #19: February 21st, 2013 019 + #21: April 11th, 2013 021 diff --git a/_site/session/2013/04/11/021.html b/_site/session/2013/04/11/021.html index 9a0edcc3..fc7a4862 100644 --- a/_site/session/2013/04/11/021.html +++ b/_site/session/2013/04/11/021.html @@ -6,7 +6,7 @@ - + 021 @@ -1324,7 +1324,7 @@

Discover more

- #20: March 14th, 2013 + #20: March 14th, 2013 020 #22: May 09th, 2013 LPM Preview diff --git a/_site/session/2013/05/09/022.html b/_site/session/2013/05/09/022.html index 1878545d..eb91f38e 100644 --- a/_site/session/2013/05/09/022.html +++ b/_site/session/2013/05/09/022.html @@ -1286,8 +1286,8 @@ Her work deals with identity, humor, and acidity. She presented her work at audi

Discover more

- #21: April 11th, 2013 - #23: May 06th, 2013 + #21: April 11th, 2013 021 + #23: May 06th, 2013 023 diff --git a/_site/session/2013/06/06/023.html b/_site/session/2013/06/06/023.html index f0aa5a0d..40627de2 100644 --- a/_site/session/2013/06/06/023.html +++ b/_site/session/2013/06/06/023.html @@ -6,7 +6,7 @@ - + 023 @@ -1302,7 +1302,7 @@ #22: May 09th, 2013 LPM Preview - #24: July 11th, 2013 + #24: July 11th, 2013 024 diff --git a/_site/session/2013/07/11/024.html b/_site/session/2013/07/11/024.html index e145bf43..16571b39 100644 --- a/_site/session/2013/07/11/024.html +++ b/_site/session/2013/07/11/024.html @@ -6,7 +6,7 @@ - + 024 @@ -1329,8 +1329,8 @@

Discover more

- #23: May 06th, 2013 - #25: September 12th, 2013 + #23: May 06th, 2013 023 + #25: September 12th, 2013 025 diff --git a/_site/session/2013/09/12/025.html b/_site/session/2013/09/12/025.html index 2ebe99be..0bfb4225 100644 --- a/_site/session/2013/09/12/025.html +++ b/_site/session/2013/09/12/025.html @@ -6,7 +6,7 @@ - + 025 @@ -1311,8 +1311,8 @@

Discover more

- #24: July 11th, 2013 - #26: October 10th, 2013 + #24: July 11th, 2013 024 + #26: October 10th, 2013 026 diff --git a/_site/session/2013/10/10/026.html b/_site/session/2013/10/10/026.html index 2cbb39d1..0adfa2a6 100644 --- a/_site/session/2013/10/10/026.html +++ b/_site/session/2013/10/10/026.html @@ -6,7 +6,7 @@ - + 026 @@ -1285,8 +1285,8 @@

Discover more

- #25: September 12th, 2013 - #27: November 14th, 2013 + #25: September 12th, 2013 025 + #27: November 14th, 2013 027 diff --git a/_site/session/2013/11/14/027.html b/_site/session/2013/11/14/027.html index d271b536..71f95ab3 100644 --- a/_site/session/2013/11/14/027.html +++ b/_site/session/2013/11/14/027.html @@ -6,7 +6,7 @@ - + 027 @@ -1316,8 +1316,8 @@

Discover more

- #26: October 10th, 2013 - #28: December 12th, 2013 + #26: October 10th, 2013 026 + #28: December 12th, 2013 028 diff --git a/_site/session/2013/12/12/028.html b/_site/session/2013/12/12/028.html index 5747a4ce..c9796711 100644 --- a/_site/session/2013/12/12/028.html +++ b/_site/session/2013/12/12/028.html @@ -6,7 +6,7 @@ - + 028 @@ -1283,8 +1283,8 @@

Discover more

- #27: November 14th, 2013 - #29: February 13th, 2014 + #27: November 14th, 2013 027 + #29: February 13th, 2014 029 diff --git a/_site/session/2014/02/13/029.html b/_site/session/2014/02/13/029.html index 9438217a..d3d1e94e 100644 --- a/_site/session/2014/02/13/029.html +++ b/_site/session/2014/02/13/029.html @@ -6,7 +6,7 @@ - + 029 @@ -1326,7 +1326,7 @@

Discover more

- #28: December 12th, 2013 + #28: December 12th, 2013 028 #30: March 20th, 2014 B-Seite Mannheim diff --git a/_site/session/2014/03/20/030.html b/_site/session/2014/03/20/030.html index d837c850..5b38a016 100644 --- a/_site/session/2014/03/20/030.html +++ b/_site/session/2014/03/20/030.html @@ -1288,8 +1288,8 @@

Discover more

- #29: February 13th, 2014 - #31: April 10th, 2014 + #29: February 13th, 2014 029 + #31: April 10th, 2014 031 diff --git a/_site/session/2014/04/10/031.html b/_site/session/2014/04/10/031.html index add1ef65..b7415704 100644 --- a/_site/session/2014/04/10/031.html +++ b/_site/session/2014/04/10/031.html @@ -6,7 +6,7 @@ - + 031 @@ -1305,7 +1305,7 @@ #30: March 20th, 2014 B-Seite Mannheim - #32: May 8th, 2014 + #32: May 8th, 2014 032 diff --git a/_site/session/2014/05/08/032.html b/_site/session/2014/05/08/032.html index 175ef818..02c59480 100644 --- a/_site/session/2014/05/08/032.html +++ b/_site/session/2014/05/08/032.html @@ -6,7 +6,7 @@ - + 032 @@ -1320,8 +1320,8 @@

Discover more

- #31: April 10th, 2014 - #33: June 12th, 2014 + #31: April 10th, 2014 031 + #33: June 12th, 2014 033 diff --git a/_site/session/2014/06/12/033.html b/_site/session/2014/06/12/033.html index 68d475b3..c8eea48a 100644 --- a/_site/session/2014/06/12/033.html +++ b/_site/session/2014/06/12/033.html @@ -6,7 +6,7 @@ - + 033 @@ -1302,8 +1302,8 @@ International exhibitions (selection): 2000 Biennial of young Art in Genua, Ital

Discover more

- #32: May 8th, 2014 - #34: July 10th, 2014 + #32: May 8th, 2014 032 + #34: July 10th, 2014 034 diff --git a/_site/session/2014/07/10/034.html b/_site/session/2014/07/10/034.html index e39b57b1..79014a21 100644 --- a/_site/session/2014/07/10/034.html +++ b/_site/session/2014/07/10/034.html @@ -6,7 +6,7 @@ - + 034 @@ -1319,8 +1319,8 @@

Discover more

- #33: June 12th, 2014 - #35: September 11th, 2014 + #33: June 12th, 2014 033 + #35: September 11th, 2014 035 diff --git a/_site/session/2014/09/11/035.html b/_site/session/2014/09/11/035.html index 3fe34389..c0fa0104 100644 --- a/_site/session/2014/09/11/035.html +++ b/_site/session/2014/09/11/035.html @@ -6,7 +6,7 @@ - + 035 @@ -1307,8 +1307,8 @@

Discover more

- #34: July 10th, 2014 - #36: October 9th, 2014 + #34: July 10th, 2014 034 + #36: October 9th, 2014 036 diff --git a/_site/session/2014/10/09/036.html b/_site/session/2014/10/09/036.html index 94a607fc..1dbe9d62 100644 --- a/_site/session/2014/10/09/036.html +++ b/_site/session/2014/10/09/036.html @@ -6,7 +6,7 @@ - + 036 @@ -1312,7 +1312,7 @@

Discover more

- #35: September 11th, 2014 + #35: September 11th, 2014 035 #37: November 13th, 2014 privacy and online freedom of expression diff --git a/_site/session/2014/11/13/037.html b/_site/session/2014/11/13/037.html index 1feeebd9..ecf9a157 100644 --- a/_site/session/2014/11/13/037.html +++ b/_site/session/2014/11/13/037.html @@ -1214,8 +1214,8 @@

Discover more

- #36: October 9th, 2014 - #38: December 11th, 2014 + #36: October 9th, 2014 036 + #38: December 11th, 2014 038 diff --git a/_site/session/2014/12/11/038.html b/_site/session/2014/12/11/038.html index cd846f0b..998a34da 100644 --- a/_site/session/2014/12/11/038.html +++ b/_site/session/2014/12/11/038.html @@ -6,7 +6,7 @@ - + 038 @@ -1316,7 +1316,7 @@ #37: November 13th, 2014 privacy and online freedom of expression - #39: Januar 8th, 2015 + #39: Januar 8th, 2015 039 diff --git a/_site/session/2015/01/08/039.html b/_site/session/2015/01/08/039.html index 8b8da870..f5cb9d6a 100644 --- a/_site/session/2015/01/08/039.html +++ b/_site/session/2015/01/08/039.html @@ -6,7 +6,7 @@ - + 039 @@ -1265,8 +1265,8 @@

Discover more

- #38: December 11th, 2014 - #40: March 12th, 2015 + #38: December 11th, 2014 038 + #40: March 12th, 2015 040 diff --git a/_site/session/2015/03/12/040.html b/_site/session/2015/03/12/040.html index e928e167..a7f8d12b 100644 --- a/_site/session/2015/03/12/040.html +++ b/_site/session/2015/03/12/040.html @@ -6,7 +6,7 @@ - + 040 @@ -1296,7 +1296,7 @@

Discover more

- #39: Januar 8th, 2015 + #39: Januar 8th, 2015 039 #41: March 19th, 2015 SCOPE @ B-Seite diff --git a/_site/session/2015/03/12/041.html b/_site/session/2015/03/12/041.html index 33e26513..46384912 100644 --- a/_site/session/2015/03/12/041.html +++ b/_site/session/2015/03/12/041.html @@ -1335,7 +1335,7 @@

Discover more

- #40: March 12th, 2015 + #40: March 12th, 2015 040 #42: April 9th, 2015 STATE Festival special edition diff --git a/_site/session/2015/04/09/042.html b/_site/session/2015/04/09/042.html index 956fc40c..844083b7 100644 --- a/_site/session/2015/04/09/042.html +++ b/_site/session/2015/04/09/042.html @@ -1314,7 +1314,7 @@ #41: March 19th, 2015 SCOPE @ B-Seite - #43: May 14th, 2015 + #43: May 14th, 2015 043 diff --git a/_site/session/2015/05/14/043.html b/_site/session/2015/05/14/043.html index c7faba1a..8feb31da 100644 --- a/_site/session/2015/05/14/043.html +++ b/_site/session/2015/05/14/043.html @@ -6,7 +6,7 @@ - + 043 @@ -1314,7 +1314,7 @@ #42: April 9th, 2015 STATE Festival special edition - #44: June 11th, 2015 + #44: June 11th, 2015 044 diff --git a/_site/session/2015/06/11/044.html b/_site/session/2015/06/11/044.html index 633aac6b..4ca70ad5 100644 --- a/_site/session/2015/06/11/044.html +++ b/_site/session/2015/06/11/044.html @@ -6,7 +6,7 @@ - + 044 @@ -1297,7 +1297,7 @@

Discover more

- #43: May 14th, 2015 + #43: May 14th, 2015 043 #45: June 27th, 2015 Vision'r special performances night diff --git a/_site/session/2015/06/27/045.html b/_site/session/2015/06/27/045.html index fe34652f..8e450378 100644 --- a/_site/session/2015/06/27/045.html +++ b/_site/session/2015/06/27/045.html @@ -1252,8 +1252,8 @@

Discover more

- #44: June 11th, 2015 - #46: September 10th, 2015 + #44: June 11th, 2015 044 + #46: September 10th, 2015 046 diff --git a/_site/session/2015/09/10/046.html b/_site/session/2015/09/10/046.html index 1a5b0d07..dfcb4ab3 100644 --- a/_site/session/2015/09/10/046.html +++ b/_site/session/2015/09/10/046.html @@ -6,7 +6,7 @@ - + 046 diff --git a/_site/session/2015/09/19/047.html b/_site/session/2015/09/19/047.html index 79f37f4f..b30739d2 100644 --- a/_site/session/2015/09/19/047.html +++ b/_site/session/2015/09/19/047.html @@ -1292,8 +1292,8 @@

Discover more

- #46: September 10th, 2015 - #48: October 8th, 2015 + #46: September 10th, 2015 046 + #48: October 8th, 2015 048 diff --git a/_site/session/2015/10/08/048.html b/_site/session/2015/10/08/048.html index 07970478..3247a719 100644 --- a/_site/session/2015/10/08/048.html +++ b/_site/session/2015/10/08/048.html @@ -6,7 +6,7 @@ - + 048 diff --git a/_site/session/2015/11/12/049.html b/_site/session/2015/11/12/049.html index cb5563a8..f20c0d3d 100644 --- a/_site/session/2015/11/12/049.html +++ b/_site/session/2015/11/12/049.html @@ -6,7 +6,7 @@ - + 049 @@ -1286,7 +1286,7 @@ #1: October 9th, 2015 A-li-ce / Swub, Klara Ravat / Circuit Splash #47 - #50: December 10th, 2015 + #50: December 10th, 2015 050 diff --git a/_site/session/2015/12/10/050.html b/_site/session/2015/12/10/050.html index 16060f57..82dc40d2 100644 --- a/_site/session/2015/12/10/050.html +++ b/_site/session/2015/12/10/050.html @@ -6,7 +6,7 @@ - + 050 @@ -1285,8 +1285,8 @@

Discover more

- #49: November 12th, 2015 - #51: January 14th, 2016 + #49: November 12th, 2015 049 + #51: January 14th, 2016 051 diff --git a/_site/session/2016/01/14/051.html b/_site/session/2016/01/14/051.html index 5d7c9fec..a6b4f34c 100644 --- a/_site/session/2016/01/14/051.html +++ b/_site/session/2016/01/14/051.html @@ -6,7 +6,7 @@ - + 051 @@ -1295,8 +1295,8 @@

Discover more

- #50: December 10th, 2015 - #52: February 11th, 2016 + #50: December 10th, 2015 050 + #52: February 11th, 2016 052 diff --git a/_site/session/2016/02/11/052.html b/_site/session/2016/02/11/052.html index 78630a1a..13b190e9 100644 --- a/_site/session/2016/02/11/052.html +++ b/_site/session/2016/02/11/052.html @@ -6,7 +6,7 @@ - + 052 @@ -1290,8 +1290,8 @@

Discover more

- #51: January 14th, 2016 - #53: March 10th, 2016 + #51: January 14th, 2016 051 + #53: March 10th, 2016 053 diff --git a/_site/session/2016/03/10/053.html b/_site/session/2016/03/10/053.html index aba0fcba..8bc4f149 100644 --- a/_site/session/2016/03/10/053.html +++ b/_site/session/2016/03/10/053.html @@ -6,7 +6,7 @@ - + 053 @@ -1298,8 +1298,8 @@ Wolfgang Bittner (AT) is a visual artist working in the field video, photography

Discover more

- #52: February 11th, 2016 - #54: April 14th, 2016 + #52: February 11th, 2016 052 + #54: April 14th, 2016 054 diff --git a/_site/session/2016/04/14/054.html b/_site/session/2016/04/14/054.html index a40f2340..7d8447fa 100644 --- a/_site/session/2016/04/14/054.html +++ b/_site/session/2016/04/14/054.html @@ -6,7 +6,7 @@ - + 054 @@ -1290,8 +1290,8 @@

Discover more

- #53: March 10th, 2016 - #55: May 12th, 2016 + #53: March 10th, 2016 053 + #55: May 12th, 2016 055 diff --git a/_site/session/2016/05/12/055.html b/_site/session/2016/05/12/055.html index 790806ab..07e4e667 100644 --- a/_site/session/2016/05/12/055.html +++ b/_site/session/2016/05/12/055.html @@ -6,7 +6,7 @@ - + 055 @@ -1294,7 +1294,7 @@

Discover more

- #54: April 14th, 2016 + #54: April 14th, 2016 054 #56: June 11th, 2016 Scope @ MIRA FEstival Berlin diff --git a/_site/session/2016/06/11/056.html b/_site/session/2016/06/11/056.html index e17ead36..56fea313 100644 --- a/_site/session/2016/06/11/056.html +++ b/_site/session/2016/06/11/056.html @@ -1286,7 +1286,7 @@

Discover more

- #55: May 12th, 2016 + #55: May 12th, 2016 055 #57: June 24th, 2016 Scope 5th anniversary party diff --git a/_site/session/2016/06/24/057.html b/_site/session/2016/06/24/057.html index 02f687e6..f87cbfd4 100644 --- a/_site/session/2016/06/24/057.html +++ b/_site/session/2016/06/24/057.html @@ -1281,7 +1281,7 @@ #56: June 11th, 2016 Scope @ MIRA FEstival Berlin - #58: September 08th, 2016 + #58: September 08th, 2016 058 diff --git a/_site/session/2016/09/08/058.html b/_site/session/2016/09/08/058.html index 9e514842..17f4be53 100644 --- a/_site/session/2016/09/08/058.html +++ b/_site/session/2016/09/08/058.html @@ -6,7 +6,7 @@ - + 058 @@ -1286,7 +1286,7 @@ #57: June 24th, 2016 Scope 5th anniversary party - #59: October 13th, 2016 + #59: October 13th, 2016 059 diff --git a/_site/session/2016/10/13/059.html b/_site/session/2016/10/13/059.html index 7ed4dc68..dc0cef8d 100644 --- a/_site/session/2016/10/13/059.html +++ b/_site/session/2016/10/13/059.html @@ -6,7 +6,7 @@ - + 059 @@ -1290,7 +1290,7 @@

Discover more

- #58: September 08th, 2016 + #58: September 08th, 2016 058 diff --git a/_site/spektrum/2015/10/09/048s.html b/_site/spektrum/2015/10/09/048s.html index a1df1802..b1ba909d 100644 --- a/_site/spektrum/2015/10/09/048s.html +++ b/_site/spektrum/2015/10/09/048s.html @@ -1255,8 +1255,8 @@ Swub (DE / Berlin) works as a video artist: his works were shown in exhibitions

Discover more

- #48: October 8th, 2015 - #49: November 12th, 2015 + #48: October 8th, 2015 048 + #49: November 12th, 2015 049