Difference between revisions of "Team:Hong Kong-CUHK/Engagement"

Line 38: Line 38:
 
     display: none;
 
     display: none;
 
}
 
}
 +
 +
body {
 +
      position: relative;
 +
  }
 +
  #section1 {padding-top:120px;height:500px;color: #000; background-color: #FAFAFA;}
 +
  #section2 {padding-top:120px;height:500px;color: #000; background-color: #FFFFFF;}
 +
  #section3 {padding-top:120px;height:500px;color: #000; background-color: #FAFAFA;}
 +
  #section4 {padding-top:120px;height:500px;color: #000; background-color: #FFFFFF;}
 +
 
 +
 
</style>
 
</style>
 
  <body>
 
  <body>
Line 46: Line 56:
 
       </div>
 
       </div>
 
     </div>
 
     </div>
<div class="column full_size">
 
<br>
 
<style>
 
body
 
 
.tablink {
 
    background-color: #555;
 
    color: white;
 
    float: left;
 
    border: none;
 
    outline: none;
 
    cursor: pointer;
 
    padding: 14px 16px;
 
    font-size: 17px;
 
    width: 25%;
 
}
 
 
.tablink:hover {
 
    background-color: #777;
 
}
 
 
/* Style the tab content */
 
.tabcontent {
 
    color: white;
 
    display: none;
 
    padding: 50px;
 
    text-align: center;
 
}
 
  
#London {background-color:red;}
 
#Paris {background-color:green;}
 
#Tokyo {background-color:blue;}
 
#Oslo {background-color:orange;}
 
 
</style>
 
</style>
 
</head>
 
</head>
 
<body>
 
<body>
  
 +
<div class="whole-div">
 +
<div class="container-fluid">
 
<div class="topnav" id="myTopnav">
 
<div class="topnav" id="myTopnav">
   <a href="#local">Local public engagement</a>
+
<ul class="nav navbar-nav">
   <a href="#international">International public engagement</a>
+
   <li><a href="#section1">Local public engagement</a></li>
   <a href="#conference">iGEM conference</a>
+
   <li><a href="#section2">International public engagement</a></li>
   <a href="#survey">Survey</a>
+
   <li><a href="#section3">iGEM conference</a></li>
 +
   <li><a href="#section4">Survey</a></li>
 +
</ul>
 +
</div>
 +
</div>
 
</div>
 
</div>
 
     <script>
 
     <script>
Line 326: Line 310:
  
 
</div>
 
</div>
  <!-- Section "What We do" example 3: Small Title & 3 columns icons -->
 
                        <div class="section section-we-do-2" id="workflow2">
 
                            <div class="container">
 
                                <div class="row">
 
                                    <div class="title">
 
                                        <p class = "h2WM">The Activities Booklet</p>
 
                                    </div>
 
  
 +
  <script>
 +
$(document).ready(function(){
 +
  // Add scrollspy to <body>
 +
  $('body').scrollspy({target: ".navbar", offset: 50}); 
  
<p>After hosting our workshops, we compiled 24 of the activities we ran with participants into a single Synthetic Biology educational booklet. Each activity lists the procedure, background information, materials and cost for the activity, critical learning questions, and learning goals. We made an effort to keep the activities low-cost and used materials easily accessible to teachers. We included background information so that teachers with limited Biology background could easily run the activities. The booklet includes worksheets, labs, and activities that can be completed by first graders to AP Biology students, and any age in between.
+
  // Add smooth scrolling on all links inside the navbar
<br>We worked with Bonnie Ellis, the Science Curriculum Coordinator of Williamsburg James City County Public Schools to ensure that our booklet is usable and convenient for teachers.
+
  $("#myNavbar a").on('click', function(event) {
 
+
    // Make sure this.hash has a value before overriding default behavior
<br>
+
    if (this.hash !== "") {
                <b>Who we shared our booklet with:</b>
+
      // Prevent default anchor click behavior
<br>
+
      event.preventDefault();
We have already shared our booklet with teachers all over the state, the country, and the world! Here in Williamsburg, we attended the Williamsburg James City County Teacher Training days to present our booklet to all the science teachers in the county. In addition, we have given our booklet to teachers all over the state. We now have teachers in five states who plan on running our booklet. We also provided our booklet upon request to teachers in China and, through the Fulbright U.S. Scholar Program, Malaysia.
+
<br>
+
We are still working on responding to all the requests for our booklet! Currently, we are working on providing the Virginia state learning standards that each activity fulfills so that local teachers can seamlessly integrate our activities into their year-long schedules. We are also providing local teachers with kits that include materials for our activities up until the date of the 2015 iGEM Jamboree.
+
</p>
+
<p>Our educational synthetic biology activities booklet is available online for anyone to use for free. This includes future iGEM teams looking to hold Synthetic Biology workshops and camps, as well as educators worldwide. Additionally, teachers in the Williamsburg area can request in-class assistance or tutoring for the booklet from volunteers of College Partnership for Kids. CPK is a group of William & Mary students who tutor at local schools. CPK volunteers will receive special training in order to use the activities in our Synthetic Biology booklet.
+
</p>
+
        <p><b>Knowledge of Synthetic Biology: </b>The information we provided and taught to students and adults in our workshops will inspire them to look into Synthetic Biology and see scientific research as a more tangible career option. We have already received emails from parents whose kids couldn't stop talking about our workshops, and we feel certain that this enthusiasm for Synthetic Biology will carry them into the future.</p>
+
        <p><b>Lab visits: </b>We put our local public schools in contact with Dr. Saha, our iGEM PI, who will continue to organize and facilitate visits by classes to William and Mary Biology Department labs.</p></div>
+
                                        </div>
+
                                    </div>
+
                                </div>
+
                            </div>
+
                        </div>
+
                        <!-- End Section "What We do" example 3: Small Title & 3 columns icons -->
+
  
 +
      // Store hash
 +
      var hash = this.hash;
  
 +
      // Using jQuery's animate() method to add smooth page scroll
 +
      // The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
 +
      $('html, body').animate({
 +
        scrollTop: $(hash).offset().top
 +
      }, 800, function(){
 +
 
 +
        // Add hash (#) to URL when done scrolling (default click behavior)
 +
        window.location.hash = hash;
 +
      });
 +
    }  // End if
 +
  });
 +
});
 +
</script>
  
 
</html>
 
</html>
  
 
{{Template:Hong_Kong-CUHK_footer}}
 
{{Template:Hong_Kong-CUHK_footer}}

Revision as of 07:23, 19 September 2017

Local Public Engagement

In order to gain acceptance of our project, we need to allow the publics in Hong Kong to know about our project and synthetic biology. We achieved youth education on synthetic biology by our workshop, introduced participants to what synthetic biology is and induced their deeper thought on ethical issues connected to synthetic biology. Through in-campus activities, we promoted synthetic biology to our schoolmates of different majors and specialties, aroused attention to this topic. Holding outreach activities, we made our project more connected to the public, we gained opinions and so we could make improvements for the real-life practice of our project.


High School

>> One day Synthetic Biologist workshop (4 FEB 2017)


About 30 Students from 12 different high schools participated in this workshop and had hand-on experience about synthetic biology experiments under our guidance. The day camp consists of lab experiments, lectures of basics of synthetic biology and genetics as well as sharing of our project. We also discussed synthetic biology-related ethical issues. We conducted survey before and after the workshop. According to the survey result, students have increased understanding of synthetic biology after this workshop! We hope that this activity can inspire high school students’ interest in synthetic biology.


Here are some highlights of significant survey results:

  • Click here for detailed questionnaire result.
  • Download our powerpoint and event detail !
  • View the list of participating high schools
Diocesan Boys' School Hong Kong Chinese Women's Club College
HKU SPACE Po Leung Kuk Stanley Ho Community College Ma On Shan Tsung Tsin Secondary School
N.L.S.I. Lui Kwok Pat Fong College Our Lady's College
Pentecostal Lam Hon Kwong School Queen's College Old Boys' Association Secondary
Qualied College St.Clare's Girls' School
St. Paul's Convent School Tsuen Wan Government Secondary School






University

>>CUHK Art fair (14-15 SEP 2016)

Target: University students and teachers
CUHK Art fair is a carnival held in our university. We used this opportunity to introduce students about synthetic biology and our project. Through DIY Liquid Nitrogen Ice-cream, participants got a taste of what synthetic biology is like. We raised up the synbio- vanilla ice cream issue to students, allowing them to know what synthetic biology is and synthetic biology is actually around us in everyday life. Our booth successful aroused students’ interest in synthetic biology, many non-science students got new insights and better attitude towards synthetic biology.

  • Check what our students say! (Attach Video)
  • Download the protocol to make ice cream yourself !














>> CUHK Information day (22 OCT 2017)

Target: High school teachers, students and their parents
Promote synthetic biology to high school audience. Though survey, we gain opinions and views of the high school audience on synthetic biology as well as our project.


General Public

Through outreach activities, we hear voices from the public about our project and concerns about synthetic biology. This was precious chance for us to go out of laboratory, get our project and synthetic biology connected to the community.



>> Visiting local community lab: DIYBio (12,19 JAN 2017)

DIYBio is the first growing biotechnological social movement in Hong Kong initiated in 2016. Through this platform, we hosted one public sharing session, presented our project to the audience and discussed safety issue with them. We also attended a talk given by HKU iGEM 2016 Team organized by DIYBIO Hong Kong and they shared with us their experience in iGEM.


>>Vibrant Science Academy – Summer Science Party @Hong Kong Science & Technology Parks (Sundays in JUL and AUG 2017)
We invited iGEM HKUST Team to collaborate with us. Holding a booth in this public science carnaval, we aim to arouse general public’s interest in biology and our project. Through fun interactive activities, kids learn simple and basic biology. We taught children to build origami model to allow kids understand the basic structure of DNA. We had another game “Who is the criminal?” focused on DNA application, allowing kids and their parents to know that DNA is closely connected to daily life. We promoted basic knowledge of synthetic biology to their parents as well. We encountered some talented kids with special interest in molecular biology and we met a few professionals in the field as well, they gave us rewardful advices and comments on our project.



>> Facebook Page
We created a facebook page to promote our team and project, we updated our progress with the public from time to time, we also share news and interesting facts about synthetic biology on this platform.


International public engagement

Due to the high population, East and South East Asia is the global source of influenza. In addition, rapid spread of Influenza is more serious in undeveloped country due to less developed system. Therefore, our project and the idea of synthetic biology should also be introduced to the publics in those countries. However, most underdeveloped countries don’t have the concept of synthetic biology. Among the region, Bangladesh is one of the most underdeveloped country affected by influenza and without the concept of synbio. Therefore, we first choose Bangladesh as the first targeted country.



Bangladesh

>> First ever synthetic biology event in Bangladesh (16 JUN 2017)
We cooperated with Bio Bangla, a community lab in Dhaka, to hold the first ever synthetic biology event in Bangladesh. We gave presentation about synthetic biology and our projects. About 40 students from 6 universities joined the event. The chairman of Microbiology department at Noakhali Science and Technology University- Firoz Ahmed and Prime minister a2i project consultant- Iran Khan also joined the event. After the event, we are very glad to notice that they will form the first iGEM team in Bangladesh in 2018. We therefore also provided advices in establishment of first iGEM team in Bangladesh.

iGEM Conference

>> The 4th iGEM Asia- Pacific Conference (8 - 14 AUG 2016)
We joined the iGEM Asia- Pacific Conference conducted in Tainan in August 2016, we have gained deep insights into perspectives of synthetic biology, from ethics to big data processing, via in-depth discussions with fellow iGEMers. The experience workshop and presentations with the 20 Asian iGEM teams also gives us inspirations in operating an iGEM team and conducting human practice. We had got valuable advice in connecting ourselves to the public from Ana Sifuentes from iGEM headquarters. Professors gave us precious advice on our future planning and orientation and pointed out the practical difficulties and problems hiding inside our project.

  • Click here for detailed evaluation report.

>> Pan-Pearl iGEM Teams Meeting (5 AUG 2017)
We attended and presented our project in the conference. We had exchanged ideas with other iGEM teams as well. Supervisors from other iGEM teams gave helpful advices for improvement of our project. We also gain more experience in presenting and answering questions, it was like a small rehearsal for Jamboree.


>> DIYBio Biosafety Sharing (11 AUG 2017)
DIYBio HK shared with us their safety protocol, biosafety practice in their lab as well as the recent situation and regulations on genetically modified organisms in Hong Kong. We gain precious inspirations from the talk on biosafety and we realized that regulations in Hong Kong need to be improved. Meeting with all other local iGEM teams, we had nice communications on difficulties we are facing respectively and gave each other suggestions.