blob: f3e9be5ac6b0608c1b11b49ea4fdc90528c872d1 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
{% extends 'website/templates/base.html' %}
{% load static%}
{% block sidebar %}
{% endblock %}
{% block current %}
Invited Speakers
{% endblock %}
{% block content %}
<div id="invited-speakers">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="media">
<a class="pull-left" href="#">
<img class="media-object" src="{% static 'website/images/maciej-4.jpg'%}" alt="Maciej Fijałkowski">
</a>
<div class="media-body">
<h4 class="media-heading">Maciej Fijałkowski</h4>
<p align="justify">
Maciej Fijałkowski 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>
<p>
<em>Links:</em>
<a href="http://baroquesoftware.com/" target="_blank"><span class="label label-primary">Website</span></a>
<a href="https://github.com/fijal" target="_blank"><span class="label label-default">Github</span></a>
<a href="https://bitbucket.org/fijal" target="_blank"><span class="label label-primary">Bitbucket</span></a>
<a href="https://twitter.com/fijall" target="_blank"><span class="label label-info">Twitter</span></a>
</p>
</div>
</div> <!-- /.media -->
<hr>
<div class="media">
<a class="pull-left" href="#">
<img class="media-object" src="{% static 'website/images/ajith-4.jpg'%}" alt="Ajith Kumar">
</a>
<div class="media-body">
<h4 class="media-heading">Ajith Kumar</h4>
<p align="justify">
Dr. B. P. Ajith Kumar, 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/" target="_blank">expEYES</a>
project. ExpEYES is currently the cheapest educational
system to teach science.
</p>
<p>
<em>Links:</em>
<a href="http://expeyes.in" target="_blank"><span class="label label-primary">Website</span></a>
</p>
</div>
</div> <!-- /.media -->
<hr>
<div class="media">
<a class="pull-left" href="#">
<img class="media-object" src="{% static 'website/images/romain-4.jpg'%}" alt="Romain Guillebert">
</a>
<div class="media-body">
<h4 class="media-heading">Romain Guillebert</h4>
<p align="justify">
Romain Guillebert holds a Bachelor of Science in Software
Development at IT Carlow (Ireland). In 2010 he worked as a
software engineering intern at EDF Le Havre, he
participated in the 2011 Google Summer of Code on the PyPy
project. At the médialab he is responsible of the software
side of the Trust project where he works on the analysis of
social behaviors in open-source communities.
</p>
<p>
<em>Links:</em>
<a href="https://github.com/rguillebert" target="_blank"><span class="label label-default">Github</span></a>
<a href="https://bitbucket.org/rguillebert" target="_blank"><span class="label label-primary">Bitbucket</span></a>
<a href="https://twitter.com/rguillebert" target="_blank"><span class="label label-info">Twitter</span></a>
</p>
</div>
</div> <!-- /.media -->
</div> <!-- /.col -->
</div><!-- /.row -->
</div> <!-- /#invited-speakers -->
{% endblock %}
|