Team:Warsaw/Team

From 2010.igem.org

(Difference between revisions)
 
(137 intermediate revisions not shown)
Line 1: Line 1:
 +
__NOTOC__
 +
<html>
<html>
<script type="text/javascript">
<script type="text/javascript">
-
ActiveTab='Home';
+
ActiveTab='Team';
</script>
</script>
</html>
</html>
Line 14: Line 16:
<script type="text/javascript">
<script type="text/javascript">
 +
 +
 +
function changeDescription(sender)
 +
{
 +
document.getElementById("description").innerHTML=document.getElementById(sender.id+"_desc").innerHTML;
 +
}
$(document).ready(function(){
$(document).ready(function(){
-
    var zindexnr = 1;
+
 
-
$(".foto").draggable({
+
 
 +
$(".foto").draggable({
start: function(event, ui) {
start: function(event, ui) {
-
zindexnr++;
+
-
var cssObj = { 'z-index' : zindexnr };
+
-
$(this).css(cssObj);
+
                
                
}
}
              
              
});
});
-
         $(".description").draggable({
+
 
-
start: function(event, ui) {
+
        /*Funkcja rozmieszczania fotek. Program wylicza top i left dla kazdego zdjecia tak zeby byly wezlami grida
-
zindexnr++;
+
        potem random rozsiewa je w zadanym promieniu wokol tych wezlow.
-
var cssObj = { 'z-index' : zindexnr };
+
       
-
$(this).css(cssObj);
+
        */
-
             
+
 
-
}
+
        var currtop=-50;
 +
        var currleft=0;
 +
        var currfoto=0;
 +
 
 +
        /* odleglosci wezlow siatki w pionie i poziomie. Mozna zmienic zeby uzyskac wieksze/mniejhsze marginesy. */
 +
 
 +
        var hmargin=160;
 +
        var vmargin=210;
 +
 
 +
 
 +
        /* Kontrolujemy jak bardzo rozrzucic foty w pionie i poziomie */
 +
 
 +
        var hradius=50;
 +
        var vradius=50;  
 +
 
 +
        /* Ustawiamy pudelko z description */
 +
 
 +
         $("#description").each(function(){
 +
 
 +
        var dtop=currtop+2*vmargin;
 +
        var dleft=hmargin;
 +
 
 +
        $(this).css('left' , dleft);
 +
        $(this).css('top' , dtop);
 +
 
 +
        });
 +
 
 +
       
 +
 
 +
 
 +
        $(".foto").each(function(){
 +
 
 +
            $(this).css('width', '120px');
 +
         
 +
            currleft = currleft + hmargin;
 +
         
 +
            if (currfoto%6 == 0)
 +
            {
 +
                currtop = currtop + vmargin;
 +
                currleft = 0;
 +
 
 +
            }
 +
 
 +
       
 +
            if (Math.ceil(Math.random()*2)%2)
 +
                $(this).css('top', currtop+Math.random()*vradius);
 +
            else
 +
                $(this).css('top', currtop-Math.random()*vradius);
 +
     
 +
            if (Math.ceil(Math.random()*2)%2)
 +
                $(this).css('left', currleft-Math.random()*hradius);
 +
            else
 +
                $(this).css('left', currleft-Math.random()*hradius);
 +
 
 +
            if (currfoto == 6)
 +
            {
 +
                currfoto = currfoto + 3;
 +
                currleft = currleft + 3*hmargin;
 +
            }
              
              
-
});
+
            if (currfoto == 12)
-
         $(".foto").each(function(){
+
            {
-
    $(this).css('width' , '120px');
+
                currtop += 30;
-
   
+
            }
-
});
+
 
 +
            currfoto = currfoto+1;
 +
 +
        });
 +
     
 +
        $(".foto").mousedown(function(){
 +
           
 +
            $(this).css('cursor', '-moz-grabbing');
 +
            $(this).css('cursor', '-o-grabbing');          
 +
            $(this).css('cursor', '-webkit-grabbing');
 +
        });
 +
       
 +
        $(".foto").mouseup(function(){
 +
           
 +
            $(this).css('cursor', 'hand');
 +
            $(this).css('cursor', 'pointer');         
 +
        });  
          
          
         $(".foto").mouseover(function(){
         $(".foto").mouseover(function(){
-
    $(this).css('width' , '140px');
+
           
-
   
+
            $(this).css('width', '140px');
-
});
+
            if (!$(this).is('.foto-active'))
 +
                $(this).css('z-index', 1);
 +
 +
        });
 +
 
 +
 
         $(".foto").mouseout(function(){
         $(".foto").mouseout(function(){
-
    $(this).css('width' , '120px');
+
       
 +
            $(this).css('width', '120px');
 +
            if (!$(this).is('.foto-active'))
 +
                $(this).css('z-index', 0);
     
     
});
});
          
          
 +
        $(".foto").click(function(){
 +
   
 +
            changeDescription(this);
 +
 +
 +
            /*To cos podswietla fote przy kliknieciu i kasuje poswietlenie poprzedniej */
 +
 +
            $(".foto-active").css('z-index', 0);
 +
            $(".foto-active").removeClass("foto-active");
 +
       
 +
            $(this).addClass("foto-active");
 +
            $(this).css('z-index', 2);
 +
   
 +
});
         $(".pic").each(function(){
         $(".pic").each(function(){
Line 58: Line 161:
$(".foto").each(function(){
$(".foto").each(function(){
    var rot = Math.random()*30-15+'deg';
    var rot = Math.random()*30-15+'deg';
-
    var left = Math.random()*20+'px';
 
-
    var top = Math.random()*70+'px';
 
-
        $(this).css('-webkit-transform' , 'rotate('+rot+')');
 
-
        $(this).css('-moz-transform' , 'rotate('+rot+')');
 
-
$(this).css('filter', 'progid:DXImageTransform.Microsoft.BasicImage(rotation='+rot+')');
 
-
        $(this).css('top' , left);
+
            /* Marta: jeżeli foty nachodzą na menu, to tylko nieznacznie */
-
        $(this).css('left' , top);
+
    var left = (Math.random()*-60)+'px';
-
$(this).mouseup(function(){
+
   
-
zindexnr++;
+
          /*
-
$(this).css('z-index' , zindexnr);
+
              Marta:
-
    });
+
                    var top = Math.random()*100+'px'; -> zamienione
-
    });
+
                    zdjęcia są w odrobinę większym porządku (jak dla mnie wygląda nawet lepiej),
 +
                    ale przede wszystkim - nie wychodzą poza prawy margines strony
 +
          */
 +
            var top = 0+'px';
 +
 
 +
 
 +
            $(this).css('-webkit-transform' , 'rotate('+rot+')');
 +
            $(this).css('-moz-transform' , 'rotate('+rot+')');
 +
            $(this).css('-o-transform' , 'rotate('+rot+')');
 +
           
 +
            var rotIE=1-Math.random()/4;
 +
 
 +
if (Math.ceil(Math.random()*2)%2)
 +
{
 +
            $(this).css('filter',  "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11="+rotIE+", M12="+(0-(1-rotIE))+", M21="+(1-rotIE)+", M22="+rotIE);
 +
 
 +
            $(this).css('-ms-filter', "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11="+rotIE+", M12="+(0-(1-rotIE))+", M21="+(1-rotIE)+", M22="+rotIE);
 +
}
 +
else
 +
{
 +
$(this).css('filter',  "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11="+rotIE+", M12="+(1-rotIE)+", M21="+(0-(1-rotIE))+", M22="+rotIE);
 +
 
 +
            $(this).css('-ms-filter', "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11="+rotIE+", M12="+(1-rotIE)+", M21="+(0-(1-rotIE))+", M22="+rotIE);
 +
}       
 +
 +
});
 +
 
 +
 
$(".foto").dblclick(function(){
$(".foto").dblclick(function(){
    $(this).css('-webkit-transform' , 'rotate(0)');
    $(this).css('-webkit-transform' , 'rotate(0)');
Line 78: Line 203:
});
});
</script>
</script>
 +
<style type="text/css">
<style type="text/css">
.foto
.foto
{
{
-
    padding: 2px 2px 6px 2px;
+
        padding: 2px 3px 6px 3px;
background: #eee;
background: #eee;
border: 1px solid #fff;
border: 1px solid #fff;
-moz-box-shadow: 0px 2px 15px #333;
-moz-box-shadow: 0px 2px 15px #333;
-
    box-shadow: 0px 2px 15px #333;
+
        box-shadow: 0px 2px 15px #333;
-
    -webkit-box-shadow: 0px 2px 15px #333;
+
        -webkit-box-shadow: 0px 2px 15px #333;
-
position: relative;
+
position: absolute;
-
margin:25px 0 0 15px;
+
margin: 25px 0 0 15px;
-
filter: progid:DXImageTransform.Microsoft.dropShadow(color=#818181, offX=7, offY=7, positive=true);
+
        text-align: center;
 +
        filter: filter: progid:DXImageTransform.Microsoft.MotionBlur(strength=10, direction=310);
 +
 
 +
        z-index: 0;
 +
        cursor: pointer;
}
}
-
.description
+
.foto-active
{
{
-
    padding: 4px 4px 4px 4px;
+
background: #fff3b3;
-
background: #eee;
+
border: 1px solid #fff;
 +
-moz-box-shadow: 0px 2px 15px #666;
 +
        box-shadow: 0px 2px 15px #666;
 +
        -webkit-box-shadow: 0px 2px 15px #666;
 +
        z-index: 2;
 +
        cursor: pointer;
 +
        cursor: hand;
 +
 
 +
}
 +
 
 +
#description
 +
{
 +
        padding: 4px 4px 4px 4px;
 +
background: #fff3b3;
border: 1px solid #fff;
border: 1px solid #fff;
-moz-box-shadow: 0px 2px 15px #333;
-moz-box-shadow: 0px 2px 15px #333;
-
    box-shadow: 0px 2px 15px #333;
+
        box-shadow: 0px 2px 15px #333;
-
    -webkit-box-shadow: 0px 2px 15px #333;
+
        -webkit-box-shadow: 0px 2px 15px #333;
-
position: relative;
+
position: absolute;
-
margin:25px 0 0 15px;
+
       
-
    display:inline-block;  
+
margin: 25px 0 0 15px;
-
    width:300px;
+
        display: inline-block;  
-
     height:200px;
+
        width: 400px;
-
filter: progid:DXImageTransform.Microsoft.dropShadow(color=#818181, offX=7, offY=7, positive=true);
+
      
 +
/* Marta: teraz pole opisu powiększa się, gdy zajdzie potrzeba. Kasując min-height można sprawić,
 +
            aby wielkość pola zawsze była dostosowana do długości tekstu - też fajnie wygląda.    */
 +
 
 +
    min-height: 210px;
 +
    overflow: auto;
 +
 
}
}
Line 111: Line 260:
</style>
</style>
-
<div class="photoframe">
 
-
<div class="foto"  style="display:inline-block; width:auto">
 
-
<img class="pic" src="https://static.igem.org/mediawiki/2008/c/c3/Micha%C5%82_L.jpg"/><br>Michał Lower
 
-
</div>
 
-
<div class="foto"  style="display:inline-block; width:auto">
+
 
 +
<div class="photoframe" style="display:inline-block; height:900px">
 +
 
 +
<div class="foto"  style="display:inline-block; width:auto" id="JacekB">
<img class="pic" src="https://static.igem.org/mediawiki/2008/1/1c/Prof.Jacek_Bielecki.gif"/><br>prof. Jacek Bielecki
<img class="pic" src="https://static.igem.org/mediawiki/2008/1/1c/Prof.Jacek_Bielecki.gif"/><br>prof. Jacek Bielecki
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="RadekS">
-
<img class="pic" src="https://static.igem.org/mediawiki/2009/2/24/Ania.jpg"/><br>Ania Olchowik
+
<img class="pic" src="https://static.igem.org/mediawiki/2009/6/69/RadoslawStachowiak.jpg"/><br>Radosław Stachowiak
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="KamiilK">
-
<img class="pic" src="https://static.igem.org/mediawiki/2009/d/dd/Jarek.jpg"/><br>Jarek "Zmora" Pankowski
+
<img class="pic" src="https://static.igem.org/mediawiki/2009/d/d2/Kamil.jpg"/><br>Kamil Koper
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="KamilaO">
<img class="pic" src="https://static.igem.org/mediawiki/2009/5/56/Kama_igem.jpg"/><br>Kamila Ornoch
<img class="pic" src="https://static.igem.org/mediawiki/2009/5/56/Kama_igem.jpg"/><br>Kamila Ornoch
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="MichalL">
-
<img class="pic" src="https://static.igem.org/mediawiki/2009/d/d2/Kamil.jpg"/><br>Kamnil Koper
+
<img class="pic" src="https://static.igem.org/mediawiki/2008/c/c3/Micha%C5%82_L.jpg"/><br>Michał Lower
</div>
</div>
-
<div class="description">Description here <br><br><br><br><br><br></div>
+
<div class="foto"  style="display:inline-block; width:auto" id="AniaO">
-
 
+
<img class="pic" src="https://static.igem.org/mediawiki/2010/2/24/Ania.jpg"/><br>Ania Olchowik
-
<div class="foto"  style="display:inline-block; width:auto">
+
</div>
 +
<div class="foto"  style="display:inline-block; width:auto" id="KubaP">
<img class="pic" src="https://static.igem.org/mediawiki/2009/7/73/Portret.jpg"/><br>Kuba Piątkowski
<img class="pic" src="https://static.igem.org/mediawiki/2009/7/73/Portret.jpg"/><br>Kuba Piątkowski
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
 
 +
<div class="foto"  style="display:inline-block; width:auto" id="MarcinZ">
<img class="pic" src="https://static.igem.org/mediawiki/2009/4/4a/Marcin_Ziemniak_photo.png"/><br>Marcin Ziemniak
<img class="pic" src="https://static.igem.org/mediawiki/2009/4/4a/Marcin_Ziemniak_photo.png"/><br>Marcin Ziemniak
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="JarekP">
-
<img class="pic" src="https://static.igem.org/mediawiki/2009/0/03/Gallery-80837710-500x500.jpg"/><br>Anna Safray
+
<img class="pic" src="https://static.igem.org/mediawiki/2009/d/dd/Jarek.jpg"/><br>Jarek Pankowski
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
 
-
<img class="pic" src="https://static.igem.org/mediawiki/2008/0/07/R.Stachowiak.gif"/><br>Radosław Stachowiak
+
 
 +
<div class="foto"  style="display:inline-block; width:auto" id="AnnaS">
 +
<img class="pic" src="https://static.igem.org/mediawiki/2010/0/03/Gallery-80837710-500x500.jpg"/><br>Anna Saffray
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="JustynaL">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Justyna Lesiak</div>
+
<img class="pic" src="http://www.wzw.tum.de/mikrobiologie/uploads/pics/Justyna_Lesiak.jpg"/><br>Justyna Lesiak</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="AniaP">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Ania Puławska
+
<img class="pic" src="https://static.igem.org/mediawiki/2010/3/3f/AniaPulawska.jpg"/><br>Ania Puławska
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="KasiaG">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Kasia Grześ
+
<img class="pic" src="https://static.igem.org/mediawiki/2010/e/eb/KasiaG-1-.jpg"/><br>Kasia Grześ
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="DominikC">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Dominik Cysewski
+
<img class="pic" src="https://static.igem.org/mediawiki/2010/9/92/DominikCysewski.jpg"/>
 +
<br>Dominik Cysewski
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="MartaB">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Marta Błaszkiewicz
+
<img class="pic" src="https://static.igem.org/mediawiki/2010/d/de/MartaBlaszkiewicz2.jpg"/><br>Marta Błaszkiewicz
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="JoannaL">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Joanna Leszczyńska
+
<img class="pic" src="https://static.igem.org/mediawiki/2010/e/eb/Joanna_leszczynska.jpg"/><br>Joanna Leszczyńska
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="AlbertB">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Albert Bogdanowicz
+
<img class="pic" src="https://static.igem.org/mediawiki/2010/b/be/AlbertBogdanowicz.jpg"/><br>Albert Bogdanowicz
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="CherryM">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Cherry Moreno
+
<img class="pic" src="https://static.igem.org/mediawiki/2010/2/2d/CherryMoreno.jpg"/><br>Cherry Moreno
</div>
</div>
-
<div class="foto"  style="display:inline-block; width:auto">
+
<div class="foto"  style="display:inline-block; width:auto" id="MilenaB">
-
<img class="pic" src="http://www.phawker.com/wp-content/uploads/2008/10/austin-powers-poster.jpg"/><br>Milena
+
 +
<img class="pic" src="https://static.igem.org/mediawiki/2010/0/05/MilenaB.jpg"><br>Milena Bażlekowa
</div>
</div>
 +
<div id="description"><strong>This is our team and friends</strong><br><br><strong>Click on the pictures to find out more about us!<br><br>You can drag and drop the photos.<br><br>This page looks best in Firefox.</strong> <br><br><br><br></div>
 +
</div>
 +
 +
<div style="display:none;" id="MichalL_desc"><strong>Michał Lower</strong><br/>
 +
 +
I come from Warsaw, our capital city :-). I study Biotechnology at University of Warsaw. My M. Sc. thesis in Department of Virology was about new method of rapid determination of type III DNA methyltransferase recognition sequences. Apart from molecular biology I'm passionated with computer programming.
 +
</div>
 +
 +
 +
 +
<div style="display:none;" id="JacekB_desc">
 +
 +
<strong>prof. dr hab. Jacek Bielecki</strong><br/>
 +
 +
<br>Education: MSc, University of Warsaw, 1975 ;PhD, University of Warsaw, 1981 ;Associated professor, Warsaw University, 1995; Professor at University of Warsaw, 1996 ;Vice Dean of Faculty of Biology, 1996 - 1999, and 1999-2002
 +
 +
<br>Research interests:
 +
Molecular mechanisms of virulence of bacteria <i>Listeria monocytogenes</i>, especially the role of a hemolysin, listeriolysin O (LLO).
 +
 +
 +
</div>
 +
 +
 +
 +
<div  style="display:none;" id="AniaO_desc"><strong>Anna Olchowik</strong><br/>
 +
 +
I am a final year biotechnology student at the University of Edinburgh. You can usually find me in the lab watching youtube. Yes, I am responsible for this webpage, you can blame me for all the errors. Or, better blame the on-line tutorials, that I am using. Apart from biology I love traveling, ice skating and computer science.  </div>
 +
 +
 +
<div style="display:none;" id="JarekP_desc"><strong>Jarosław Pankowski</strong><br/>
 +
 +
I live near Warsaw and I study Biotechnology at the University of Warsaw. My M. Sc. thesis in Department of Genetic of Bacteria is about plasmid and chromosome encoded ability of marine bacteria to form biofilm. Besides the science I'm interested in fantasy books, metal music and for some time long sword fencing. </div>
 +
 +
 +
<div style="display:none;" id="KamilaO_desc"><strong>Kamila Ornoch</strong><br/>
 +
 +
I come from Warsaw and study Biotechnology at University of Warsaw. My B. Sc. thesis in Institute of Genetics and Biotechnology was about intracellular localization of Suv3 protein from Danio rerio. Now I'm working on yeast in International Institute of Molecular and Cell Biology. And I love to climb :) </div>
 +
 +
 +
<div style="display:none;" id="KamiilK_desc"><strong>Kamil Koper</strong><br/>
 +
 +
I come from a small town in south-east Poland, but I spent most of my life living in Warsaw. I study Biotechnology at the Warsaw University in the Institute of Genetics and Biotechnology. My B. Sc. thesis focused on human mitochondrial DNA polymorphisms and their correlation with the occurrence of specific forms of cancer. If I'm not in the lab or out playing billiards with friends you can usually find me in my workshop, or playing vintage video games. </div>
 +
 +
 +
<div style="display:none;" id="KubaP_desc"><strong>Jakub Piątkowski</strong><br/>
 +
 +
<p align="justify">I'm a graduate student at the University of Warsaw (Institute of Genetics and Biotechnology). My research interests include RNA turnover in mitochondria and the evolution of organellar genomes. My B.Sc. and M.Sc. theses focused on a novel RNA-binding protein DMR1p in <i>S. cerevisiae</i>. Whenever possible, I also try to participate in the activities of the students’ societies: of Molecular and Synthetic Biology.</p> </div>
 +
 +
 +
<div style="display:none;" id="MarcinZ_desc"><strong>Marcin Ziemniak</strong><br/>
 +
 +
I am a student of chemistry and biotechnology at the College of Interfaculty Individual Studies in Mathematics and Natural Sciences, University of Warsaw. My scientific interests include all aspects of bioorganic and theoretical chemistry connected with biopolymers, and some fields of biology involving synthetic and structural biology. Actually I am working in Division of Biophysics, UW and try to synthesize some new analogues of 5’ mRNA cap structures with superior biological properties. Moreover, I am about to finish my B. Sc thesis which is linked to chromatin remodeling. Besides my scientific work, I like listening to metal music and reading books especially science-fiction novels. </div>
 +
 +
 +
<div style="display:none;" id="AnnaS_desc"><strong>Anna Saffray</strong><br/>
 +
 +
I am a high school student who's hobby is going to the laboratory , and one beautiful day will become a scientist. I have also another hobbby - spending time with my horse and my dogs .  </div>
 +
 +
 +
<div style="display:none;" id="RadekS_desc"><strong>Radosław Stachowiak</strong><br/>
 +
 +
My adventure with biology and biotechnology dates back to 1995 when I became a biotechnology student at University of Warsaw. In the year 2000 I completed my MSc thesis and I guess I couldn’t stop there so I immidiately started PhD studies. Now I’m done with studying and my job is to take care of students and introduce them into science. Still, I like being involved in crazy projects so characteristic of Sudents’ Societies. The more crazy and incredible project the better. I guess this is the case so here I am! </div>
 +
 +
 +
<div style="display:none;" id="JustynaL_desc"><strong>Justyna Lesiak</strong><br/>
 +
 +
I am a PhD student at the Technischer Universität München, I just graduated in Biology at University of Warsaw. Now I am working on solventogenic Clostridia as a participant of the UE Clostridia Programme and trying to learn German (Hochdeutsch und Bairisch[!]), which seems to be not that difficult, as some people claim. In my spare time I like to listen to classical music, read books, do irish dancing and horseback riding. </div>
 +
 +
 +
<div style="display:none;" id="AniaP_desc"><strong>Ania Puławska</strong><br/>
 +
I'm Anna I study biotechnology at Warsaw University, precisely in Department of Virology. I am sure that this is exactly where I should be:) Probably I'm the happiest student in Warsaw:D
 +
<br>Apart from my duties, I have many hobbies. I love traveling, drawing (check the home page graphic), snowboarding in winter or sailing in spring:) What more can I say? I'm an optimist^^
 +
</div>
 +
 +
 +
<div style="display:none;" id="KasiaG_desc"><strong>Kasia Grześ</strong><br/>
 +
I study biotechnology on Warsaw University (Institute of Bacterial Genetics). I'm on the last year of my studies and my work here is connected with Heat Shock Proteins, especially bacterial Hsp90 and it's interactions with other proteins. During my free time I spend a lot of time in the... kitchen, I simply love cooking. Maybe in some way it reminds working in the lab...;)
 +
</div>
 +
 +
 +
<div style="display:none;" id="DominikC_desc"><strong>Dominik Cysewski</strong><br/>
 +
I come from Wroclaw, most charming city of Poland;-) I'm a graduate
 +
student at the University of Warsaw (Institute of Genetics and
 +
Biotechnology). Now I'm working on cross-linking of protein complexes
 +
and mapping them. Science is fascinating of course... But my hobby is
 +
mountaineering.
 +
</div>
 +
 +
 +
<div style="display:none;" id="MartaB_desc"><strong>Marta Błaszkiewicz</strong><br/>
 +
<font size= "1"> Vice-praeses of Students' Society of Genetics and Epigenetics</font><br/><br/>
 +
Genetics, neurobiology, computer science (a little bit of programming and graphics ^^), swimming, hiking,
 +
concerts, RPG, fantasy books, anime...
 +
Loving all of it (and much more!), I'm studying biotechnology at the College of Interfaculty
 +
Individual Studies in Mathematics and Natural Sciences, University of Warsaw. As for now I can tell that
 +
my B. Sc thesis will be connected with metagenomics.
 +
</div>
 +
 +
 +
<div style="display:none;" id="JoannaL_desc"><strong>Joanna Leszczyńska</strong><br/>
 +
Hi! My name is Joanna. I am a Pharmacy student at Medical University of Warsaw.
 +
 +
I believe that the cure to every possible disease is already known to mankind, but we still need to find a way to deliver it to the right place in human body, in right amounts. This is why I'm most interested in drug delivery systems.We still have a looong way to go... You wanna join?
 +
</div>
 +
 +
 +
<div style="display:none;" id="AlbertB_desc"><strong>Albert Bogdanowicz</strong><br/>
 +
I come from Szczecin. I study Bioinformatics and Systems Biology in Warsaw. As you might expect, I learn biology and code a lot. When I don't do this, I'm travelling, climbing, playing RPG, watching movies...
 +
<br/>
 +
In my iGEM team, I'm the main software developer.
 +
</div>
 +
 +
 +
<div style="display:none;" id="CherryM_desc"><strong>Cherry Moreno</strong>
 +
studies medical biotechnology in the Department of Immunology at Warsaw Uniwersity, where she works with LPS, natural regulatory T cells and their Tool-like receptors. She sings in a Russian Orthodox Choir, her father comes from Panama and she hates itchy clothes labels. She loves dancing, watching nature and flow cytometry!!!
 +
</div>
 +
 +
<div style="display:none;" id="MilenaB_desc"><strong>Milena Bażlekowa</strong><br/>
 +
Hi everyone! My name is Milena and I study medical biotechnology at Warsaw University. I am a Bachelor's degree graduate, curently working on my M.Sc. thesis. My thesis is focused on molecular cloning and genetical engineering of Vsr endonucleases and functional complementation of <i> E. coli's </i> Vsr by <i> N. gonorrhoeae's </i> Vsrs(sounds scary, isn't it ;))?. Last year I went on an internship at the University of California San Diego working with Mark Tuszynski's lab at the Center for Neural Repair UCSD School of Medicine. During the internship I had experience working with neural growth factors and their implementations in various neorodegenerative diseases e.g. Alzheimer's disease or spinal cord injury. Apart from medical applications of synthetic biology, I am interested in computer graphics, art and Mexican cuisine :). I like drawing, taking photographs and travelling.
</div>
</div>

Latest revision as of 21:38, 27 October 2010


Example Tabs


prof. Jacek Bielecki

Radosław Stachowiak

Kamil Koper

Kamila Ornoch

Michał Lower

Ania Olchowik

Kuba Piątkowski

Marcin Ziemniak

Jarek Pankowski

Anna Saffray

Justyna Lesiak

Ania Puławska

Kasia Grześ

Dominik Cysewski

Marta Błaszkiewicz

Joanna Leszczyńska

Albert Bogdanowicz

Cherry Moreno

Milena Bażlekowa
This is our team and friends

Click on the pictures to find out more about us!

You can drag and drop the photos.

This page looks best in Firefox.