blob: 7ca9cacfc8f909ba01f04c97d05a25313563c2c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{% extends 'website/templates/base.html' %}
{% load static%}
{% block sidebar %}
{% endblock %}
{% block current %}
Invited Speakers
{% endblock %}
{% block content %}
<h3>Invited Speakers</h3>
<div id="sponsors">
<div class="row">
<div class="col-md-6">
<img width="150" src="{% static 'website/images/maciej.png' %}" style="border-radius:30px;">
<hr>
<p align="justify">
<a href="http://baroquesoftware.com/" traget="_blank">Maciej</a> is a freelancer working mostly on <a href="http://pypy.org/" target="_blank">PyPy</a> for the past several years. He's a core developer since 2006, working on all kinds of parts in the entire codebase including JIT, GC and assembler backends. Maciej has been going to many conferences, advertising PyPy to a broader audience for the past several years, including a <a href="http://pyvideo.org/video/266/pycon-2010--keynote--state-of-pypy" target="_blank">keynote at Pycon 2010</a>. He's also the main maintainer of jitviewer, a tool for analyzing performance of your python programs under PyPy.
</p>
<hr>
<a href="https://twitter.com/fijall" target="_blank">
<img width="30" height="30" src="{% static 'website/images/twitter.png' %}">
</a>
<a href="https://github.com/fijal" target="_blank">
<img width="30" height="30" src="{% static 'website/images/git.png' %}">
</a>
</div> <!-- /.col -->
<div class="col-md-6">
<img width="150" src="{% static 'website/images/ajith.jpeg' %}" style="border-radius:30px;">
<hr>
<p align="justify">
<b>Dr. B. P. Ajith Kumar</b>, a scientist working with the <a href="http://www.iuac.res.in/" target="_blank">IUAC</a>. His main area of work is development of instrumentation for particle accelerators and associated experiments, including radio-frequency accelerating structures, control and data acquisition systems, digital and radio frequency electronics modules. He initiated the Phoenix / <a href="http://expeyes.in/">expEYES</a> project. ExpEYES is currently the cheapest educational system to teach science.
</p>
<hr>
<a href="http://expeyes.in/" target="_blank">
<img width="30" height="30" src="{% static 'website/images/exp.png' %}">
</a>
<a href="https://github.com/expeyes" target="_blank">
<img width="30" height="30" src="{% static 'website/images/git.png' %}">
</a>
</div> <!-- /.col -->
</div> <!-- /.row -->
</div> <!-- /#sponsors -->
{% endblock %}
|