Difference between revisions of "Team:ETH Zurich/Team"

(Memory game - test run.)
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{ETH_Zurich}}
 
{{ETH_Zurich}}
 
  
 
<html>
 
<html>
<head>
+
    <body>
<style>
+
        <div>
div#memory_board{
+
            <div class="sec page_title">
background:#CCC;
+
                <div>
border:#999 1px solid;
+
                    <h1>TEAM</h1>
width:800px;
+
                </div>
height:540px;
+
                <div class="image full_size" style="">
padding:24px;
+
                    <img src="https://static.igem.org/mediawiki/2016/e/ef/T--ETH_Zurich--Team_Picture_Globe.jpg">
margin:0px auto;
+
                </div>
}
+
            </div>
div#memory_board > div{
+
        </div>
background: url(tile_bg.jpg) no-repeat;
+
        <div class="sec light_grey">
border:#000 1px solid;
+
            <div>
width:71px;
+
                <h2>STUDENTS</h2>
height:71px;
+
                <ul class="portrait_list">
float:left;
+
                    <li>
margin:10px;
+
                        <img src="https://static.igem.org/mediawiki/2016/d/df/T--ETH_Zurich--Tina.png">
padding:20px;
+
                        <p><b>Tina<br>Biotechnology</b></p>
font-size:64px;
+
                        <p>
cursor:pointer;
+
                            Our wisest member. And the only one that can still be very communicative while being short of sleep.
text-align:center;
+
                        </p>
}
+
                    </li><!--
</style>
+
                --><li>
<script>
+
                        <img src="https://static.igem.org/mediawiki/2016/b/bd/T--ETH_Zurich--Asli.png">
 
+
                        <p><b>Asli<br>Biomedical Engineering</b></p>
var memory_array = ['A','A','B','B','C','C','D','D','E','E','F','F','G','G','H','H','I','I','J','J','K','K','L','L'];
+
                        <p>
var memory_values = [];
+
                            Knows all our plasmid's oris, resistances and content by heart. All 150+ of them. Test her.
var memory_tile_ids = [];
+
                        </p>
var tiles_flipped = 0;
+
                    </li><!--
Array.prototype.memory_tile_shuffle = function(){
+
                --><li>
    var i = this.length, j, temp;
+
                        <img src="https://static.igem.org/mediawiki/2016/c/c5/T--ETH_Zurich--Sophie.png">
    while(--i > 0){
+
                        <p><b>Sophie<br>Biomedical Engineering</b></p>
        j = Math.floor(Math.random() * (i+1));
+
                        <p>
        temp = this[j];
+
                            When she starts making funny sounds, you know she's running an intense simulation.
        this[j] = this[i];
+
                        </p>
        this[i] = temp;
+
                    </li><!--
    }
+
                --><li>
}
+
                        <img src="https://static.igem.org/mediawiki/2016/3/31/T--ETH_Zurich--Mattia.png">
function newBoard(){
+
                        <p><b>Mattia<br>Computer Science</b></p>
tiles_flipped = 0;
+
                        <p>
var output = '';
+
                            Insists on making experimentalists running FACS through the night so he can get data the next morning to feed his stochastic models.
    memory_array.memory_tile_shuffle();
+
                        </p>
for(var i = 0; i < memory_array.length; i++){
+
                    </li><!--
output += '<div id="tile_'+i+'" onclick="memoryFlipTile(this,\''+memory_array[i]+'\')"></div>';
+
                --><li>
}
+
                        <img src="https://static.igem.org/mediawiki/2016/1/1f/T--ETH_Zurich--Lukas.png">
document.getElementById('memory_board').innerHTML = output;
+
                        <p><b>Lukas<br>Biology</b></p>
}
+
                        <p>
function memoryFlipTile(tile,val){
+
                            Has to run the FACS through the night. Thanks Mattia!<br>The only bachelor student of our team, but quickly catching up to the Masters.
if(tile.innerHTML == "" && memory_values.length < 2){
+
                        </p>
tile.style.background = '#FFF';
+
                    </li><!--
tile.innerHTML = val;
+
                --><li>
if(memory_values.length == 0){
+
                        <img src="https://static.igem.org/mediawiki/2016/6/61/T--ETH_Zurich--Andreas.png">
memory_values.push(val);
+
                        <p><b>Andreas<br>Biotechnology</b></p>
memory_tile_ids.push(tile.id);
+
                        <p>
} else if(memory_values.length == 1){
+
                            Currently holding the no sleep record; 40 hours straight at his lab bench. Edit: record beaten the night before wiki freeze.
memory_values.push(val);
+
                        </p>
memory_tile_ids.push(tile.id);
+
                    </li><!--
if(memory_values[0] == memory_values[1]){
+
                --><li>
tiles_flipped += 2;
+
                        <img src="https://static.igem.org/mediawiki/2016/e/ee/T--ETH_Zurich--Lucas.png">
// Clear both arrays
+
                        <p><b>Lucas<br>Biochemistry</b></p>
memory_values = [];
+
                        <p>
            memory_tile_ids = [];
+
                            Leads our Crispr/Cpf1 project. Started late, but seems to be outperforming our main project, soon. Results will be presented in Boston.
// Check to see if the whole board is cleared
+
                        </p>
if(tiles_flipped == memory_array.length){
+
                    </li><!--
alert("Board cleared... generating new board");
+
                --></ul>
document.getElementById('memory_board').innerHTML = "";
+
            </div>
newBoard();
+
        </div>
}
+
        <div class="sec white">
} else {
+
            <div>
function flip2Back(){
+
                <h2>SUPERVISORS</h2>
    // Flip the 2 tiles back over
+
                <ul class="portrait_list">
    var tile_1 = document.getElementById(memory_tile_ids[0]);
+
                    <li>
    var tile_2 = document.getElementById(memory_tile_ids[1]);
+
                        <img src="https://static.igem.org/mediawiki/2016/3/3e/T--ETH_Zurich--Sven.jpg">
    tile_1.style.background = 'url(tile_bg.jpg) no-repeat';
+
                        <p><b>Sven Panke</b></p>
                tile_1.innerHTML = "";
+
                        <p>
    tile_2.style.background = 'url(tile_bg.jpg) no-repeat';
+
                            <a href="https://www.bsse.ethz.ch/bpl"> Bioprocess Laboratory</a>
                tile_2.innerHTML = "";
+
                        </p>
    // Clear both arrays
+
                    </li><!--
    memory_values = [];
+
                --><li>
                memory_tile_ids = [];
+
                        <img src="https://static.igem.org/mediawiki/2016/1/17/T--ETH_Zurich--J%C3%B6rg.jpg">
}
+
                        <p><b>Jörg Stelling</b></p>
setTimeout(flip2Back, 700);
+
                        <p>
}
+
                            <a href="http://www.csb.ethz.ch/"> Computational <br>
}
+
                            Systems Biology Group</a>
}
+
                        </p>
}
+
                    </li><!--
</script>
+
                --><li>
</head>
+
                        <img src="https://static.igem.org/mediawiki/2016/5/52/T--ETH_Zurich--Kobi.jpg">
<body>
+
                        <p><b>Kobi Benenson</b></p>
<div id="memory_board"></div>
+
                        <p>
<script>newBoard();</script>
+
                          <a href="https://www.bsse.ethz.ch/synbio"> Synthetic Biology Group</a>
</body>
+
                        </p>
 +
                    </li><!--
 +
            --></ul>
 +
            </div>
 +
        </div>
 +
        <div class="sec light_grey">
 +
        <div>
 +
            <h2>ADVISORS</h2>
 +
            <ul class="portrait_list">
 +
                <li>
 +
                    <img src="https://static.igem.org/mediawiki/2016/6/66/T--ETH_Zurich--Daniel.png">
 +
                    <p><b>Daniel Gerngross</b></p>
 +
                    <p>
 +
                        <a href="https://www.bsse.ethz.ch/bpl"> Bioprocess Laboratory</a>
 +
                    </p>
 +
                </li><!--
 +
                --><li>
 +
                    <img src="https://static.igem.org/mediawiki/2016/3/3e/T--ETH_Zurich--Claude1.jpg">
 +
                    <p><b>Claude Lormeau</b></p>
 +
                    <p>
 +
                        <a href="http://www.csb.ethz.ch/"> Computational<br>
 +
                        Systems Biology Group</a>
 +
                    </p>
 +
                </li><!--
 +
                --><li>
 +
                    <img src="https://static.igem.org/mediawiki/2016/1/16/T--ETH_Zurich--Jana1.jpg">
 +
                    <p><b>Janina Linnik</b></p>
 +
                    <p>
 +
                        <a href="http://www.csb.ethz.ch/"> Computational
 +
                        <br>Systems Biology Group</a>
 +
                    </p>
 +
                </li><!--
 +
                                --><li>
 +
                    <img src="https://static.igem.org/mediawiki/2016/7/7d/T--ETH_Zurich--Raffaele1.jpg">
 +
                    <p><b>Raffaele Altamura</b></p>
 +
                    <p>
 +
                      <a href="https://www.bsse.ethz.ch/synbio"> Synthetic Biology Group</a>
 +
                    </p>
 +
                </li><!--
  
 +
            --></ul>
 +
            </div>
 +
        </div>
 +
    </body>
 
</html>
 
</html>
 
{{:Template:ETH_Zurich/footer}}
 
{{:Template:ETH_Zurich/footer}}

Latest revision as of 22:10, 19 October 2016

TEAM

STUDENTS

  • Tina
    Biotechnology

    Our wisest member. And the only one that can still be very communicative while being short of sleep.

  • Asli
    Biomedical Engineering

    Knows all our plasmid's oris, resistances and content by heart. All 150+ of them. Test her.

  • Sophie
    Biomedical Engineering

    When she starts making funny sounds, you know she's running an intense simulation.

  • Mattia
    Computer Science

    Insists on making experimentalists running FACS through the night so he can get data the next morning to feed his stochastic models.

  • Lukas
    Biology

    Has to run the FACS through the night. Thanks Mattia!
    The only bachelor student of our team, but quickly catching up to the Masters.

  • Andreas
    Biotechnology

    Currently holding the no sleep record; 40 hours straight at his lab bench. Edit: record beaten the night before wiki freeze.

  • Lucas
    Biochemistry

    Leads our Crispr/Cpf1 project. Started late, but seems to be outperforming our main project, soon. Results will be presented in Boston.

Thanks to the sponsors that supported our project: