commit 27bf0ee10b24f5540ec0b45c2b622cfc95fc5725 Author: Jaap Laging Date: Fri Jan 6 17:03:15 2023 +0100 Hopelijk werkt dit diff --git a/404.html b/404.html new file mode 100644 index 0000000..c472b4e --- /dev/null +++ b/404.html @@ -0,0 +1,24 @@ +--- +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..7e7dd78 --- /dev/null +++ b/Gemfile @@ -0,0 +1,38 @@ +source "https://rubygems.org" + +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +gem "jekyll", "~> 3.9.0" + +# This is the default theme for new Jekyll sites. You may change this to anything you like. +gem "minima", "~> 2.0" + +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins + +# If you have any plugins, put them here! +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.6" +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", "~> 1.2" + gem "tzinfo-data" +end + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.0", :platforms => [:mingw, :x64_mingw, :mswin] + +# kramdown v2 ships without the gfm parser by default. If you're using +# kramdown v1, comment out this line. +gem "kramdown-parser-gfm" + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..2077299 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,76 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) + colorator (1.1.0) + concurrent-ruby (1.1.10) + em-websocket (0.5.3) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0) + eventmachine (1.2.7) + ffi (1.15.5) + forwardable-extended (2.6.0) + http_parser.rb (0.8.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + jekyll (3.9.2) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 0.7) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 2.0) + kramdown (>= 1.17, < 3) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (>= 1.7, < 4) + safe_yaml (~> 1.0) + jekyll-feed (0.17.0) + jekyll (>= 3.7, < 5.0) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) + jekyll-seo-tag (2.8.0) + jekyll (>= 3.8, < 5.0) + jekyll-watch (2.2.1) + listen (~> 3.0) + kramdown (2.4.0) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + liquid (4.0.3) + listen (3.7.1) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + mercenary (0.3.6) + minima (2.5.1) + jekyll (>= 3.5, < 5.0) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (5.0.1) + rb-fsevent (0.11.2) + rb-inotify (0.10.1) + ffi (~> 1.0) + rexml (3.2.5) + rouge (3.30.0) + safe_yaml (1.0.5) + sass (3.7.4) + listen (~> 3.0) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + jekyll (~> 3.9.0) + jekyll-feed (~> 0.6) + kramdown-parser-gfm + minima (~> 2.0) + tzinfo (~> 1.2) + tzinfo-data + wdm (~> 0.1.0) + +BUNDLED WITH + 2.3.5 diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..f91333e --- /dev/null +++ b/_config.yml @@ -0,0 +1,43 @@ +# Welcome to Jekyll! +# +# This config file is meant for settings that affect your whole blog, values +# which you are expected to set up once and rarely edit after that. If you find +# yourself editing this file very often, consider using Jekyll's data files +# feature for the data you need to update frequently. +# +# For technical reasons, this file is *NOT* reloaded automatically when you use +# 'bundle exec jekyll serve'. If you change this file, please restart the server process. + +# Site settings +# These are used to personalize your new site. If you look in the HTML files, +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. +# You can create any custom variable you would like, and they will be accessible +# in the templates via {{ site.myvariable }}. +title: Your awesome title +email: your-email@example.com +description: >- # this means to ignore newlines until "baseurl:" + Write an awesome description for your new site here. You can edit this + line in _config.yml. It will appear in your document head meta (for + Google search results) and in your feed.xml site description. +baseurl: "" # the subpath of your site, e.g. /blog +url: "" # the base hostname & protocol for your site, e.g. http://example.com +twitter_username: jekyllrb +github_username: jekyll + +# Build settings +markdown: kramdown +theme: minima +plugins: + - jekyll-feed + +# Exclude from processing. +# The following items will not be processed, by default. Create a custom list +# to override the default setting. +# exclude: +# - Gemfile +# - Gemfile.lock +# - node_modules +# - vendor/bundle/ +# - vendor/cache/ +# - vendor/gems/ +# - vendor/ruby/ diff --git a/_posts/2023-01-06-welcome-to-jekyll.markdown b/_posts/2023-01-06-welcome-to-jekyll.markdown new file mode 100644 index 0000000..e8ba80f --- /dev/null +++ b/_posts/2023-01-06-welcome-to-jekyll.markdown @@ -0,0 +1,25 @@ +--- +layout: post +title: "Welcome to Jekyll!" +date: 2023-01-06 16:42:59 +0100 +categories: jekyll update +--- +You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated. + +To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works. + +Jekyll also offers powerful support for code snippets: + +{% highlight ruby %} +def print_hi(name) + puts "Hi, #{name}" +end +print_hi('Tom') +#=> prints 'Hi, Tom' to STDOUT. +{% endhighlight %} + +Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk]. + +[jekyll-docs]: https://jekyllrb.com/docs/home +[jekyll-gh]: https://github.com/jekyll/jekyll +[jekyll-talk]: https://talk.jekyllrb.com/ diff --git a/about.md b/about.md new file mode 100644 index 0000000..8b4e0b2 --- /dev/null +++ b/about.md @@ -0,0 +1,18 @@ +--- +layout: page +title: About +permalink: /about/ +--- + +This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) + +You can find the source code for Minima at GitHub: +[jekyll][jekyll-organization] / +[minima](https://github.com/jekyll/minima) + +You can find the source code for Jekyll at GitHub: +[jekyll][jekyll-organization] / +[jekyll](https://github.com/jekyll/jekyll) + + +[jekyll-organization]: https://github.com/jekyll diff --git a/assest/Flesch logo.png b/assest/Flesch logo.png new file mode 100644 index 0000000..b5a18eb Binary files /dev/null and b/assest/Flesch logo.png differ diff --git a/assest/Headerimg.png b/assest/Headerimg.png new file mode 100644 index 0000000..c59f023 Binary files /dev/null and b/assest/Headerimg.png differ diff --git a/assest/LUF logo.png b/assest/LUF logo.png new file mode 100644 index 0000000..d6b2ffe Binary files /dev/null and b/assest/LUF logo.png differ diff --git a/assest/Logo Symposium.svg b/assest/Logo Symposium.svg new file mode 100644 index 0000000..7ad217a --- /dev/null +++ b/assest/Logo Symposium.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assest/Symposiom logo.png b/assest/Symposiom logo.png new file mode 100644 index 0000000..cf230b7 Binary files /dev/null and b/assest/Symposiom logo.png differ diff --git a/assest/Test.jpg b/assest/Test.jpg new file mode 100644 index 0000000..1a1e5f1 Binary files /dev/null and b/assest/Test.jpg differ diff --git a/assest/Uni Leiden logo.png b/assest/Uni Leiden logo.png new file mode 100644 index 0000000..321449d Binary files /dev/null and b/assest/Uni Leiden logo.png differ diff --git a/assest/favicon.ico b/assest/favicon.ico new file mode 100644 index 0000000..1530388 Binary files /dev/null and b/assest/favicon.ico differ diff --git a/assest/sprekers/Frits.png b/assest/sprekers/Frits.png new file mode 100644 index 0000000..882a67e Binary files /dev/null and b/assest/sprekers/Frits.png differ diff --git a/assest/sprekers/Honing.png b/assest/sprekers/Honing.png new file mode 100644 index 0000000..32d6989 Binary files /dev/null and b/assest/sprekers/Honing.png differ diff --git a/assest/sprekers/JamesGrime.png b/assest/sprekers/JamesGrime.png new file mode 100644 index 0000000..64b3625 Binary files /dev/null and b/assest/sprekers/JamesGrime.png differ diff --git a/assest/sprekers/UlrikeFelt.png b/assest/sprekers/UlrikeFelt.png new file mode 100644 index 0000000..a401089 Binary files /dev/null and b/assest/sprekers/UlrikeFelt.png differ diff --git a/assest/sprekers/Vincent Icke.png b/assest/sprekers/Vincent Icke.png new file mode 100644 index 0000000..f1c7e92 Binary files /dev/null and b/assest/sprekers/Vincent Icke.png differ diff --git a/css/master.css b/css/master.css new file mode 100644 index 0000000..87fe1e6 --- /dev/null +++ b/css/master.css @@ -0,0 +1,421 @@ +*{ + margin:0; + padding:0; +} + +html{ + scroll-behavior: smooth; +} + +body{ + background-color: #013871; +} + +.nav-flex-container{ + display:flex; + flex-wrap: nowrap; + flex-direction: row-reverse; + width: 100%; + background-color: #f6fdff; + position: fixed; + z-index: +1; +} + +.nav-flex-containerlogo{ + display:flex; + flex-wrap: nowrap; + width: 10%; + opacity: 100%; + position: fixed; + z-index: +2; +} + +.navimg{ + float: inherit; + width: 150px; + height: auto; + padding-top: 10px; + padding-left: 20px; + padding-right: 20px; +} + +a{ + width: 160px; + height: auto; + margin: 10px; + text-align: center; + line-height: 50px; + font-size: 150%; + border-radius: 100px; +} + +a, a:active, a:visited{ + text-decoration: none; + color:black; + transition: 0.3s; + } + +a:hover{ + background-color:#c0d3e3; + color: black; +} + +header{ + height: 100vh; + background: url(..//assest/Headerimg.png) no-repeat center center fixed; + background-size: cover; + position: relative; + } + +header > h1{ + color: #c0d3e3; + position:absolute; + text-align: center; + top:40%; + left: 50%; + font-size: 300%; + transform: translateX(-50%); + } + +header > a{ + position:absolute; + top:80%; + left:50%; + width:150px; + padding: 20px 40px; + font-size: 250%; + background-color: #003773; + border:none; + border-radius:5px; + transform: translateX(-50%); + } + +.main-flex-container{ + display:flex; + flex-direction:column; + padding-top: 100px; + margin-left: 150px; + margin-right: 150px; +} + +article { + width: 100%; + border-radius: 50px; + margin-left: auto; + margin-right: auto; + margin-top: 25px; + margin-bottom: 25px; + padding: 40px; + background-color:#c0d3e3; + text-align: center; + scroll-margin-top: 110px; +} + +.speakers{ + width: 100%; +} + +.textWrapper{ + display:grid; + grid-template-columns: 1fr 1fr; + padding:40px; + grid-column-gap: 10%; +} + +.speakImgWrapper{ + display:grid; + grid-template-columns: 1fr 1fr 1fr 1fr 1fr; + grid-column-gap: 40px; +} + +.speakImg{ + width: 100%; + height: auto; + align-items: center; + justify-content: center; +} + +ul > li > h2{ + width: 100%; + padding-bottom: 40px; +} + + +article > h1{ + padding-bottom: 20px; + font-size: 250%; +} + +article > h2{ + padding-bottom: 20px; + font-size: 200%; +} + +article > p{ + padding: 10px; + font-size: 150%; +} + +p > a{ + width: auto; + height: auto; + margin: 0px; + font-size: 100%; + border-radius: 0px; +} + +.cardWrapper{ + display:grid; + grid-template-columns: 1fr 1fr 1fr; + grid-row-gap: 40px; + grid-column-gap: 40px; + padding:40px; + height: auto; + } + +.card{ + list-style:none; + border-radius: 5px; + background-repeat: no-repeat; + background-size: contain; + } + +.img{ + float: inherit; + width: 400px; + height: auto; + padding-left: 20px; + padding-right: 20px; +} + +.sponsimg{ + float: inherit; + scale: 150%; + width: 200px; + height: auto; + padding-left: 20px; + padding-right: 20px; + padding-top: 20px; +} + +.container{ + width: 40%; + padding:20px; +} + +footer{ + font-size: 100%; +} + +@media only screen and (min-width:601px) and (max-width:1000px){ + +.nav-flex-container{ + flex-direction: column; + align-items:center; + justify-content:flex-start; + position: absolute; +} + +.nav-flex-containerlogo{ + position: absolute; +} + +.navimg{ + width: 150px; +} + +header > h1{ + top:55%; + font-size: 200%; + } + +header > a{ + width:75px; + font-size: 150%; + } + +.main-flex-container{ + padding-top: 75px; + margin-left: 20px; + margin-right: 20px; +} + +article { + scroll-margin-top: 40px; + width: 80%; +} + +.speakers{ + width: auto; + margin-top: 35vh ; +} + +.textWrapper{ + grid-template-columns: 1fr; + grid-row-gap: 0px; + padding:0px; +} + +.speakImgWrapper{ + grid-template-columns: 1fr; +} + +ul > li > h2{ + width: 100%; + padding-top: 40px; + padding-bottom: 20px; +} + +.speakImg{ + width: 50%; +} + +.cardWrapper{ + grid-template-columns: 1fr; + grid-gap: 20px; + padding:0px; + transform: translateX(5.5%); + } + +} + +@media only screen and (max-width:600px){ + + .nav-flex-container{ + flex-direction: column; + align-items:center; + justify-content:flex-start; + position: absolute; + } + + .nav-flex-containerlogo{ + position: absolute; + } + + .navimg{ + width: 75px; + } + + a{ + width: 100px; + height: auto; + margin: 10px; + text-align: center; + line-height: 25px; + font-size: 120%; + border-radius: 100px; + } + + header > h1{ + width: 80%; + top:40vh; + font-size: 120%; + } + + header > a{ + width:75px; + font-size: 150%; + } + +.main-flex-container{ + width: 80vw; + display:flex; + flex-direction:column; + padding: 10px; + + margin-left: 0px; + margin-right: 0px; +} + +.main-flex-container > article { + padding: 20px; +} + +.speakers{ + margin-top: 35vh; + width: 100%; +} + +.textWrapper{ + display:grid; + grid-template-columns: 1fr; + padding:10px; + grid-column-gap: 10%; +} + +ul > li > article{ + width: 60vw; +} + +.speakImgWrapper{ + display:grid; + grid-template-columns: 1fr; + grid-column-gap: 40px; +} + +.speakImg{ + width: 100%; + height: auto; + align-items: center; + justify-content: center; +} + +ul > li > h2{ + width: 100%; + padding-bottom: 20px; +} + + +article > h1{ + font-size: 150%; +} + +article > h2{ + font-size: 120%; +} + +article > p{ + padding: 10px; + font-size: 75%; +} + +p > a{ + width: auto; + height: auto; + margin: 0px; + font-size: 100%; + border-radius: 0px; +} + +.cardWrapper{ + display:grid; + grid-template-columns: 1fr; + } + +.card{ + list-style:none; + border-radius: 5px; + background-repeat: no-repeat; + background-size: contain; + } + +.sponsimg{ + float: inherit; + scale: 100%; + width: 200px; + height: auto; + padding-left: 20px; + padding-right: 20px; + padding-top: 20px; + transform: translateX(-15%); +} + +.container{ + width: 100%; + padding:20px; +} + +footer{ + font-size: 70%; +} +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..365cd29 --- /dev/null +++ b/index.html @@ -0,0 +1,86 @@ + + + + + + + + + + Symposium + + + + + +
+

Captivated by Time
+ How Time Affects All Sciences
+ 15th of February 2023 +

+ Sign up +
+
+
+ +

De Leidsche Flesch Symposium

+

This is a biannual symposium organised by the study association for physics, astronomy, mathematics and computer science in Leiden, De Leidsche Flesch. At this symposium, this time held on account of the 100th year anniversary of the association, more than ten speakers from all fields of science will tell us all about the field of interest. At Scheltema in Leiden we will experience a day full of talks, science and curiosity.

+
+ + + +
+ +

Contact

+

For questions please send an email to: symposium@deleidscheflesch.nl
+ Location: Scheltema +

+
+
+

Sponsors

+

This beautiful symposium would not be possible without the financial support of the following organisations

+
    +
  • + de leidsche Flesch logo +
  • +
  • + Leiden University: Faculty of Science logo +
  • +
  • + Leids Universiteits Fonds logo +
  • +
+
+
+

Website by Mark van Muijen

+
+
+ + + \ No newline at end of file diff --git a/index.md b/index.md new file mode 100644 index 0000000..0671507 --- /dev/null +++ b/index.md @@ -0,0 +1,6 @@ +--- +# Feel free to add content and custom Front Matter to this file. +# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults + +layout: home +--- diff --git a/js/main.js b/js/main.js new file mode 100644 index 0000000..e69de29 diff --git a/paginas/Inschrijven.html b/paginas/Inschrijven.html new file mode 100644 index 0000000..2462ecf --- /dev/null +++ b/paginas/Inschrijven.html @@ -0,0 +1,54 @@ + + + + + + + + + + Symposium + + + + + +
+
+ +

Signing up

+

If you are enthusiastic to attend our symposium on the 15th of February, you can sign up via this link . +
Attending the symposium is completely free and lunch will be provided. Nevertheless, signing up is a requirement. +

+
+ +
+

Sponsors

+

This beautiful symposium would not be possible without the financial support of the following organisations

+
    +
  • + de leidsche Flesch logo +
  • +
  • + Leiden University: Faculty of Science logo +
  • +
  • + Leids Universiteits Fonds logo +
  • +
+
+
+

Website by Mark van Muijen

+
+
+ + \ No newline at end of file diff --git a/paginas/Programma.html b/paginas/Programma.html new file mode 100644 index 0000000..7ab7223 --- /dev/null +++ b/paginas/Programma.html @@ -0,0 +1,55 @@ + + + + + + + + + + Symposium + + + + + +
+
+ +

Programme

+

The day of our symposium is divided into two tracks: a mathematics and computer science focused track; and a physics and astronomy focused track. However, there are lectures that both tracks have together. Walk-in starts at 9:30 and the first lecture starts at 10:00. The day will be completed with a joint lecture that ends at 17:00. After a long day of lectures there is a possibility to move back with us to “our” Snellius where dinner will be served, and where we can talk the day through while enjoying something to drink and eat. +
+
+ For more information about the content of our programme please see “Speakers”. +

+
+
+

Sponsors

+

This beautiful symposium would not be possible without the financial support of the following organisations

+
    +
  • + de leidsche Flesch logo +
  • +
  • + Leiden University: Faculty of Science logo +
  • +
  • + Leids Universiteits Fonds logo +
  • +
+
+
+

Website by Mark van Muijen

+
+
+ + \ No newline at end of file diff --git a/paginas/Sprekers.html b/paginas/Sprekers.html new file mode 100644 index 0000000..0171422 --- /dev/null +++ b/paginas/Sprekers.html @@ -0,0 +1,138 @@ + + + + + + + + + + Symposium + + + + + +
+
+ +
    +
  • +

    Prof. dr. Vincent Iche

    + + speaker 1 + +
  • +
  • +

    Dr. Frits Veerman

    + + speaker 2 + +
  • +
  • +

    Prof. dr. Henkjan Honing

    + + speaker 3 + +
  • +
  • +

    Prof. dr. Ulrike Felt

    + + speaker 4 + +
  • +
  • +

    Dr. James Grime

    + + speaker 5 + +
  • +
+
+ +
+ +

Prof. dr. Vincent Icke - He is one of few people in the Netherlands that is not only an exceptional lecturer and researcher, but also one of the most famous Dutch scientists.

+

At the moment he is an emeritus professor of theoretical astronomy at Leiden University, the institute where he earned his PhD in 1972 with a thesis on the formation of galaxies in clusters. He continued his research for several years at prestigious institutes for astrophysics at Cambridge University and Caltech.

+ + Besides his academic work he is also an artist and he is committed to the popularisation of science with TV performances and books like “Reisbureau Einstein” and “Licht. Tussen waarheid en wetenschap”.,

+ + Prof. dr. Icke will be a speaker of the Physics and Astronomy track. +

+
+
+ +

Dr. Frits Veerman - He is an expert in the field of dynamical systems and as lecturer of several mathematics courses, like an undergraduate course on multivariable calculus and the graduate course “Introduction to Dynamical Systems”, he is a familiar face for mathematics students at Leiden University.

+

After his PhD in Leiden he worked as a postdoc at the renowned Centre of Mathematical Biology in Oxford. After postdoctoral research in Edinburgh and being a Humboldt Research Fellow in Heidelberg he returned to Leiden, where he is currently an assistant professor.

+ + At the moment he is mainly occupied with research in mathematical biology, an exciting interface of applied analysis and theoretical biology. With his expertise he is a suitable speaker for this event and a great addition to the other ones that we will announce in the coming weeks.

+ + Dr. Frits Veerman will be a speaker of the Mathematics and Computer Science track. +

+
+
+ +

Prof. dr. Henkjan Honing - He is a pioneer in the field of music cognition, an interdisciplinary field of study that looks into the role of perception, emotion, memory and expectation when listening to music. Honing is especially interested in what musicality is and can be; both in humans and animals.

+

After obtaining his PhD from the City University in London, he started specialising in computational modelling music cognition. He was granted a Distinguished NIAS Lorentz fellowship for his work. In 2014 he became full professor at the Institute of Logic, Language and Computation in Amsterdam. Moreover, he was elected to be a member of the Royal Netherlands Academy of Arts and Sciences. + + Beside lots of scientific publications, he has also published several books for the general public. In “Aap slaat maat. Op zoek naar de oorsprong van muzikaliteit bij mens en dier.” he points out surprising insights in the musicality of animals.

+ + Prof. dr. Henkjan Honing will be a speaker of the mathematics and computer science track.

+

+
+
+ +

Prof. dr. Ulrike Felt - She has a broad interest in science and society. She played a big role in international research projects, for example being president of European Association for the Study of Science and Technology (EASST, 2017-2021).
Furthermore, she has been a visiting professor at numerous universities among them: ETH Zürich and STS group at Harvard University.

+

In 1983 she obtained her PhD in theoretical physics from the university of Vienna. She went to work as a member of the interdisciplinary research team at CERN that analysed the societal, political and scientific aspect of this huge European collaboration. In 1988 Ulrike Felt returned to Vienna, to the Helga Nowotny Institute of Philosophy of Science and Science Research. About ten years later she received her habilitation in Sociology of Science.

+ + Prof. dr. Felt is very involved in societal discussion about the role of science and technology in the contemporary world. On top of that, she is active in the field of European and Austrian policy advice.

+ + Prof. dr. Ulrike Felt will be a speaker for both tracks. +

+
+
+ +

Dr. James Grime - He is broadly known for his appearances in the most famous maths Youtube channel, Numberphile.
+ Dr. Grime is a mathematician with a great passion for maths communication and promotion of mathematics. Therefore he spends most of his time touring the world to give talks or on Youtube reaching millions of people. +

+

James studied mathematics at Lancaster university. After obtaining his PhD from York university, he worked in research in combinatorics and group theory. + Then he joined the Millennium Mathematics Project from the University of Cambridge and he ran The Enigma Project on their behalf to bring mathematics to life.

+ + Besides his very successful Numberphile videos with which he reaches millions of people, James also reaches 12,000 people of all ages in the numerous talks he gives.

+ + If you want to know more about James Grime: check out his Youtube channel "singingbanana"; his Numberphile videos; or just google him and enjoy all the other talks that are available.

+ + Dr. James Grime will be a speaker for both tracks. +

+
+ +
+

Sponsors

+

This beautiful symposium would not be possible without the financial support of the following organisations

+
    +
  • + de leidsche Flesch logo +
  • +
  • + Leiden University: Faculty of Science logo +
  • +
  • + Leids Universiteits Fonds logo +
  • +
+
+ +
+ + \ No newline at end of file