update 59

This commit is contained in:
Alex Corbi 2016-10-05 11:39:53 +02:00
parent 4a9c384437
commit 256a252587
75 changed files with 204 additions and 685 deletions

View file

@ -4,6 +4,8 @@ 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)
* * *

View file

@ -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']);
};

View file

@ -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.

View file

@ -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 `</body>` tag. Then initialise the library:
```html
<div class="picbook"></div>
<script type="text/javascript" src="picbook.min.js"></script>
<script type="text/javascript">
(function($)){
var picbook = new picbookJs({
albumId: '10150167782373951'
});
})(jQuery);
</script>
```
### 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.

View file

@ -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

View file

@ -1,26 +0,0 @@
{
"name": "picbookjs",
"version": "0.3.0",
"homepage": "http://henriquea.github.io/picbookjs/",
"authors": [
"Henrique Alves <henriquea@gmail.com>"
],
"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"
]
}

View file

@ -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

View file

@ -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;
}

View file

@ -1,28 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>picbookJs</title>
<meta charset="utf-8">
<meta name="description" content="A Simple Javascript Library To Display Album Photos From A Facebook Page.">
<meta name="keywords" content="library,open source, github, javascript, js,facebook, album, photos">
<link rel="stylesheet" type="text/css" href="css/picbook.css">
<script type="text/javascript" src="js/picbook.js"></script>
</head>
<body>
<div class="picbook"></div>
<script type="text/javascript">
var picbook = new picbookJs({
limit: 30,
albumId: '10151871660806681'
});
</script>
</body>
</html>

View file

@ -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);

View file

@ -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);

View file

@ -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"
}
}

View file

@ -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;
}
}
}
}
}

View file

@ -6,12 +6,12 @@
</description>
<link>http://scopesessions.org/</link>
<atom:link href="http://scopesessions.org /feed.xml " rel="self" type="application/rss+xml" />
<pubDate>Wed, 05 Oct 2016 11:32:36 +0200</pubDate>
<lastBuildDate>Wed, 05 Oct 2016 11:32:36 +0200</lastBuildDate>
<generator>Jekyll v3.1.1</generator>
<pubDate>Wed, 05 Oct 2016 11:38:46 +0200</pubDate>
<lastBuildDate>Wed, 05 Oct 2016 11:38:46 +0200</lastBuildDate>
<generator>Jekyll v3.1.2</generator>
<item>
<title></title>
<title>059</title>
<description>
</description>
<pubDate>Thu, 13 Oct 2016 00:00:00 +0200</pubDate>
@ -23,7 +23,7 @@
</item>
<item>
<title></title>
<title>058</title>
<description>
</description>
<pubDate>Thu, 08 Sep 2016 00:00:00 +0200</pubDate>
@ -59,7 +59,7 @@
</item>
<item>
<title></title>
<title>055</title>
<description>
</description>
<pubDate>Thu, 12 May 2016 00:00:00 +0200</pubDate>
@ -71,7 +71,7 @@
</item>
<item>
<title></title>
<title>054</title>
<description>
</description>
<pubDate>Thu, 14 Apr 2016 00:00:00 +0200</pubDate>
@ -83,7 +83,7 @@
</item>
<item>
<title></title>
<title>053</title>
<description>
</description>
<pubDate>Thu, 10 Mar 2016 00:00:00 +0100</pubDate>
@ -95,7 +95,7 @@
</item>
<item>
<title></title>
<title>052</title>
<description>
</description>
<pubDate>Thu, 11 Feb 2016 00:00:00 +0100</pubDate>
@ -107,7 +107,7 @@
</item>
<item>
<title></title>
<title>051</title>
<description>
</description>
<pubDate>Thu, 14 Jan 2016 00:00:00 +0100</pubDate>
@ -119,7 +119,7 @@
</item>
<item>
<title></title>
<title>050</title>
<description>
</description>
<pubDate>Thu, 10 Dec 2015 00:00:00 +0100</pubDate>

View file

@ -1135,7 +1135,7 @@
<h3>#59</h3>
<h4>October 13th, 2016</h4>
<p></p>
<p>059</p>
<div class="padded_vert">
<ul>
@ -1274,7 +1274,7 @@
<h3>#58</h3>
<h4>September 08th, 2016</h4>
<p></p>
<p>058</p>
</a>
@ -1706,7 +1706,7 @@
<h3>#55</h3>
<h4>May 12th, 2016</h4>
<p></p>
<p>055</p>
</a>
@ -1856,7 +1856,7 @@
<h3>#54</h3>
<h4>April 14th, 2016</h4>
<p></p>
<p>054</p>
</a>
@ -2002,7 +2002,7 @@
<h3>#53</h3>
<h4>March 10th, 2016</h4>
<p></p>
<p>053</p>
</a>
@ -2153,7 +2153,7 @@
<h3>#52</h3>
<h4>February 11th, 2016</h4>
<p></p>
<p>052</p>
</a>
@ -2299,7 +2299,7 @@
<h3>#51</h3>
<h4>January 14th, 2016</h4>
<p></p>
<p>051</p>
</a>
@ -2448,7 +2448,7 @@
<h3>#50</h3>
<h4>December 10th, 2015</h4>
<p></p>
<p>050</p>
</a>
@ -2591,7 +2591,7 @@
<h3>#49</h3>
<h4>November 12th, 2015</h4>
<p></p>
<p>049</p>
</a>
@ -2737,7 +2737,7 @@
<h3>#48</h3>
<h4>October 8th, 2015</h4>
<p></p>
<p>048</p>
</a>
@ -3034,7 +3034,7 @@
<h3>#46</h3>
<h4>September 10th, 2015</h4>
<p></p>
<p>046</p>
</a>
@ -3297,7 +3297,7 @@
<h3>#44</h3>
<h4>June 11th, 2015</h4>
<p></p>
<p>044</p>
</a>
@ -3437,7 +3437,7 @@
<h3>#43</h3>
<h4>May 14th, 2015</h4>
<p></p>
<p>043</p>
</a>
@ -3926,7 +3926,7 @@
<h3>#40</h3>
<h4>March 12th, 2015</h4>
<p></p>
<p>040</p>
</a>
@ -4076,7 +4076,7 @@
<h3>#39</h3>
<h4>Januar 8th, 2015</h4>
<p></p>
<p>039</p>
</a>
@ -4189,7 +4189,7 @@
<h3>#38</h3>
<h4>December 11th, 2014</h4>
<p></p>
<p>038</p>
</a>
@ -4428,7 +4428,7 @@
<h3>#36</h3>
<h4>October 9th, 2014</h4>
<p></p>
<p>036</p>
</a>
@ -4581,7 +4581,7 @@
<h3>#35</h3>
<h4>September 11th, 2014</h4>
<p></p>
<p>035</p>
</a>
@ -4727,7 +4727,7 @@
<h3>#34</h3>
<h4>July 10th, 2014</h4>
<p></p>
<p>034</p>
</a>
@ -4885,7 +4885,7 @@
<h3>#33</h3>
<h4>June 12th, 2014</h4>
<p></p>
<p>033</p>
</a>
@ -5030,7 +5030,7 @@
<h3>#32</h3>
<h4>May 8th, 2014</h4>
<p></p>
<p>032</p>
</a>
@ -5187,7 +5187,7 @@
<h3>#31</h3>
<h4>April 10th, 2014</h4>
<p></p>
<p>031</p>
</a>
@ -5480,7 +5480,7 @@
<h3>#29</h3>
<h4>February 13th, 2014</h4>
<p></p>
<p>029</p>
</a>
@ -5639,7 +5639,7 @@
<h3>#28</h3>
<h4>December 12th, 2013</h4>
<p></p>
<p>028</p>
</a>
@ -5762,7 +5762,7 @@
<h3>#27</h3>
<h4>November 14th, 2013</h4>
<p></p>
<p>027</p>
</a>
@ -5915,7 +5915,7 @@
<h3>#26</h3>
<h4>October 10th, 2013</h4>
<p></p>
<p>026</p>
</a>
@ -6040,7 +6040,7 @@
<h3>#25</h3>
<h4>September 12th, 2013</h4>
<p></p>
<p>025</p>
</a>
@ -6190,7 +6190,7 @@
<h3>#24</h3>
<h4>July 11th, 2013</h4>
<p></p>
<p>024</p>
</a>
@ -6352,7 +6352,7 @@
<h3>#23</h3>
<h4>May 06th, 2013</h4>
<p></p>
<p>023</p>
</a>
@ -6632,7 +6632,7 @@
<h3>#21</h3>
<h4>April 11th, 2013</h4>
<p></p>
<p>021</p>
</a>
@ -6789,7 +6789,7 @@
<h3>#20</h3>
<h4>March 14th, 2013</h4>
<p></p>
<p>020</p>
</a>
@ -6907,7 +6907,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#19</h3>
<h4>February 21st, 2013</h4>
<p></p>
<p>019</p>
</a>
@ -7066,7 +7066,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#18</h3>
<h4>December 18th, 2012</h4>
<p></p>
<p>018</p>
</a>
@ -7364,7 +7364,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#16</h3>
<h4>October 11th, 2012</h4>
<p></p>
<p>016</p>
</a>
@ -7532,7 +7532,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#15</h3>
<h4>September 13th, 2012</h4>
<p></p>
<p>015</p>
</a>
@ -7876,7 +7876,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#13</h3>
<h4>April 12th, 2012</h4>
<p></p>
<p>013</p>
</a>
@ -8037,7 +8037,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#12</h3>
<h4>March 08th, 2012</h4>
<p></p>
<p>012</p>
</a>
@ -8185,7 +8185,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#11</h3>
<h4>February 09th, 2012</h4>
<p></p>
<p>011</p>
</a>
@ -8346,7 +8346,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#10</h3>
<h4>January 10th, 2012</h4>
<p></p>
<p>010</p>
</a>
@ -8460,7 +8460,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#09</h3>
<h4>November 17th, 2011</h4>
<p></p>
<p>009</p>
</a>
@ -8579,7 +8579,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#08</h3>
<h4>November 10th, 2011</h4>
<p></p>
<p>008</p>
</a>
@ -8722,7 +8722,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#7</h3>
<h4>October 20th, 2011</h4>
<p></p>
<p>007</p>
</a>
@ -8807,7 +8807,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#6</h3>
<h4>October 06th, 2011</h4>
<p></p>
<p>006</p>
</a>
@ -8926,7 +8926,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#5</h3>
<h4>September 29th, 2011</h4>
<p></p>
<p>005</p>
</a>
@ -9076,7 +9076,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#4</h3>
<h4>September 15th, 2011</h4>
<p></p>
<p>004</p>
</a>
@ -9187,7 +9187,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#3</h3>
<h4>August 18th, 2011</h4>
<p></p>
<p>003</p>
</a>
@ -9331,7 +9331,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#2</h3>
<h4>July 21st, 2011</h4>
<p></p>
<p>002</p>
</a>
@ -9442,7 +9442,7 @@ Her imagery plays with narrative structures, developing dreamy ...</p>
<h3>#1</h3>
<h4>July 07th, 2011</h4>
<p></p>
<p>001</p>
</a>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>001</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/07/07/001.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1273,7 +1273,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top right" href=/session/2011/07/21/002.html>#2: July 21st, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2011/07/21/002.html>#2: July 21st, 2011 002</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>002</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/07/21/002.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1246,8 +1246,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/07/07/001.html>#1: July 07th, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2011/08/18/003.html>#3: August 18th, 2011 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/07/07/001.html>#1: July 07th, 2011 001</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/08/18/003.html>#3: August 18th, 2011 003</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>003</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/08/18/003.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1282,8 +1282,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/07/21/002.html>#2: July 21st, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2011/09/15/004.html>#4: September 15th, 2011 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/07/21/002.html>#2: July 21st, 2011 002</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/09/15/004.html>#4: September 15th, 2011 004</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>004</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/09/15/004.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1246,8 +1246,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/08/18/003.html>#3: August 18th, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2011/09/29/005.html>#5: September 29th, 2011 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/08/18/003.html>#3: August 18th, 2011 003</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/09/29/005.html>#5: September 29th, 2011 005</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>005</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/09/29/005.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1290,8 +1290,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/09/15/004.html>#4: September 15th, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2011/10/06/006.html>#6: October 06th, 2011 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/09/15/004.html>#4: September 15th, 2011 004</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/10/06/006.html>#6: October 06th, 2011 006</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>006</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/10/06/006.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1254,8 +1254,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/09/29/005.html>#5: September 29th, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2011/10/20/007.html>#7: October 20th, 2011 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/09/29/005.html>#5: September 29th, 2011 005</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/10/20/007.html>#7: October 20th, 2011 007</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>007</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/10/20/007.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1214,8 +1214,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/10/06/006.html>#6: October 06th, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2011/11/10/008.html>#08: November 10th, 2011 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/10/06/006.html>#6: October 06th, 2011 006</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/11/10/008.html>#08: November 10th, 2011 008</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>008</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/11/10/008.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1277,8 +1277,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/10/20/007.html>#7: October 20th, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2011/11/17/009.html>#09: November 17th, 2011 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/10/20/007.html>#7: October 20th, 2011 007</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/11/17/009.html>#09: November 17th, 2011 009</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>009</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/11/17/009.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1257,8 +1257,8 @@ To show this diversity I want to initiate a varity of works. I want to bring tog
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/11/10/008.html>#08: November 10th, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2012/01/12/010.html>#10: January 10th, 2012 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/11/10/008.html>#08: November 10th, 2011 008</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/01/12/010.html>#10: January 10th, 2012 010</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>010</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/01/12/010.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1249,8 +1249,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/11/17/009.html>#09: November 17th, 2011 </a>
<a class="button hvr-sweep-to-top right" href=/session/2012/02/09/011.html>#11: February 09th, 2012 </a>
<a class="button hvr-sweep-to-top left" href=/session/2011/11/17/009.html>#09: November 17th, 2011 009</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/02/09/011.html>#11: February 09th, 2012 011</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>011</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/02/09/011.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1307,8 +1307,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/01/12/010.html>#10: January 10th, 2012 </a>
<a class="button hvr-sweep-to-top right" href=/session/2012/03/08/012.html>#12: March 08th, 2012 </a>
<a class="button hvr-sweep-to-top left" href=/session/2012/01/12/010.html>#10: January 10th, 2012 010</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/03/08/012.html>#12: March 08th, 2012 012</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>012</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/03/08/012.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1292,8 +1292,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/02/09/011.html>#11: February 09th, 2012 </a>
<a class="button hvr-sweep-to-top right" href=/session/2012/04/12/013.html>#13: April 12th, 2012 </a>
<a class="button hvr-sweep-to-top left" href=/session/2012/02/09/011.html>#11: February 09th, 2012 011</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/04/12/013.html>#13: April 12th, 2012 013</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>013</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/04/12/013.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1311,7 +1311,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/03/08/012.html>#12: March 08th, 2012 </a>
<a class="button hvr-sweep-to-top left" href=/session/2012/03/08/012.html>#12: March 08th, 2012 012</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/05/10/014.html>#14: May 10th, 2012 FAMU/CAS special session</a>
</div>

View file

@ -1353,8 +1353,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/04/12/013.html>#13: April 12th, 2012 </a>
<a class="button hvr-sweep-to-top right" href=/session/2012/09/13/015.html>#15: September 13th, 2012 </a>
<a class="button hvr-sweep-to-top left" href=/session/2012/04/12/013.html>#13: April 12th, 2012 013</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/09/13/015.html>#15: September 13th, 2012 015</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>015</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/09/13/015.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1295,7 +1295,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2012/05/10/014.html>#14: May 10th, 2012 FAMU/CAS special session</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/10/11/016.html>#16: October 11th, 2012 </a>
<a class="button hvr-sweep-to-top right" href=/session/2012/10/11/016.html>#16: October 11th, 2012 016</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>016</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/10/11/016.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1320,7 +1320,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/09/13/015.html>#15: September 13th, 2012 </a>
<a class="button hvr-sweep-to-top left" href=/session/2012/09/13/015.html>#15: September 13th, 2012 015</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/11/08/017.html>#17: November 08th, 2012 HGB Leipzig Special Session</a>
</div>

View file

@ -1282,8 +1282,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/10/11/016.html>#16: October 11th, 2012 </a>
<a class="button hvr-sweep-to-top right" href=/session/2012/12/13/018.html>#18: December 18th, 2012 </a>
<a class="button hvr-sweep-to-top left" href=/session/2012/10/11/016.html>#16: October 11th, 2012 016</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/12/13/018.html>#18: December 18th, 2012 018</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>018</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/12/13/018.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1305,7 +1305,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2012/11/08/017.html>#17: November 08th, 2012 HGB Leipzig Special Session</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/02/21/019.html>#19: February 21st, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/02/21/019.html>#19: February 21st, 2013 019</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>019</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/02/21/019.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1326,8 +1326,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/12/13/018.html>#18: December 18th, 2012 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/03/14/020.html>#20: March 14th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2012/12/13/018.html>#18: December 18th, 2012 018</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/03/14/020.html>#20: March 14th, 2013 020</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>020</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/03/14/020.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1275,8 +1275,8 @@ David Sanz Kirbis is a multidisciplinary experimenter interested in how things w
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/02/21/019.html>#19: February 21st, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/04/11/021.html>#21: April 11th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/02/21/019.html>#19: February 21st, 2013 019</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/04/11/021.html>#21: April 11th, 2013 021</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>021</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/04/11/021.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1324,7 +1324,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/03/14/020.html>#20: March 14th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/03/14/020.html>#20: March 14th, 2013 020</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/05/09/022.html>#22: May 09th, 2013 LPM Preview</a>
</div>

View file

@ -1286,8 +1286,8 @@ Her work deals with identity, humor, and acidity. She presented her work at audi
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/04/11/021.html>#21: April 11th, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/06/06/023.html>#23: May 06th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/04/11/021.html>#21: April 11th, 2013 021</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/06/06/023.html>#23: May 06th, 2013 023</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>023</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/06/06/023.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1302,7 +1302,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2013/05/09/022.html>#22: May 09th, 2013 LPM Preview</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/07/11/024.html>#24: July 11th, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/07/11/024.html>#24: July 11th, 2013 024</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>024</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/07/11/024.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1329,8 +1329,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/06/06/023.html>#23: May 06th, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/09/12/025.html>#25: September 12th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/06/06/023.html>#23: May 06th, 2013 023</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/09/12/025.html>#25: September 12th, 2013 025</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>025</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/09/12/025.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1311,8 +1311,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/07/11/024.html>#24: July 11th, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/10/10/026.html>#26: October 10th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/07/11/024.html>#24: July 11th, 2013 024</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/10/10/026.html>#26: October 10th, 2013 026</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>026</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/10/10/026.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1285,8 +1285,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/09/12/025.html>#25: September 12th, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/11/14/027.html>#27: November 14th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/09/12/025.html>#25: September 12th, 2013 025</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/11/14/027.html>#27: November 14th, 2013 027</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>027</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/11/14/027.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1316,8 +1316,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/10/10/026.html>#26: October 10th, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2013/12/12/028.html>#28: December 12th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/10/10/026.html>#26: October 10th, 2013 026</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/12/12/028.html>#28: December 12th, 2013 028</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>028</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/12/12/028.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1283,8 +1283,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/11/14/027.html>#27: November 14th, 2013 </a>
<a class="button hvr-sweep-to-top right" href=/session/2014/02/13/029.html>#29: February 13th, 2014 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/11/14/027.html>#27: November 14th, 2013 027</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/02/13/029.html>#29: February 13th, 2014 029</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>029</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/02/13/029.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1326,7 +1326,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/12/12/028.html>#28: December 12th, 2013 </a>
<a class="button hvr-sweep-to-top left" href=/session/2013/12/12/028.html>#28: December 12th, 2013 028</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/03/20/030.html>#30: March 20th, 2014 B-Seite Mannheim</a>
</div>

View file

@ -1288,8 +1288,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/02/13/029.html>#29: February 13th, 2014 </a>
<a class="button hvr-sweep-to-top right" href=/session/2014/04/10/031.html>#31: April 10th, 2014 </a>
<a class="button hvr-sweep-to-top left" href=/session/2014/02/13/029.html>#29: February 13th, 2014 029</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/04/10/031.html>#31: April 10th, 2014 031</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>031</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/04/10/031.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1305,7 +1305,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2014/03/20/030.html>#30: March 20th, 2014 B-Seite Mannheim</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/05/08/032.html>#32: May 8th, 2014 </a>
<a class="button hvr-sweep-to-top right" href=/session/2014/05/08/032.html>#32: May 8th, 2014 032</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>032</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/05/08/032.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1320,8 +1320,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/04/10/031.html>#31: April 10th, 2014 </a>
<a class="button hvr-sweep-to-top right" href=/session/2014/06/12/033.html>#33: June 12th, 2014 </a>
<a class="button hvr-sweep-to-top left" href=/session/2014/04/10/031.html>#31: April 10th, 2014 031</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/06/12/033.html>#33: June 12th, 2014 033</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>033</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/06/12/033.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1302,8 +1302,8 @@ International exhibitions (selection): 2000 Biennial of young Art in Genua, Ital
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/05/08/032.html>#32: May 8th, 2014 </a>
<a class="button hvr-sweep-to-top right" href=/session/2014/07/10/034.html>#34: July 10th, 2014 </a>
<a class="button hvr-sweep-to-top left" href=/session/2014/05/08/032.html>#32: May 8th, 2014 032</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/07/10/034.html>#34: July 10th, 2014 034</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>034</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/07/10/034.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1319,8 +1319,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/06/12/033.html>#33: June 12th, 2014 </a>
<a class="button hvr-sweep-to-top right" href=/session/2014/09/11/035.html>#35: September 11th, 2014 </a>
<a class="button hvr-sweep-to-top left" href=/session/2014/06/12/033.html>#33: June 12th, 2014 033</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/09/11/035.html>#35: September 11th, 2014 035</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>035</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/09/11/035.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1307,8 +1307,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/07/10/034.html>#34: July 10th, 2014 </a>
<a class="button hvr-sweep-to-top right" href=/session/2014/10/09/036.html>#36: October 9th, 2014 </a>
<a class="button hvr-sweep-to-top left" href=/session/2014/07/10/034.html>#34: July 10th, 2014 034</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/10/09/036.html>#36: October 9th, 2014 036</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>036</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/10/09/036.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1312,7 +1312,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/09/11/035.html>#35: September 11th, 2014 </a>
<a class="button hvr-sweep-to-top left" href=/session/2014/09/11/035.html>#35: September 11th, 2014 035</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/11/13/037.html>#37: November 13th, 2014 privacy and online freedom of expression</a>
</div>

View file

@ -1214,8 +1214,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/10/09/036.html>#36: October 9th, 2014 </a>
<a class="button hvr-sweep-to-top right" href=/session/2014/12/11/038.html>#38: December 11th, 2014 </a>
<a class="button hvr-sweep-to-top left" href=/session/2014/10/09/036.html>#36: October 9th, 2014 036</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/12/11/038.html>#38: December 11th, 2014 038</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>038</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/12/11/038.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1316,7 +1316,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2014/11/13/037.html>#37: November 13th, 2014 privacy and online freedom of expression</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/01/08/039.html>#39: Januar 8th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2015/01/08/039.html>#39: Januar 8th, 2015 039</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>039</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/01/08/039.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1265,8 +1265,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/12/11/038.html>#38: December 11th, 2014 </a>
<a class="button hvr-sweep-to-top right" href=/session/2015/03/12/040.html>#40: March 12th, 2015 </a>
<a class="button hvr-sweep-to-top left" href=/session/2014/12/11/038.html>#38: December 11th, 2014 038</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/03/12/040.html>#40: March 12th, 2015 040</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>040</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/03/12/040.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1296,7 +1296,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/01/08/039.html>#39: Januar 8th, 2015 </a>
<a class="button hvr-sweep-to-top left" href=/session/2015/01/08/039.html>#39: Januar 8th, 2015 039</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/03/12/041.html>#41: March 19th, 2015 SCOPE @ B-Seite</a>
</div>

View file

@ -1335,7 +1335,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/03/12/040.html>#40: March 12th, 2015 </a>
<a class="button hvr-sweep-to-top left" href=/session/2015/03/12/040.html>#40: March 12th, 2015 040</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/04/09/042.html>#42: April 9th, 2015 STATE Festival special edition</a>
</div>

View file

@ -1314,7 +1314,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2015/03/12/041.html>#41: March 19th, 2015 SCOPE @ B-Seite</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/05/14/043.html>#43: May 14th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2015/05/14/043.html>#43: May 14th, 2015 043</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>043</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/05/14/043.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1314,7 +1314,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2015/04/09/042.html>#42: April 9th, 2015 STATE Festival special edition</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/06/11/044.html>#44: June 11th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2015/06/11/044.html>#44: June 11th, 2015 044</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>044</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/06/11/044.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1297,7 +1297,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/05/14/043.html>#43: May 14th, 2015 </a>
<a class="button hvr-sweep-to-top left" href=/session/2015/05/14/043.html>#43: May 14th, 2015 043</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/06/27/045.html>#45: June 27th, 2015 Vision'r special performances night</a>
</div>

View file

@ -1252,8 +1252,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/06/11/044.html>#44: June 11th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2015/09/10/046.html>#46: September 10th, 2015 </a>
<a class="button hvr-sweep-to-top left" href=/session/2015/06/11/044.html>#44: June 11th, 2015 044</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/09/10/046.html>#46: September 10th, 2015 046</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>046</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/09/10/046.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />

View file

@ -1292,8 +1292,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/09/10/046.html>#46: September 10th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2015/10/08/048.html>#48: October 8th, 2015 </a>
<a class="button hvr-sweep-to-top left" href=/session/2015/09/10/046.html>#46: September 10th, 2015 046</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/10/08/048.html>#48: October 8th, 2015 048</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>048</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/10/08/048.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>049</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/11/12/049.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1286,7 +1286,7 @@
<a class="button hvr-sweep-to-top left" href=/spektrum/2015/10/09/048s.html>#1: October 9th, 2015 A-li-ce / Swub, Klara Ravat / Circuit Splash #47</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/12/10/050.html>#50: December 10th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2015/12/10/050.html>#50: December 10th, 2015 050</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>050</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/12/10/050.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1285,8 +1285,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/11/12/049.html>#49: November 12th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2016/01/14/051.html>#51: January 14th, 2016 </a>
<a class="button hvr-sweep-to-top left" href=/session/2015/11/12/049.html>#49: November 12th, 2015 049</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/01/14/051.html>#51: January 14th, 2016 051</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>051</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/01/14/051.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1295,8 +1295,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/12/10/050.html>#50: December 10th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2016/02/11/052.html>#52: February 11th, 2016 </a>
<a class="button hvr-sweep-to-top left" href=/session/2015/12/10/050.html>#50: December 10th, 2015 050</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/02/11/052.html>#52: February 11th, 2016 052</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>052</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/02/11/052.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1290,8 +1290,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/01/14/051.html>#51: January 14th, 2016 </a>
<a class="button hvr-sweep-to-top right" href=/session/2016/03/10/053.html>#53: March 10th, 2016 </a>
<a class="button hvr-sweep-to-top left" href=/session/2016/01/14/051.html>#51: January 14th, 2016 051</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/03/10/053.html>#53: March 10th, 2016 053</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>053</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/03/10/053.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1298,8 +1298,8 @@ Wolfgang Bittner (AT) is a visual artist working in the field video, photography
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/02/11/052.html>#52: February 11th, 2016 </a>
<a class="button hvr-sweep-to-top right" href=/session/2016/04/14/054.html>#54: April 14th, 2016 </a>
<a class="button hvr-sweep-to-top left" href=/session/2016/02/11/052.html>#52: February 11th, 2016 052</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/04/14/054.html>#54: April 14th, 2016 054</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>054</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/04/14/054.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1290,8 +1290,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/03/10/053.html>#53: March 10th, 2016 </a>
<a class="button hvr-sweep-to-top right" href=/session/2016/05/12/055.html>#55: May 12th, 2016 </a>
<a class="button hvr-sweep-to-top left" href=/session/2016/03/10/053.html>#53: March 10th, 2016 053</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/05/12/055.html>#55: May 12th, 2016 055</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>055</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/05/12/055.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1294,7 +1294,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/04/14/054.html>#54: April 14th, 2016 </a>
<a class="button hvr-sweep-to-top left" href=/session/2016/04/14/054.html>#54: April 14th, 2016 054</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/06/11/056.html>#56: June 11th, 2016 Scope @ MIRA FEstival Berlin</a>
</div>

View file

@ -1286,7 +1286,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/05/12/055.html>#55: May 12th, 2016 </a>
<a class="button hvr-sweep-to-top left" href=/session/2016/05/12/055.html>#55: May 12th, 2016 055</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/06/24/057.html>#57: June 24th, 2016 Scope 5th anniversary party</a>
</div>

View file

@ -1281,7 +1281,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2016/06/11/056.html>#56: June 11th, 2016 Scope @ MIRA FEstival Berlin</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/09/08/058.html>#58: September 08th, 2016 </a>
<a class="button hvr-sweep-to-top right" href=/session/2016/09/08/058.html>#58: September 08th, 2016 058</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>058</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/09/08/058.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1286,7 +1286,7 @@
<a class="button hvr-sweep-to-top left" href=/session/2016/06/24/057.html>#57: June 24th, 2016 Scope 5th anniversary party</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/10/13/059.html>#59: October 13th, 2016 </a>
<a class="button hvr-sweep-to-top right" href=/session/2016/10/13/059.html>#59: October 13th, 2016 059</a>
</div>

View file

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title></title>
<title>059</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/10/13/059.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
@ -1290,7 +1290,7 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/09/08/058.html>#58: September 08th, 2016 </a>
<a class="button hvr-sweep-to-top left" href=/session/2016/09/08/058.html>#58: September 08th, 2016 058</a>
</div>

View file

@ -1255,8 +1255,8 @@ Swub (DE / Berlin) works as a video artist: his works were shown in exhibitions
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/10/08/048.html>#48: October 8th, 2015 </a>
<a class="button hvr-sweep-to-top right" href=/session/2015/11/12/049.html>#49: November 12th, 2015 </a>
<a class="button hvr-sweep-to-top left" href=/session/2015/10/08/048.html>#48: October 8th, 2015 048</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/11/12/049.html>#49: November 12th, 2015 049</a>
</div>