Team:BV CAPS Kansas

From 2013hs.igem.org

(Difference between revisions)
Line 58: Line 58:
===Fun===
===Fun===
 +
<html>
 +
<head>
 +
<style type="text/css">
 +
.numbers {
 +
    padding: 0px;
 +
    width: 45px;
 +
    text-align: center;
 +
    font-family: Arial;           
 +
    font-size: 28px;
 +
    font-weight: bold;  /* options are normal, bold, bolder, lighter */
 +
    font-style: normal;  /* options are normal or italic */
 +
    color: #FFFFFF;      /* change color using the hexadecimal color codes for HTML */
 +
}
 +
.title {        /* the styles below will affect the title under the numbers, i.e., “Days”, “Hours”, etc. */
 +
    border-style: none;
 +
    padding: 0px 0px 3px 0px;
 +
    width: 45px;
 +
    text-align: center;
 +
    font-family: Arial;
 +
    font-size: 10px;
 +
    font-weight: bold;  /* options are normal, bold, bolder, lighter */
 +
    color: #FFFFFF;      /* change color using the hexadecimal color codes for HTML */
 +
}
 +
#table {
 +
    width: 400px;
 +
    height: 70px;
 +
    border-style: ridge;
 +
    border-width: 3px;
 +
    border-color: #666666;      /* change color using the hexadecimal color codes for HTML */
 +
    background-color: #222222;  /* change color using the hexadecimal color codes for HTML */
 +
}
 +
</style>
 +
</head>
 +
 +
<body>
 +
<center>
 +
<table id="table" border="0">
 +
    <tr>
 +
        <td align="center" colspan="6"><div class="numbers" id="count2" style="padding: 5px 0 0 0; "></div></td>
 +
    </tr>
 +
    <tr id="spacer1">
 +
        <td align="center" ><div class="numbers" ></div></td>
 +
        <td align="center" ><div class="numbers" id="dday"></div></td>
 +
        <td align="center" ><div class="numbers" id="dhour"></div></td>
 +
        <td align="center" ><div class="numbers" id="dmin"></div></td>
 +
        <td align="center" ><div class="numbers" id="dsec"></div></td>
 +
        <td align="center" ><div class="numbers" ></div></td>
 +
    </tr>
 +
    <tr id="spacer2">
 +
        <td align="center" ><div class="title" ></div></td>
 +
        <td align="center" ><div class="title" id="days">Days</div></td>
 +
        <td align="center" ><div class="title" id="hours">Hours</div></td>
 +
        <td align="center" ><div class="title" id="minutes">Minutes</div></td>
 +
        <td align="center" ><div class="title" id="seconds">Seconds</div></td>
 +
        <td align="center" ><div class="title" ></div></td>
 +
    </tr>
 +
</table>
 +
</center>
 +
 +
<script type="text/javascript">
 +
 +
 +
/*  Change the items below to create your countdown target date and announcement once the target date and time are reached.  */
 +
var current="IGEM COUNTDOWN COMPLETE";        //—>enter what you want the script to display when the target date and time are reached, limit to 20 characters
 +
var year=2013;              //—>Enter the count down target date YEAR
 +
var month=06;                //—>Enter the count down target date MONTH
 +
var day=17;                //—>Enter the count down target date DAY
 +
var hour=12;                //—>Enter the count down target date HOUR (24 hour clock)
 +
var minute=0;              //—>Enter the count down target date MINUTE
 +
var tz=-0;                  //—>Offset for your timezone in hours from UTC (see http://wwp.greenwichmeantime.com/index.htm to find the timezone offset for your location)
 +
 +
//—>    DO NOT CHANGE THE CODE BELOW!    <—
 +
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
 +
 +
function countdown(yr,m,d,hr,min){
 +
theyear=yr;themonth=m;theday=d;thehour=hr;theminute=min;
 +
var today=new Date();
 +
var todayy=today.getYear();
 +
if (todayy < 1000) {todayy+=1900;}
 +
var todaym=today.getMonth();
 +
var todayd=today.getDate();
 +
var todayh=today.getHours();
 +
var todaymin=today.getMinutes();
 +
var todaysec=today.getSeconds();
 +
var todaystring1=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec;
 +
var todaystring=Date.parse(todaystring1)+(tz*1000*60*60);
 +
var futurestring1=(montharray[m-1]+" "+d+", "+yr+" "+hr+":"+min);
 +
var futurestring=Date.parse(futurestring1)-(today.getTimezoneOffset()*(1000*60));
 +
var dd=futurestring-todaystring;
 +
var dday=Math.floor(dd/(60*60*1000*24)*1);
 +
var dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1);
 +
var dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
 +
var dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);
 +
if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=0){
 +
document.getElementById('count2').innerHTML=current;
 +
document.getElementById('count2').style.display="inline";
 +
document.getElementById('count2').style.width="390px";
 +
document.getElementById('dday').style.display="none";
 +
document.getElementById('dhour').style.display="none";
 +
document.getElementById('dmin').style.display="none";
 +
document.getElementById('dsec').style.display="none";
 +
document.getElementById('days').style.display="none";
 +
document.getElementById('hours').style.display="none";
 +
document.getElementById('minutes').style.display="none";
 +
document.getElementById('seconds').style.display="none";
 +
document.getElementById('spacer1').style.display="none";
 +
document.getElementById('spacer2').style.display="none";
 +
return;
 +
}
 +
else {
 +
document.getElementById('count2').style.display="none";
 +
document.getElementById('dday').innerHTML=dday;
 +
document.getElementById('dhour').innerHTML=dhour;
 +
document.getElementById('dmin').innerHTML=dmin;
 +
document.getElementById('dsec').innerHTML=dsec;
 +
setTimeout("countdown(theyear,themonth,theday,thehour,theminute)",1000);
 +
}
 +
}
 +
 +
countdown(year,month,day,hour,minute);
 +
 +
</script>
 +
</body>
 +
</html>

Revision as of 20:55, 6 April 2013

You can write a background of your team here. Give us a background of your team, the members, etc. Or tell us more about something of your choosing.

Our team is interested in exploring the properties of extremophiles, including Halobacteria. We have two major projects in mind:

Biofuels
The international oil industry drives our economy and very life of the world. However, this resource is dwindling and has detrimental effects on our atmosphere. In order to reduce oil usage and dependence, we will improve the efficiency of bio-fuels by manipulating the microbes used in their creation. By mimicking the features of extremophiles such as halobacteria, we will increase the survival of microbes in extreme temperatures and saline environments. These useful, untapped microbes can also be used to degrade plant waste, and, someday, even household waste.

Life on Mars
By adding various features of extremophiles such as halobacteria, we will give microbes the ability to survive the hostile conditions on Mars, enabling them to grow in low oxygen/high carbon dioxide atmosphere with little water. In addition to extreme temperatures, the microbe needs to withstand mild radiation. We can do this by using a photosynthetic chassis, expressing antifreeze proteins.


Official Team Profile


Contents

Team

Blue Valley Center of Advanced Professional Studies (CAPS) is an outreach facility for students who wish to achieve higher goals and expectations in a professional environment. The team is composed of students from the Blue Valley district high schools giving us an array of students with different backgrounds and abilities.

Click here to see our team members.

Project

Click here to see the monthly lab notebooks.

Results/Conclusions

What did you achieve over the course of your semester?


Safety

What safety precautions did your team take? Did you take a safety training course? Were you supervised at all times in the lab?


Attributions

Who worked on what?


Human Practices

What impact does/will your project have on the public?


Fun

Days
Hours
Minutes
Seconds


<forum_subtle />