## 2018-04-19

Doing management of FutureSOC 2018 Elevator Pitches in Lively4.

<script>
// #Elevator Pitch Stuff

let pitches = [{
  speaker: 'Ahmed Shams',
  topic: 'Improving MOOC in Poor Network Performance'
},
{
  speaker: 'Andreas Fricke',
  topic: 'Geo-Servicification'
},
 {
   speaker: 'Ankit Chauhan',
   topic: 'Analysis of Algorithms Using Structural Properties of Real-World Networks'
 },
{
  speaker: 'Anton Tsitsulin',
  topic: 'Graph Representation Learning'
},
{
  speaker: 'Christian Adriano',
  topic: 'Predicting tasks in human the loop mechanisms'
},
{
  speaker: 'Christiane Hagedorn',
  topic: 'Fostering Collaboration with Gameful Learning in Scalable E-Learning Environments'
},
{
  speaker: 'Christoph Matthies',
  topic: 'Data-Driven Software Development Processes'
},
{
  speaker: 'Erik Scharwaechter',
  topic: 'Event Impacts on Time Series'
},
{
  speaker: 'Fabio Niephaus',
  topic: 'Polyglot Programming'
},
{
  speaker: 'Francesco Quinzan',
  topic: 'Evolutionary Algorithms in Combinatorial Optimization'
},
{
  speaker: 'Julian Risch',
  topic: 'News Comment Analysis/Deep Learning for the News Room and Beyond'
},
{
  speaker: 'Lan Jiang',
  topic: 'Data Preparation Exploration'
},
{
  speaker: 'Martin Krejca',
  topic: 'Understanding Swarm Algorithms'
},
{
  speaker: "Oliver Schneider",
  topic: "DualPanto: a Haptic Device that Enables Blind Users to Continuously Interact with Virtual Worlds"
},
{
  speaker: 'Ralf Rothenberger',
  topic: 'Power-Law Distributions in Random Satisfiability'
},
{
  speaker: 'Robert Kovacs',
  topic: 'TrussFormer: 3D printing large kinematic structures'
},
{
  speaker: 'Sankalita Mandal',
  topic: 'A Flexible Event Handling Model for Business Processes'
},
{
  speaker: 'Sebastian Marwecki',
  topic: 'Scenograph'
},
 {
   speaker: 'Sona Ghahremani',
   topic: 'Utility-Driven Architecture-based Self-adaptive systems'
 },
{
  speaker: 'Stefan Ramson',
  topic: 'Active Expressions/A Basic Building Block for Reactive Programming'
},
{
  speaker: 'Thijs Roumen',
  topic: 'Kyub: a 3D Editor for Modeling Sturdy Laser-Cut Objects'
},
{
  speaker: 'Tobias Bleifuss',
  topic: 'Change Exploration - A New Dimension of Data Analytics'
},
{
  speaker: 'Toni Mattis',
  topic: 'Learning Semantic Concepts from Source Code'
}]
  .map(pitch => <li>
    <span style="font-weight: bold">{pitch.speaker}</span>:
    <span style="font-style: italic">{pitch.topic}</span>
  </li>);

// <p>{pitches
//   .map(({speaker}) => speaker)
//   .join('; ')
// }</p>

// that.innerHTML = '';
// Object.assign(that.style, {
//   backgroundColor: 'white',
//   overflowY: 'auto',
//   zIndex: 100000
// })

<ol style="background-color: lightyellow">{...pitches}</ol>
</script>
