Add fiffkon16

This commit is contained in:
Daniel Molkentin 2016-11-26 01:01:39 +01:00
parent a6fa64e69a
commit 6a9326e6fc
8 changed files with 573 additions and 765 deletions

View file

@ -2,105 +2,90 @@
from renderlib import *
from easing import *
import math
# URL to Schedule-XML
scheduleUrl = 'file://' + os.path.join(os.path.dirname(os.path.abspath(__file__)), 'schedule.xml')
scheduleUrl = 'http://data.testi.ber.c3voc.de/schedule/fiffkon16/schedule-Hoersaal.xml'
# For (really) too long titles
titlemap = {
#708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
}
def introFrames(params):
move=40
# 1 Sekunden stillstand
frames = 1*fps
for i in range(0, frames):
yield (
('title', 'style', 'opacity', "%.4f" % 0),
('subtitle', 'style', 'opacity', "%.4f" % 0),
('persons', 'style', 'opacity', "%.4f" % 0),
('rect', 'style', 'opacity', "%.4f" % 0),
)
# 4 Sekunde Text Fadein
frames = 4*fps
for i in range(0, frames):
yield (
('title', 'style', 'opacity', "%.4f" % easeDelay(easeLinear, 0*fps, i, 0, 1, 2*fps)),
('title', 'attr', 'transform', 'translate(%.4f, 0)' % easeDelay(easeOutQuad, 0*fps, i, -move, move, 2*fps)),
('subtitle', 'style', 'opacity', "%.4f" % easeDelay(easeLinear, 1*fps, i, 0, 1, 2*fps)),
('subtitle', 'attr', 'transform', 'translate(%.4f, 0)' % easeDelay(easeOutQuad, 1*fps, i, -move, move, 2*fps)),
('rect', 'style', 'opacity', "%.4f" % easeDelay(easeLinear, 2*fps, i, 0, 1, 2*fps)),
('persons', 'style', 'opacity', "%.4f" % easeDelay(easeLinear, 2*fps, i, 0, 1, 2*fps)),
('persons', 'attr', 'transform', 'translate(%.4f, 0)' % easeDelay(easeOutQuad, 2*fps, i, -move, move, 2*fps)),
)
# 2 Sekunden stillstand
frames = 2*fps
for i in range(0, frames):
yield tuple()
# 1 Sekunde fadeout
frames = 1*fps
for i in range(0, frames):
yield (
('title', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
('subtitle', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
('persons', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
('rect', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
('logo', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
)
def outroFrames(params):
move=50
# 1 Sekunden stillstand
frames = 1*fps
for i in range(0, frames):
yield (
('license', 'style', 'opacity', "%.4f" % 0),
)
# 2 Sekunde Text Fadein
def outroFrames(p):
frames = 2*fps
for i in range(0, frames):
yield (
('license', 'style', 'opacity', "%.4f" % easeDelay(easeLinear, 0*fps, i, 0, 1, 2*fps)),
('license', 'attr', 'transform', 'translate(%.4f, 0)' % easeDelay(easeOutQuad, 0*fps, i, -move, move, 2*fps)),
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
('plate', 'style', 'opacity', 0),
)
frames = 1*fps
for i in range(0, frames):
yield (
('logo', 'style', 'opacity', 1),
('plate', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
)
# 2 Sekunden stillstand
frames = 2*fps
for i in range(0, frames):
yield tuple()
yield (
('logo', 'style', 'opacity', 1),
('plate', 'style', 'opacity', 1),
)
def introFrames(p):
frames = math.floor(1.5*fps)
for i in range(0, frames):
yield (
('header', 'attr', 'y', 659),
('text', 'style', 'opacity', 0),
)
frames = 1*fps
for i in range(0, frames):
yield (
('text', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
)
frames = math.ceil(3.5*fps)
for i in range(0, frames):
yield (
('text', 'style', 'opacity', 1),
)
def pauseFrames(p):
pass
def debug():
render(
'outro.svg',
'../outro.ts',
outroFrames
)
render(
'intro.svg',
'../intro.ts',
introFrames,
{
'$id': 904,
'$title': 'Was ist Open Source, wie funktioniert das?',
'$subtitle': 'Die Organisation der Open Geo- und GIS-Welt. Worauf man achten sollte.',
'$personnames': 'Arnulf Christl, Astrid Emde, Dominik Helle, Till Adams'
'$id': 6526,
'$title': 'Nachrichtendienstliche Zugriffe auf Telekommunikation und IKT-Strukuren und ihre Implikationen für individuelle und staatliche Souveränität',
'$subtitle': '',
'$personnames': 'Andy Müller-Maguhn'
}
)
#render(
# 'outro.svg',
# '../outro.ts',
# outroFrames
#)
# render('pause.svg',
# '../pause.ts',
# pauseFrames
# )
def tasks(queue, params):
# iterate over all events extracted from the schedule xml-export
for event in events(scheduleUrl, titlemap):
for event in events(scheduleUrl):
# generate a task description and put them into the queue
queue.put(Rendertask(
@ -121,3 +106,10 @@ def tasks(queue, params):
outfile = 'outro.ts',
sequence = outroFrames
))
# # place the pause-sequence into the queue
# queue.put(Rendertask(
# infile = 'pause.svg',
# outfile = 'pause.ts',
# sequence = pauseFrames
# ))

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

199
fiffkon16/artwork/by-sa.svg Normal file
View file

@ -0,0 +1,199 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="120"
height="42"
id="svg2759"
sodipodi:version="0.32"
inkscape:version="0.45+devel"
version="1.0"
sodipodi:docname="by-sa.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs2761" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#8b8b8b"
borderopacity="1"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="179"
inkscape:cy="89.569904"
inkscape:document-units="px"
inkscape:current-layer="layer1"
width="120px"
height="42px"
inkscape:showpageshadow="false"
inkscape:window-width="1198"
inkscape:window-height="624"
inkscape:window-x="488"
inkscape:window-y="401" />
<metadata
id="metadata2764">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)"
id="g287"
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
inkscape:export-xdpi="300.23013"
inkscape:export-ydpi="300.23013">
<path
id="path3817_2_"
nodetypes="ccccccc"
d="M 182.23532,75.39014 L 296.29928,75.59326 C 297.89303,75.59326 299.31686,75.35644 299.31686,78.77344 L 299.17721,116.34033 L 179.3569,116.34033 L 179.3569,78.63379 C 179.3569,76.94922 179.51999,75.39014 182.23532,75.39014 z"
style="fill:#aab2ab" />
<g
id="g5908_2_"
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
<path
id="path5906_2_"
cx="296.35416"
ry="22.939548"
cy="264.3577"
type="arc"
rx="22.939548"
d="M 187.20944,-55.6792 C 187.21502,-46.99896 180.18158,-39.95825 171.50134,-39.95212 C 162.82113,-39.94708 155.77929,-46.97998 155.77426,-55.66016 C 155.77426,-55.66687 155.77426,-55.67249 155.77426,-55.6792 C 155.76922,-64.36054 162.80209,-71.40125 171.48233,-71.40631 C 180.16367,-71.41193 187.20441,-64.37842 187.20944,-55.69824 C 187.20944,-55.69263 187.20944,-55.68591 187.20944,-55.6792 z"
style="fill:#ffffff" />
<g
id="g5706_2_"
transform="translate(-289.6157,99.0653)">
<path
id="path5708_2_"
d="M 473.88455,-167.54724 C 477.36996,-164.06128 479.11294,-159.79333 479.11294,-154.74451 C 479.11294,-149.69513 477.40014,-145.47303 473.9746,-142.07715 C 470.33929,-138.50055 466.04281,-136.71283 461.08513,-136.71283 C 456.18736,-136.71283 451.96526,-138.48544 448.42003,-142.03238 C 444.87419,-145.57819 443.10158,-149.81537 443.10158,-154.74451 C 443.10158,-159.6731 444.87419,-163.94049 448.42003,-167.54724 C 451.87523,-171.03375 456.09728,-172.77618 461.08513,-172.77618 C 466.13342,-172.77618 470.39914,-171.03375 473.88455,-167.54724 z M 450.76657,-165.20239 C 447.81982,-162.22601 446.34701,-158.7395 446.34701,-154.74005 C 446.34701,-150.7417 447.80529,-147.28485 450.72125,-144.36938 C 453.63778,-141.45288 457.10974,-139.99462 461.1383,-139.99462 C 465.16683,-139.99462 468.66848,-141.46743 471.64486,-144.41363 C 474.47076,-147.14947 475.88427,-150.59069 475.88427,-154.74005 C 475.88427,-158.85809 474.44781,-162.35297 471.57659,-165.22479 C 468.70595,-168.09546 465.22671,-169.53131 461.1383,-169.53131 C 457.04993,-169.53131 453.59192,-168.08813 450.76657,-165.20239 z M 458.52106,-156.49927 C 458.07074,-157.4809 457.39673,-157.9715 456.49781,-157.9715 C 454.90867,-157.9715 454.11439,-156.90198 454.11439,-154.763 C 454.11439,-152.62341 454.90867,-151.55389 456.49781,-151.55389 C 457.54719,-151.55389 458.29676,-152.07519 458.74647,-153.11901 L 460.94923,-151.94598 C 459.8993,-150.0805 458.32417,-149.14697 456.22374,-149.14697 C 454.60384,-149.14697 453.30611,-149.64367 452.33168,-150.63653 C 451.35561,-151.62994 450.86894,-152.99926 450.86894,-154.7445 C 450.86894,-156.46008 451.37123,-157.82159 452.37642,-158.83013 C 453.38161,-159.83806 454.63347,-160.34264 456.13423,-160.34264 C 458.35435,-160.34264 459.94407,-159.46776 460.90504,-157.71978 L 458.52106,-156.49927 z M 468.8844,-156.49927 C 468.43353,-157.4809 467.77292,-157.9715 466.90201,-157.9715 C 465.28095,-157.9715 464.46988,-156.90198 464.46988,-154.763 C 464.46988,-152.62341 465.28095,-151.55389 466.90201,-151.55389 C 467.95304,-151.55389 468.68918,-152.07519 469.10925,-153.11901 L 471.36126,-151.94598 C 470.31301,-150.0805 468.74007,-149.14697 466.64358,-149.14697 C 465.02587,-149.14697 463.73095,-149.64367 462.75711,-150.63653 C 461.78494,-151.62994 461.29773,-152.99926 461.29773,-154.7445 C 461.29773,-156.46008 461.79221,-157.82159 462.78061,-158.83013 C 463.76843,-159.83806 465.02588,-160.34264 466.55408,-160.34264 C 468.77027,-160.34264 470.35776,-159.46776 471.3154,-157.71978 L 468.8844,-156.49927 z" />
</g>
</g>
<path
d="M 297.29639,74.91064 L 181.06688,74.91064 C 179.8203,74.91064 178.80614,75.92529 178.80614,77.17187 L 178.80614,116.66748 C 178.80614,116.94922 179.03466,117.17822 179.31639,117.17822 L 299.04639,117.17822 C 299.32813,117.17822 299.55713,116.94922 299.55713,116.66748 L 299.55713,77.17188 C 299.55713,75.92529 298.54297,74.91064 297.29639,74.91064 z M 181.06688,75.93213 L 297.29639,75.93213 C 297.97998,75.93213 298.53565,76.48828 298.53565,77.17188 C 298.53565,77.17188 298.53565,93.09131 298.53565,104.59034 L 215.4619,104.59034 C 212.41698,110.09571 206.55077,113.83399 199.81835,113.83399 C 193.083,113.83399 187.21825,110.09913 184.1748,104.59034 L 179.82666,104.59034 C 179.82666,93.09132 179.82666,77.17188 179.82666,77.17188 C 179.82664,76.48828 180.38329,75.93213 181.06688,75.93213 z"
id="path294" />
<g
enable-background="new "
id="g296">
<path
d="M 265.60986,112.8833 C 265.68994,113.03906 265.79736,113.16504 265.93115,113.26172 C 266.06494,113.35791 266.22119,113.42969 266.40088,113.47608 C 266.58154,113.52296 266.76807,113.54639 266.96045,113.54639 C 267.09033,113.54639 267.22998,113.53565 267.3794,113.51368 C 267.52784,113.4922 267.66749,113.44972 267.79835,113.3877 C 267.92823,113.32569 268.03761,113.23975 268.12355,113.13086 C 268.21144,113.02197 268.25441,112.88379 268.25441,112.71533 C 268.25441,112.53515 268.19679,112.38916 268.08156,112.27685 C 267.9673,112.16455 267.81594,112.07177 267.62941,111.99658 C 267.44386,111.92236 267.23195,111.85693 266.9966,111.80078 C 266.76027,111.74463 266.52101,111.68262 266.27883,111.61377 C 266.02981,111.55176 265.78762,111.47559 265.55129,111.38525 C 265.31594,111.29541 265.10402,111.17822 264.9175,111.03515 C 264.73098,110.89208 264.58059,110.71337 264.46535,110.49853 C 264.35109,110.28369 264.29347,110.02392 264.29347,109.71923 C 264.29347,109.37646 264.36671,109.07958 264.51222,108.82763 C 264.6587,108.57568 264.85011,108.36572 265.08644,108.19726 C 265.32179,108.02929 265.58937,107.90478 265.8882,107.82372 C 266.18605,107.74315 266.48488,107.70263 266.78273,107.70263 C 267.13136,107.70263 267.46535,107.74169 267.78566,107.81982 C 268.105,107.89746 268.39015,108.02392 268.6382,108.19824 C 268.88722,108.37256 269.08449,108.59521 269.23097,108.86621 C 269.37648,109.13721 269.44972,109.46582 269.44972,109.85156 L 268.02784,109.85156 C 268.01514,109.65234 267.97315,109.4873 267.90284,109.35693 C 267.83155,109.22607 267.73682,109.12353 267.61964,109.04834 C 267.50148,108.97412 267.36671,108.9209 267.21534,108.89014 C 267.063,108.85889 266.89796,108.84326 266.71827,108.84326 C 266.60108,108.84326 266.48292,108.85596 266.36573,108.88037 C 266.24757,108.90576 266.14112,108.94922 266.04542,109.01123 C 265.94874,109.07373 265.86964,109.15137 265.80812,109.24463 C 265.7466,109.33838 265.71535,109.45654 265.71535,109.59961 C 265.71535,109.73047 265.73976,109.83643 265.78957,109.91699 C 265.83937,109.99804 265.93801,110.07275 266.08352,110.14111 C 266.22903,110.20947 266.43118,110.27832 266.68899,110.34668 C 266.9468,110.41504 267.28372,110.50244 267.70071,110.60791 C 267.82473,110.63281 267.99661,110.67822 268.21731,110.74365 C 268.43801,110.80908 268.65676,110.91308 268.87454,111.05615 C 269.09231,111.1997 269.27981,111.39111 269.43899,111.63037 C 269.59719,111.87012 269.67629,112.17676 269.67629,112.55029 C 269.67629,112.85547 269.61672,113.13867 269.49856,113.3999 C 269.3804,113.66162 269.20461,113.8872 268.97122,114.07666 C 268.73782,114.26709 268.44876,114.41455 268.10403,114.52051 C 267.75833,114.62647 267.35794,114.6792 266.90481,114.6792 C 266.53762,114.6792 266.18118,114.63379 265.83547,114.54346 C 265.49074,114.45313 265.18508,114.31104 264.92043,114.11768 C 264.65676,113.92432 264.4468,113.67774 264.29055,113.37891 C 264.13528,113.07959 264.06106,112.7251 264.06692,112.31397 L 265.4888,112.31397 C 265.48877,112.53809 265.52881,112.72803 265.60986,112.8833 z"
id="path298"
style="fill:#ffffff" />
<path
d="M 273.8667,107.8667 L 276.35986,114.53076 L 274.8374,114.53076 L 274.33349,113.04638 L 271.84033,113.04638 L 271.31787,114.53076 L 269.84326,114.53076 L 272.36377,107.8667 L 273.8667,107.8667 z M 273.95068,111.95264 L 273.11084,109.50928 L 273.09229,109.50928 L 272.22315,111.95264 L 273.95068,111.95264 z"
id="path300"
style="fill:#ffffff" />
</g>
<g
enable-background="new "
id="g302">
<path
d="M 239.17821,107.8667 C 239.49559,107.8667 239.78563,107.89502 240.04735,107.95068 C 240.30907,108.00683 240.53368,108.09863 240.72118,108.22607 C 240.9077,108.35351 241.05321,108.52295 241.15575,108.73437 C 241.25829,108.94579 241.31005,109.20703 241.31005,109.51806 C 241.31005,109.854 241.23388,110.13329 241.08056,110.35742 C 240.92822,110.58154 240.70165,110.76465 240.40283,110.90771 C 240.81494,111.02587 241.12256,111.23291 241.32568,111.5288 C 241.5288,111.82469 241.63037,112.18114 241.63037,112.59814 C 241.63037,112.93408 241.56494,113.22509 241.43408,113.47119 C 241.30322,113.7168 241.12646,113.91748 240.90576,114.07324 C 240.68408,114.229 240.43115,114.34424 240.14795,114.41845 C 239.86377,114.49365 239.57275,114.53075 239.27295,114.53075 L 236.03662,114.53075 L 236.03662,107.86669 L 239.17821,107.86669 L 239.17821,107.8667 z M 238.99071,110.56201 C 239.25243,110.56201 239.46727,110.5 239.63622,110.37597 C 239.80419,110.25146 239.88817,110.05029 239.88817,109.77099 C 239.88817,109.61572 239.85985,109.48828 239.80419,109.38915 C 239.74755,109.28954 239.67333,109.21239 239.57958,109.15624 C 239.48583,109.10058 239.37841,109.06151 239.25731,109.04003 C 239.13524,109.01806 239.00926,109.00732 238.8784,109.00732 L 237.50535,109.00732 L 237.50535,110.56201 L 238.99071,110.56201 z M 239.07664,113.39014 C 239.22019,113.39014 239.35691,113.37647 239.48777,113.34815 C 239.61863,113.32032 239.73484,113.27344 239.83445,113.2085 C 239.93406,113.14307 240.01316,113.0542 240.07273,112.94239 C 240.1323,112.83058 240.1616,112.68751 240.1616,112.51319 C 240.1616,112.17139 240.06492,111.92725 239.87156,111.78126 C 239.6782,111.63527 239.42234,111.56202 239.10496,111.56202 L 237.50535,111.56202 L 237.50535,113.39014 L 239.07664,113.39014 z"
id="path304"
style="fill:#ffffff" />
<path
d="M 241.88914,107.8667 L 243.53269,107.8667 L 245.09324,110.49854 L 246.64402,107.8667 L 248.27781,107.8667 L 245.80418,111.97315 L 245.80418,114.53077 L 244.33543,114.53077 L 244.33543,111.93604 L 241.88914,107.8667 z"
id="path306"
style="fill:#ffffff" />
</g>
<g
id="g6316_1_"
transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)">
<path
id="path6318_1_"
cx="475.97119"
ry="29.209877"
cy="252.08646"
type="arc"
rx="29.209877"
d="M -175.0083,-139.1153 C -175.00204,-129.7035 -182.62555,-122.06751 -192.03812,-122.06049 C -201.44913,-122.05341 -209.08512,-129.67774 -209.09293,-139.09028 C -209.09293,-139.09809 -209.09293,-139.10749 -209.09293,-139.1153 C -209.09919,-148.52784 -201.47413,-156.1623 -192.06311,-156.17011 C -182.65054,-156.17713 -175.01456,-148.55207 -175.0083,-139.14026 C -175.0083,-139.13092 -175.0083,-139.1239 -175.0083,-139.1153 z"
style="fill:#ffffff" />
<g
id="g6320_1_"
transform="translate(-23.9521,-89.72962)">
<path
id="path6322_1_"
d="M -168.2204,-68.05536 C -173.39234,-68.05536 -177.76892,-66.25067 -181.35175,-62.64203 C -185.02836,-58.90759 -186.86588,-54.48883 -186.86588,-49.38568 C -186.86588,-44.28253 -185.02836,-39.89416 -181.35175,-36.22308 C -177.67673,-32.55114 -173.29859,-30.71521 -168.2204,-30.71521 C -163.07974,-30.71521 -158.62503,-32.56677 -154.85312,-36.26996 C -151.30307,-39.78558 -149.52652,-44.15827 -149.52652,-49.38568 C -149.52652,-54.6123 -151.33432,-59.03265 -154.94843,-62.64203 C -158.5625,-66.25067 -162.98599,-68.05536 -168.2204,-68.05536 z M -168.17352,-64.69519 C -163.936,-64.69519 -160.33752,-63.20221 -157.37655,-60.21466 C -154.38748,-57.25836 -152.89214,-53.64899 -152.89214,-49.38568 C -152.89214,-45.09186 -154.35466,-41.52856 -157.28438,-38.69653 C -160.36876,-35.64727 -163.99849,-34.12304 -168.17351,-34.12304 C -172.34856,-34.12304 -175.94701,-35.63244 -178.96892,-38.64965 C -181.9908,-41.66918 -183.50176,-45.24657 -183.50176,-49.38567 C -183.50176,-53.52398 -181.97518,-57.13414 -178.92205,-60.21465 C -175.9939,-63.20221 -172.41107,-64.69519 -168.17352,-64.69519 z" />
<path
id="path6324_1_"
d="M -176.49548,-52.02087 C -175.75171,-56.71856 -172.44387,-59.22949 -168.30008,-59.22949 C -162.33911,-59.22949 -158.70783,-54.90448 -158.70783,-49.1372 C -158.70783,-43.50982 -162.57194,-39.13793 -168.39383,-39.13793 C -172.39856,-39.13793 -175.98297,-41.60277 -176.63611,-46.43877 L -171.93292,-46.43877 C -171.7923,-43.92778 -170.1626,-43.04418 -167.83447,-43.04418 C -165.1813,-43.04418 -163.4563,-45.50908 -163.4563,-49.27709 C -163.4563,-53.22942 -164.94693,-55.32244 -167.74228,-55.32244 C -169.79074,-55.32244 -171.55948,-54.57787 -171.93292,-52.02087 L -170.56418,-52.02789 L -174.26734,-48.32629 L -177.96894,-52.02789 L -176.49548,-52.02087 z" />
</g>
</g>
<g
id="g313">
<circle
cx="242.56226"
cy="90.224609"
r="10.8064"
id="circle315"
sodipodi:cx="242.56226"
sodipodi:cy="90.224609"
sodipodi:rx="10.8064"
sodipodi:ry="10.8064"
style="fill:#ffffff" />
<g
id="g317">
<path
d="M 245.68994,87.09766 C 245.68994,86.68116 245.35205,86.34424 244.93603,86.34424 L 240.16357,86.34424 C 239.74755,86.34424 239.40966,86.68115 239.40966,87.09766 L 239.40966,91.87061 L 240.74071,91.87061 L 240.74071,97.52295 L 244.3579,97.52295 L 244.3579,91.87061 L 245.68993,91.87061 L 245.68993,87.09766 L 245.68994,87.09766 z"
id="path319" />
<circle
cx="242.5498"
cy="84.083008"
r="1.63232"
id="circle321"
sodipodi:cx="242.5498"
sodipodi:cy="84.083008"
sodipodi:rx="1.63232"
sodipodi:ry="1.63232" />
</g>
<path
clip-rule="evenodd"
d="M 242.53467,78.31836 C 239.30322,78.31836 236.56641,79.4458 234.32715,81.70215 C 232.0293,84.03516 230.88086,86.79736 230.88086,89.98633 C 230.88086,93.1753 232.0293,95.91846 234.32715,98.21338 C 236.625,100.50781 239.36133,101.65527 242.53467,101.65527 C 245.74756,101.65527 248.53272,100.49853 250.88819,98.18359 C 253.10889,95.98681 254.21827,93.2539 254.21827,89.98632 C 254.21827,86.71874 253.08936,83.95751 250.83057,81.70214 C 248.57178,79.4458 245.80615,78.31836 242.53467,78.31836 z M 242.56396,80.41797 C 245.2124,80.41797 247.46142,81.35156 249.31103,83.21875 C 251.18115,85.06592 252.11572,87.32227 252.11572,89.98633 C 252.11572,92.66992 251.20068,94.89746 249.36963,96.66699 C 247.4419,98.57275 245.17334,99.52539 242.56397,99.52539 C 239.9546,99.52539 237.70557,98.58252 235.81739,96.6958 C 233.92774,94.80957 232.98389,92.57324 232.98389,89.98633 C 232.98389,87.3999 233.93799,85.14404 235.84619,83.21875 C 237.67676,81.35156 239.9165,80.41797 242.56396,80.41797 z"
id="path323"
style="fill-rule:evenodd" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

View file

@ -7,47 +7,38 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1024"
height="576"
id="svg2"
version="1.1"
width="1920"
height="1080"
id="svg3039"
inkscape:version="0.91 r13725"
sodipodi:docname="intro.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1004"
id="namedview3103"
inkscape:zoom="1"
inkscape:cx="293.85937"
inkscape:cy="194.83743"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:zoom="0.25198788"
inkscape:cx="-161.9384"
inkscape:cy="302.87325"
inkscape:window-width="1920"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3039"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
orientation="1,0"
position="78,704"
id="guide3020" />
<sodipodi:guide
orientation="0,1"
position="362,1008"
id="guide3022" />
</sodipodi:namedview>
inkscape:snap-text-baseline="true" />
<metadata
id="metadata3045">
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
@ -58,124 +49,70 @@
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3043">
<inkscape:path-effect
effect="spiro"
id="path-effect5076"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect5072"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect5068"
is_visible="true" />
</defs>
<rect
style="fill:#f78a02;fill-opacity:1;stroke:#f78a02;stroke-width:1.00125456000000002;stroke-opacity:1"
id="rect"
width="1372.9988"
height="185.99876"
x="0.50062728"
y="433.43469"
inkscape:label="#rect4157" />
<g
id="title">
<flowRoot
inkscape:label="#title"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
transform="translate(46.046709,10.246285)"
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-476.36218)">
<text
xml:space="preserve"
id="flowRoot4216"><flowRegion
id="flowRegion4938"><rect
y="40.400318"
x="29.932016"
height="242.07967"
width="1747.2805"
id="rect4940" /></flowRegion><flowPara
id="flowPara6942"
style="font-size:100px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Arial;-inkscape-font-specification:Arial Bold">$title</flowPara><flowPara
id="flowPara3464"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Source Sans Pro;-inkscape-font-specification:Source Sans Pro" /><flowPara
style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Source Sans Pro;-inkscape-font-specification:Source Sans Pro"
id="flowPara3462" /></flowRoot> </g>
<g
id="persons">
<flowRoot
style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
transform="translate(45.859209,199.52017)"
xml:space="preserve"
id="flowRoot4224"><flowRegion
id="flowRegion4954"><rect
y="271.05231"
x="26.12545"
height="153.42853"
width="1281.4673"
id="rect4956"
style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Sans;-inkscape-font-specification:Sans" /></flowRegion><flowPara
id="flowPara4958"
style="font-size:72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Sans;-inkscape-font-specification:Sans">$personnames</flowPara></flowRoot> </g>
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Open Sans;-inkscape-font-specification:Open Sans"
x="385"
y="361"
id="text3007"
sodipodi:linespacing="125%"
transform="translate(0,476.36218)"><tspan
sodipodi:role="line"
id="tspan3009" /></text>
<image
sodipodi:absref="/home/danimo/scratch/VOC/intro-outro-generator/fiffkon16/artwork/background.png"
xlink:href="background.png"
y="291.36218"
x="-3.8750002"
id="image4254"
preserveAspectRatio="none"
height="770"
width="1038.7212" />
<flowRoot
xml:space="preserve"
id="flowRoot3902"
style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:Umpush;font-style:normal;font-weight:normal;font-size:40px;line-height:125%;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:Umpush;font-stretch:normal;font-variant:normal"><flowRegion
id="flowRegion3904"><rect
id="rect3906"
width="92"
height="182"
x="-20"
y="632" /></flowRegion><flowPara
id="flowPara3908" /></flowRoot> <rect
style="fill:#000000;fill-opacity:1;stroke:none"
id="rect3910"
width="652.1557"
height="160"
x="-2.7015285"
y="620" />
<flowRoot
id="text"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#a9a9a9;fill-opacity:1;stroke:none"
transform="matrix(0.94598044,0,0,0.94598044,106.46214,573.86291)"><flowRegion
id="flowRegion3013"><rect
id="rect3015"
width="829.50635"
height="213.60263"
x="123.3259"
y="284.41422"
style="text-align:center;text-anchor:middle;fill:#a9a9a9;fill-opacity:1" /></flowRegion><flowPara
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:31.71312929px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:center;writing-mode:lr;text-anchor:middle;fill:#ffffff"
id="flowPara2998">$title</flowPara><flowPara
id="flowPara3019"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:26.42760774px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:center;writing-mode:lr;text-anchor:middle;fill:#a9a9a9;fill-opacity:1">$personnames</flowPara></flowRoot> <text
xml:space="preserve"
id="flowRoot3124"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
transform="translate(74,0)"><flowRegion
id="flowRegion3126"><rect
id="rect3128"
width="888"
height="168"
x="-2"
y="620"
style="fill:#ffffff;fill-opacity:1" /></flowRegion><flowPara
id="flowPara3130"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:120px;line-height:125%;font-family:Arial;-inkscape-font-specification:'Arial Bold';text-align:start;writing-mode:lr-tb;text-anchor:start">DENOG8</flowPara><flowPara
id="flowPara3132" /></flowRoot> <rect
style="fill:#000000;fill-opacity:1;stroke:none"
id="rect3910-2"
width="1635.9521"
height="160"
x="-2.952095"
y="778" />
<flowRoot
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:51.01779938px;line-height:125%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="382.48825"
y="552.76831"
id="text4265"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4267"
x="382.48825"
y="552.76831"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:51.01742554px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start">#FIfFKon16 <tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:51.01742554px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#a9a9a9"
id="tspan4269">in.</tspan>visible systems</tspan></text>
<text
xml:space="preserve"
id="flowRoot3124-7"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Umpush;-inkscape-font-specification:Umpush"
transform="translate(75,158)"><flowRegion
id="flowRegion3126-4"><rect
id="rect3128-3"
width="1524"
height="190"
x="-2"
y="620"
style="fill:#ffffff;fill-opacity:1" /></flowRegion><flowPara
style="font-size:120px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Arial;-inkscape-font-specification:Arial Bold"
id="flowPara3132-2">darmstadtium, Darmstadt Darmstadt</flowPara></flowRoot> <flowRoot
xml:space="preserve"
id="flowRoot3024"
style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:Umpush;font-style:normal;font-weight:normal;font-size:40px;line-height:125%;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:Umpush;font-stretch:normal;font-variant:normal"><flowRegion
id="flowRegion3026"><rect
id="rect3028"
width="32"
height="78"
x="72"
y="528" /></flowRegion><flowPara
id="flowPara3030" /></flowRoot></svg>
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.31579018px;line-height:125%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="384.53369"
y="589.52325"
id="text4275"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4277"
x="384.53369"
y="589.52325"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:26.31579018px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#a9a9a9">25. 27.11.2016, TU-Berlin, Mathegebäude</tspan></text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Before After
Before After

View file

@ -10,34 +10,45 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1024"
height="576"
id="svg2"
version="1.1"
width="1920"
height="1080"
id="svg3039"
inkscape:version="0.48.4 r9939"
inkscape:version="0.91 r13725"
sodipodi:docname="outro.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-width="1295"
inkscape:window-height="744"
id="namedview3103"
inkscape:zoom="0.70710678"
inkscape:cx="740.22836"
inkscape:cy="248.18164"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:zoom="0.4"
inkscape:cx="790.3595"
inkscape:cy="572.63037"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-width="1920"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3039" />
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="376.18081,469.5189"
orientation="1,0"
id="guide8453" />
<sodipodi:guide
position="1006.9201,309.71277"
orientation="1,0"
id="guide8455" />
</sodipodi:namedview>
<metadata
id="metadata3045">
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
@ -48,36 +59,40 @@
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3043">
<inkscape:path-effect
effect="spiro"
id="path-effect5076"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect5072"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect5068"
is_visible="true" />
</defs>
<rect
style="fill:#f98806;fill-opacity:1;stroke:#f98806;stroke-width:0.74843806000000002;stroke-opacity:1"
id="rect4157"
width="1921.7516"
height="74.251564"
x="2.8742189"
y="0.37420374" />
<g
id="license">
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-476.36218)">
<image
sodipodi:absref="/home/danimo/scratch/VOC/intro-outro-generator/fiffkon16/artwork/background.png"
xlink:href="background.png"
width="1039.1488"
height="770.31708"
preserveAspectRatio="none"
id="image4454"
x="-4.5377812"
y="290.22675" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Open Sans;-inkscape-font-specification:Open Sans"
x="385"
y="361"
id="text3007"
sodipodi:linespacing="125%"
transform="translate(0,476.36218)"><tspan
sodipodi:role="line"
id="tspan3009" /></text>
<g
id="plate"
inkscape:label="plate"
transform="matrix(1.5333333,0,0,1.5333333,827,976.16218)">
<g
inkscape:export-ydpi="300.23013"
inkscape:export-xdpi="300.23013"
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
transform="matrix(4.5341244,0,0,4.5336166,-124.47929,403.30957)"
id="g4528">
id="g287"
transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)">
<path
style="fill:#aab2ab"
d="m 182.23532,75.39014 114.06396,0.20312 c 1.59375,0 3.01758,-0.23682 3.01758,3.18018 l -0.13965,37.56689 -119.82031,0 0,-37.70654 c 0,-1.68457 0.16309,-3.24365 2.87842,-3.24365 z"
@ -168,15 +183,14 @@
id="g313">
<circle
style="fill:#ffffff"
sodipodi:ry="10.8064"
sodipodi:rx="10.8064"
sodipodi:cy="90.224609"
sodipodi:cx="242.56226"
id="circle315"
r="10.8064"
cy="90.224609"
cx="242.56226"
sodipodi:cx="242.56226"
sodipodi:cy="90.224609"
sodipodi:rx="10.8064"
sodipodi:ry="10.8064"
d="m 253.36866,90.224609 c 0,5.96821 -4.83819,10.806401 -10.8064,10.806401 -5.96821,0 -10.8064,-4.838191 -10.8064,-10.806401 0,-5.96821 4.83819,-10.8064 10.8064,-10.8064 5.96821,0 10.8064,4.83819 10.8064,10.8064 z" />
cx="242.56226" />
<g
id="g317">
<path
@ -184,31 +198,88 @@
d="m 245.68994,87.09766 c 0,-0.4165 -0.33789,-0.75342 -0.75391,-0.75342 l -4.77246,0 c -0.41602,0 -0.75391,0.33691 -0.75391,0.75342 l 0,4.77295 1.33105,0 0,5.65234 3.61719,0 0,-5.65234 1.33203,0 0,-4.77295 1e-5,0 z"
inkscape:connector-curvature="0" />
<circle
sodipodi:ry="1.63232"
sodipodi:rx="1.63232"
sodipodi:cy="84.083008"
sodipodi:cx="242.5498"
id="circle321"
r="1.63232"
cy="84.083008"
cx="242.5498"
sodipodi:cx="242.5498"
sodipodi:cy="84.083008"
sodipodi:rx="1.63232"
sodipodi:ry="1.63232"
d="m 244.18212,84.083008 c 0,0.901505 -0.73081,1.63232 -1.63232,1.63232 -0.9015,0 -1.63232,-0.730815 -1.63232,-1.63232 0,-0.901506 0.73082,-1.63232 1.63232,-1.63232 0.90151,0 1.63232,0.730814 1.63232,1.63232 z" />
cx="242.5498" />
</g>
<path
style="fill-rule:evenodd"
id="path323"
d="m 242.53467,78.31836 c -3.23145,0 -5.96826,1.12744 -8.20752,3.38379 -2.29785,2.33301 -3.44629,5.09521 -3.44629,8.28418 0,3.18897 1.14844,5.93213 3.44629,8.22705 2.29785,2.29443 5.03418,3.44189 8.20752,3.44189 3.21289,0 5.99805,-1.15674 8.35352,-3.47168 2.2207,-2.19678 3.33008,-4.92969 3.33008,-8.19727 0,-3.26758 -1.12891,-6.02881 -3.3877,-8.28418 -2.25879,-2.25634 -5.02442,-3.38378 -8.2959,-3.38378 z m 0.0293,2.09961 c 2.64844,0 4.89746,0.93359 6.74707,2.80078 1.87012,1.84717 2.80469,4.10352 2.80469,6.76758 0,2.68359 -0.91504,4.91113 -2.74609,6.68066 -1.92773,1.90576 -4.19629,2.8584 -6.80566,2.8584 -2.60937,0 -4.8584,-0.94287 -6.74658,-2.82959 -1.88965,-1.88623 -2.8335,-4.12256 -2.8335,-6.70947 0,-2.58643 0.9541,-4.84229 2.8623,-6.76758 1.83057,-1.86719 4.07031,-2.80078 6.71777,-2.80078 z"
clip-rule="evenodd"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<image
sodipodi:absref="denog8-small.jpg"
xlink:href="denog8-small.jpg"
y="285.84668"
x="574.4834"
id="image3213"
height="348.25"
width="771.0332"
style="fill:#f98806;fill-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:51.01779938px;line-height:125%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="374.92065"
y="541.8894"
id="text4265"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4267"
x="374.92065"
y="541.8894"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:51.01742554px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start">#FIfFKon16 <tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:51.01742554px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#a9a9a9"
id="tspan4269">in.</tspan>visible systems</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.31579018px;line-height:125%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="376.96609"
y="578.64435"
id="text4275"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4277"
x="376.96609"
y="578.64435"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:26.31579018px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#a9a9a9">25. 27.11.2016, TU-Berlin, Mathegebäude</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="376.18082"
y="840.37231"
id="text4471"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="376.18082"
y="840.37231"
id="tspan4495"
style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Ultra-Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">Eine Konferenz des <tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start"
id="tspan8439">Forums InformatikerInnen für Frieden und </tspan></tspan><tspan
sodipodi:role="line"
x="376.18082"
y="871.62231"
style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Ultra-Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff"
id="tspan8433"><tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start"
id="tspan8441">gesellschaftliche Verantwortung (FIfF)</tspan> in Kooperation mit dem</tspan><tspan
sodipodi:role="line"
x="376.18082"
y="902.87231"
style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Ultra-Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff"
id="tspan8435"><tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start"
id="tspan8443">Zentrum für Technik und Gesellschaft (ZTG)</tspan>, der <tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start"
id="tspan8445">Fachgruppe</tspan></tspan><tspan
sodipodi:role="line"
x="376.18082"
y="934.12231"
style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Ultra-Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff"
id="tspan8437"><tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start"
id="tspan8447">Informatik und Ethik der GI</tspan> und dem <tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:25px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;writing-mode:lr-tb;text-anchor:start"
id="tspan8451">CCC</tspan>.</tspan></text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

View file

@ -1,391 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<schedule>
<version>v1.0</version>
<conference>
<acronym>DENOG</acronym>
<title>DENOG</title>
<start>2015-10-29</start>
<end>2015-10-25</end>
<days>2</days>
<timeslot_duration>00:15</timeslot_duration>
</conference>
<day date="2015-10-29" index="1">
<room name="DENOG">
<event guid="3d7c39b0-7e31-11e5-b91e-9aac1fd3bce4" id="2">
<date>2015-10-29T13:00:00+01:00</date>
<room>DENOG</room>
<title>Begrüßung</title>
<start>13:00</start>
<type>lecture</type>
<duration>0:45</duration>
<links>
<link href='http://media.denog.de/meetings/denog7/11-Opening.pdf'>
Slides</link>
</links>
<persons>
<person>DENOG Orga</person>
</persons>
</event>
<event guid="3d7c3af0-7e31-11e5-b91e-b58ad65570d5" id="3">
<date>2015-10-29T13:45:00+01:00</date>
<room>DENOG</room>
<title>Network Automation and Programmability</title>
<start>13:45</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>Automation is about optimizing and standardizing
your current network workflows to meet increasing demand
and provide context to network changes. Why Programmability
&#226;&#8364;&#8220; A combination of the emergence of
Software Defined Networking, coupled with Service Providers
requirement to innovate at their own pace, has driven the
need for vendors to provide tools and capabilities to
extend the network platforms.</abstract>
<persons>
<person>Peter Sievers, Juniper Networks</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/11-Sievers-Network_Automation_and_Programmability.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c3c13-7e31-11e5-b91e-d53e0c381d65" id="4">
<date>2015-10-29T14:15:00+01:00</date>
<room>DENOG</room>
<title>Buffering Sucks</title>
<start>14:15</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>Current status of Peering, Interconnection,
Regulation, CDN Netneutralitiy. How you can help to
minimize buffering and make your end-customer happy. Update
of Init7 vs. the Big Ones. Why we do it. Status of the
interconnection case pending at the Swiss
regulator.</abstract>
<persons>
<person>Fredy Künzler, Init7</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/12-Kuenzler-Buffering_Sucks.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c3d2c-7e31-11e5-b91e-cbbc45212113" id="5">
<date>2015-10-29T14:45:00+01:00</date>
<room>DENOG</room>
<title>Lightning Talks</title>
<start>14:45</start>
<type>lecture</type>
<duration>0:15</duration>
<links>
<link href='http://media.denog.de/meetings/denog7/13.1-A10_DDoS_Thunder_TPS_MVA_DENOG.pdf'>
Slides - A10</link>
<link href='http://media.denog.de/meetings/denog7/13.2-Axians%20Corporate_Okt-%202015_ENG.pdf'>
Slides - Axians</link>
</links>
</event>
<event guid="3d7c3f51-7e31-11e5-b91e-e74da05edcc2" id="7">
<date>2015-10-29T16:00:00+01:00</date>
<room>DENOG</room>
<title>Evolution of Ethernet Speeds</title>
<start>16:00</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>In this presentations we'll talk about the latest
Ethernet developments that are bringing a variety of new
technology to the market for different applications with
speeds ranging from 2.5 GE to 400 GE. We'll take a look at
the new 2.5 GE, 5 GE and 25 GE speeds, 2nd generation 40 GE
and 100 GE, 400 GE and what's possible in the
future.</abstract>
<persons>
<person>Greg Hankins, Alacatel Lucent</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/14-Hankins-Evolution_of_Ethernet_Speeds.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c4060-7e31-11e5-b91e-c23ca85e9bc3" id="8">
<date>2015-10-29T16:30:00+01:00</date>
<room>DENOG</room>
<title>Peering DB 2.0</title>
<start>16:30</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>Overview and demo of the new 2.0 API - How to
mirror all PDB data locally and integrate it with your own
application - Examples and use cases for building
automation from said data</abstract>
<persons>
<person>Arnold Nipper</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/15-Nipper-Peering_DB_2.0.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c416e-7e31-11e5-b91e-f1d2b07f83cb" id="9">
<date>2015-10-29T17:00:00+01:00</date>
<room>DENOG</room>
<title>IP-Fabrics - Datacenter Networks</title>
<start>17:00</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>The layer 2 design paradigmas do not longer scale
with webscale data centers, so this talk will give a short
introduction why that is and explain the blue print of
IP-Fabrics, the design used at facebook, google and other
players in that field.</abstract>
<persons>
<person>Tom Eichhorn, SysEleven GmbH</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/16-Eichhorn-IP-Fabrics_-_Datacenter_Networks.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c4272-7e31-11e5-b91e-aaaeb62766e3" id="10">
<date>2015-10-29T17:30:00+01:00</date>
<room>DENOG</room>
<title>Freie Endgerätewahl</title>
<start>17:30</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>Die Abschaffung des Routerzwangs hin zu einer
freien Endgerätewahl ist ein wichtiger Schritt
auf dem Weg zu einer freiheitlichen
Informationsgesellschaft. In den letzten Jahren hat sich
ein Bündnis aus deutschen
Endgeräteherstellern zusammengefunden, um die
logische Konsequenz aus der Liberalisierung des
Telekommunikationsmarktes in die deutsche Gesetzgebung
einfließen zu lassen. Dabei geht es aber nicht
nur um die Endverbraucher, sondern auch um die
Stärkung der Innovationsfähigkeit der
deutschen IT-Branche.</abstract>
<persons>
<person>Simon Kissel, Viprinet</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/17-Kissel-Free_Choice_Of_CPEs.pdf'>
Slides</link>
</links>
</event>
</room>
</day>
<day date="2015-10-30" index="2">
<room name="DENOG">
<event guid="3d7c4392-7e31-11e5-b91e-c28a32b6a1be" id="11">
<date>2015-10-30T09:00:00+01:00</date>
<room>DENOG</room>
<title>Lightning Talks</title>
<start>09:00</start>
<type>lecture</type>
<duration>0:30</duration>
<links>
<link href='http://media.denog.de/meetings/denog7/21.1-2015-10-30-DENOG-ALU-LightningTalk.pdf'>
Slides - Alcatel Lucent</link>
<link href='http://media.denog.de/meetings/denog7/21.2-DENOG7_Welcome_Message_from_the_Hosts_v2_16to9.pdf'>
Slides - ecix</link>
<link href='http://media.denog.de/meetings/denog7/21.3-DNS_Trials_and_Tribulations_DENOG_2015_RW01.pdf'>
Slides - nominum</link>
<link href='http://media.denog.de/meetings/denog7/21.4-e-wt-20151028-denog-esp8266.pdf'>
Slides - Tremmel</link>
</links>
</event>
<event guid="3d7c44a2-7e31-11e5-b91e-8554bed95b63" id="12">
<date>2015-10-30T09:30:00+01:00</date>
<room>DENOG</room>
<title>DE-CIX Update</title>
<start>09:30</start>
<type>lecture</type>
<duration>0:30</duration>
<persons>
<person>Wolfgang Tremmel, DE-CIX</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/22-Tremmel-DE-CIX_Update.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c45af-7e31-11e5-b91e-84b7d9780b35" id="13">
<date>2015-10-30T10:00:00+01:00</date>
<room>DENOG</room>
<title>FFO - Fracking Fiber Optics</title>
<start>10:00</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>LC plugs are not the only ones now that we have
QSFP+. Should you use MPO or MTP. What about ST, LC, SC,
E2000 or the new LC Uniboot plugs ? What are the
compromises and benefits of each solution. Did you know
that polarity in optical MPO matters ? And why can the
polish of a plug cause headache during on-site
installation. Thomas will give an overview of the
connectors and fibre options in the datacentre now we have
40G und 100G as a standard. Especially for these parallel
transmission applications you should consider to rethink
your wiring if you don't want to get stuck in
troubleshooting your links. Finally some practical examples
of broken optical components after and during field
installation &#194;&#173; real cases which happen every day
even in 2015 were fiber optic is commodity. And one more
thing!</abstract>
<persons>
<person>Thomas Weible, Flexoptix</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/23-Weible-FFO_-_Fracking_Fiber_Optics.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c46bd-7e31-11e5-b91e-d5b71048004c" id="14">
<date>2015-10-30T11:00:00+01:00</date>
<room>DENOG</room>
<title>Multi-Domain VPN</title>
<start>11:00</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>In the context of national research networks we
rolled out an europe-wide logical infrastructure to support
the rapid implementation of multi-domain VPNs, called
MDVPN. The framework we used for this is
"Carrier-support-carrier for hierarchical VPNs", as
documented in RFC4364 Option c. While this is not a brand
new technology, according to vendor statements, nobody
seems to have implemented this on a larger scale. An
overview will be given on the technology and architecture
and use cases be discussed. Special focus will be put on
security concerns raised by the community. Since vendors
don't support filters that prevent potential intrusion into
local VPNs, a netflow-based detector was developed that is
able to detect such attacks. In addition an openflow based
solution for filtering is under development in cooperation
with a switch vendor. As of today ca. 500 PEs take part in
the MDVPN domain allowing VPN services such as L2 P2P,
VPLS, EVPN, L3 VPNs. In the coming year, a small
office-router will be developed that allows rapid
connection to the MDVPN cloud</abstract>
<persons>
<person>Thomas Schmid, DFN</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/24-Schmid-Multi-Domain_VPN.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c47ca-7e31-11e5-b91e-e9254c67ce68" id="15">
<date>2015-10-30T11:30:00+01:00</date>
<room>DENOG</room>
<title>Your Cache/Recursive DNS server also requires your
attention</title>
<start>11:30</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>Nowadays, most of the DDoS attacks making the
news are targeted against Authoritative DNS servers. While
those attacks are the easiest to realise, as Authoritative
DNS servers are public, it is important not to lose track
of Cache/Recursive servers (As few PCs or laptops within
the LAN can take it down very easily if they are infested
by botnets). This presentation will focus on the
Recursive/Cache part of DNS Security, and will take as
example a specific attack that EfficientIP has named "Sloth
Domain Attack", to illustrate how vulnerable a
Recursive/Cache server is, and how easy it is to bring it
down. We will also discuss some ideas and the necessity to
take a new approach when dealing with DNS attacks on
Cache/Recursive servers.</abstract>
<persons>
<person>Nicolas Cartron, EfficientIP</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/25-Cartron-EfficientIP_DNS_Recursive_needs_attention_too.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c48da-7e31-11e5-b91e-9474b6574220" id="16">
<date>2015-10-30T12:00:00+01:00</date>
<room>DENOG</room>
<title>Securing Data in Motion</title>
<start>12:00</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>Driven by the relentless news about cyber
threats, security breaches and data loss, law makers and
regulators are increasingly engaged in implementing new
legal frameworks and defining new obligations for data
security. Prominent within recent legal developments has
been a focus on network encryption. Our presentation
provides an introduction to network encryption technology
&#226;&#8364;&#8220; including encryption algorithms, key
management and authentication &#226;&#8364;&#8220; and
introduces the concept of post quantum security. We clarify
the most prominent myths of network encryption and evaluate
the applicability of encryption technology on different
network layers.</abstract>
<persons>
<person>Ulrich Schlegel, ADVA Optical Networking</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/26-Schlegel-Securing_Data_in_Motion.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c49e7-7e31-11e5-b91e-b21625562c7b" id="17">
<date>2015-10-30T12:30:00+01:00</date>
<room>DENOG</room>
<title>Aus der sys4 Projektwerkstatt</title>
<start>12:30</start>
<type>lecture</type>
<duration>0:30</duration>
<persons>
<person>Patrick Ben Koetter, sys4 AG</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/27-Koetter-sys4_Projektku%CC%88che.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c4afe-7e31-11e5-b91e-bc23387b45d0" id="18">
<date>2015-10-30T13:00:00+01:00</date>
<room>DENOG</room>
<title>Reliable and Secure DHCPv6 Expected</title>
<start>13:00</start>
<type>lecture</type>
<duration>0:30</duration>
<abstract>Many organizations have high hopes with regard to
DHCPv6 as it might allow them to deploy IPv6 based on an
operations model they usually have long-time experience
with. There's one (not so) minor problem though: DHCPv6 is
a very different beast from its IPv4 equivalent. This talk
covers the main DHCPv6 specifics from a design and security
perspective and discusses what is needed to deploy it in a
reliable and secure way.</abstract>
<persons>
<person>Christopher Werny, ERNW GmbH</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/28-Werny-Reliable_and_Secure_DHCPv6_Expected.pdf'>
Slides</link>
</links>
</event>
<event guid="3d7c4c02-7e31-11e5-b91e-85108dfbca24" id="19">
<date>2015-10-30T13:30:00+01:00</date>
<room>DENOG</room>
<title>Closing Talk</title>
<start>13:30</start>
<type>lecture</type>
<duration>0:15</duration>
<persons>
<person>DENOG Orga</person>
</persons>
<links>
<link href='http://media.denog.de/meetings/denog7/29-Closing_Notes.pdf'>
Slides</link>
</links>
</event>
</room>
</day>
</schedule>