(Prototype team page) |
Francischlin (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | {{ | + | {{NCTU Formosa/Navigation}} {{NCTU Formosa}} |
− | + | ||
<html> | <html> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | < | + | <head> |
+ | <meta charset="UTF-8"> | ||
+ | <title>NCTU_Formosa: Education and Public Engagement</title> | ||
+ | <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | ||
+ | <script src="jQueryAssets/jquery-1.11.1.min.js"></script> | ||
+ | <script src="jQueryAssets/jquery.ui-1.10.4.dialog.min.js"></script> | ||
+ | <link href="education.css" rel="stylesheet" type="text/css"> | ||
+ | <script src="education.js" type="text/javascript"></script> | ||
+ | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" /> | ||
− | < | + | <style> |
− | + | body { | |
− | + | margin: 0; | |
+ | padding: 0; | ||
+ | overflow-x: hidden; | ||
+ | height: 100vh; | ||
+ | } | ||
− | + | html, body { | |
− | + | overflow-x: hidden !important; | |
− | + | -ms-overflow-x: hidden !important; | |
− | + | } | |
− | + | ||
− | + | ||
+ | p { | ||
+ | text-align: justify; | ||
+ | font-size: 1.3em !important; | ||
+ | font-family: Arial, sans-serif; | ||
+ | } | ||
+ | #fut { | ||
+ | background: white; | ||
+ | width: 100vw; | ||
+ | height: 200px; | ||
+ | } | ||
+ | .line { | ||
+ | position: relative; | ||
+ | left: 20vw; | ||
+ | top: 5vw; | ||
+ | } | ||
− | + | .hpedu_content { | |
− | + | margin: 10vh 10vw 0vh; | |
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | .subtitle { | |
+ | height: 35px; | ||
+ | max-width: 90%; | ||
+ | position: relative; | ||
+ | left: -10vw; | ||
+ | margin-top: 50px; | ||
+ | margin-bottom: 10px; | ||
+ | } | ||
− | <div class=" | + | /*----------------------------------------------------------------------------*/ |
+ | |||
+ | .hpedu_edu, .hpedu_pbeg { | ||
+ | border-width: 2px; | ||
+ | border-style: solid; | ||
+ | border-color: #85CFEA; | ||
+ | position: relative; | ||
+ | margin-top: 0px; | ||
+ | margin-bottom: 100px; | ||
+ | } | ||
+ | |||
+ | .show, .show2 { | ||
+ | margin: 1vw 2vw; | ||
+ | } | ||
+ | |||
+ | .hide, .hide2 { | ||
+ | display: none; | ||
+ | margin: 1vw 2vw; | ||
+ | } | ||
+ | |||
+ | .show_pic, .hide_pic, .show2_pic, .hide2_pic { | ||
+ | cursor: pointer; | ||
+ | width: 100px; | ||
+ | margin: 1vh 0; | ||
+ | -webkit-transition: all 0.5s; | ||
+ | -moz-transition: all 0.5s; | ||
+ | -o-transition: all 0.5s; | ||
+ | -ms-transition: all 0.5s; | ||
+ | transition: all 0.5s; | ||
+ | } | ||
+ | |||
+ | .show_pic:hover, .hide_pic:hover, .show2_pic:hover, .hide2_pic:hover { | ||
+ | width: 130px; | ||
+ | } | ||
+ | |||
+ | |||
+ | /*----------------------------------------------------------------------------*/ | ||
+ | |||
+ | |||
+ | /*----------------------------------------------------------------------------*/ | ||
+ | |||
+ | .show>ol>li, .show2>ol>li { | ||
+ | font-size: 1.2em; | ||
+ | position: relative; | ||
+ | left: 20px; | ||
+ | } | ||
+ | |||
+ | .hide>h1, .hide2>h1 { | ||
+ | margin-top: 5vw; | ||
+ | } | ||
+ | |||
+ | .hide>ul>li, .hide2>ul>li { | ||
+ | font-size: 1.2em; | ||
+ | position: relative; | ||
+ | left: 20px; | ||
+ | } | ||
+ | |||
+ | .hide>img, .hide>img{ | ||
+ | margin: 10px; | ||
+ | } | ||
+ | |||
+ | |||
+ | /*----------------------------------------------------------------------------*/ | ||
+ | |||
+ | |||
+ | /*----------------------------------------------------------------------------*/ | ||
+ | |||
+ | span>a:link { | ||
+ | color: red; | ||
+ | } | ||
+ | |||
+ | span>a:visited { | ||
+ | color: green; | ||
+ | } | ||
+ | |||
+ | span>a:hover { | ||
+ | color: hotpink; | ||
+ | } | ||
+ | |||
+ | span>a:active { | ||
+ | color: blue; | ||
+ | } | ||
+ | |||
+ | |||
+ | /*----------------------------------------------------------------------------*/ | ||
+ | /*----------------------------------------------------------------------------*/ | ||
+ | /*----------------------------------------------------------------------------*/ | ||
+ | /*----------------------------------------------------------------------------*/ | ||
+ | |||
+ | </style> | ||
+ | <!-----------------------------------------------------------------------------> | ||
+ | <script> | ||
+ | $(document).ready(function(){ | ||
+ | $(".show_pic").click(function(){ | ||
+ | $(".hide").show(500); | ||
+ | $(".show").hide(); | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | $(document).ready(function(){ | ||
+ | $(".hide_pic").click(function(){ | ||
+ | $(".hide").hide(); | ||
+ | $(".show").show(500); | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | $(document).ready(function(){ | ||
+ | $(".show2_pic").click(function(){ | ||
+ | $(".hide2").show(500); | ||
+ | $(".show2").hide(); | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | $(document).ready(function(){ | ||
+ | $(".hide2_pic").click(function(){ | ||
+ | $(".hide2").hide(); | ||
+ | $(".show2").show(500); | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | |||
+ | </script> | ||
+ | <!-----------------------------------------------------------------------------> | ||
+ | |||
+ | </head> | ||
+ | |||
+ | <body> | ||
+ | |||
+ | <div class="hpedu_head"><img src="https://static.igem.org/mediawiki/2017/a/ab/Edu_head.png" width="100%"> </div> | ||
+ | <div><img src="https://static.igem.org/mediawiki/2017/1/15/Edu_icon.png" width="20%" style="display:block; margin:auto;"></div> | ||
+ | <div class="line"><img src="https://static.igem.org/mediawiki/2017/6/6f/Description_line.png" width="60%"></div> | ||
+ | |||
+ | |||
+ | <div class="hpedu_content"> | ||
+ | |||
+ | <!-----------------------------------------------------------------------------> | ||
+ | <img id="hpedu_edu_pic" class="subtitle" src="https://static.igem.org/mediawiki/2017/0/0e/HpAg_study.png"> | ||
+ | |||
+ | <div class="hpedu_edu"> | ||
+ | <div class="show"> | ||
+ | <p> | ||
+ | Bring the concept of Synthetic biology to the public. Sparkle Biology with interdisciplinary awareness to the students and the public. | ||
+ | </p> | ||
+ | <ol> | ||
+ | <li>Introduction of Synthetic Biology and iGEM to public</li> | ||
+ | <li>IoT camp & Syn-bio camp: extension of abilities for iGEMers </li> | ||
+ | <li>The inspiration of our project - application of Synthetic Biology</li> | ||
+ | <li>The fulfillment of our project - pursuing smart agriculture </li> | ||
+ | </ol> | ||
+ | |||
+ | |||
+ | <div><img class="show_pic" src="https://static.igem.org/mediawiki/2017/4/4f/Ptp_hide.png" style="display:block; margin:auto;"></div> | ||
+ | </div> | ||
+ | |||
+ | <div class="hide"> | ||
+ | |||
+ | <h1>Introduction to high school students and the public in group admission interview in NCTU</h1> | ||
+ | |||
+ | <p> | ||
+ | On March 25th, NCTU_Formosa introduced iGEM competition, our previous projects, and some conventional equipment in the laboratory to high school students islandwide during the group admission interview held by the Department | ||
+ | of Biological Science and Technology, NCTU. Many of the students showed keen interest about iGEM during the introduction. The event gave high school students and the public an access to learn more about synthetic biology and the concept | ||
+ | of multidisciplinary technology application. Most importantly, iGEM makes us learn by doing, and the event which also held in the past few years attracted people who is now members in 2017 NCTU_Formosa team. | ||
+ | </p> | ||
+ | |||
+ | <img src="#" width="60%" style="display: block; margin: auto;"> | ||
+ | |||
+ | <h1>A visit from City University of Hong Kong</h1> | ||
+ | |||
+ | <p> | ||
+ | On May 23rd, City University of Hong Kong came to National Chiao Tung University to visit the Department of Biological Science and Technology. In this event, NCTU_Formosa introduced iGEM to them, while most of them majored | ||
+ | in engineering. They learned about our project in recent four years, having lunch with us after the event. During the time we were together, the ideas from different fields, biology and engineering, started to combine together and | ||
+ | sparkled new thoughts. They said that our project sounded amazing, showing a great interest to take part in iGEM. We look forward to seeing them participating in iGEM in the future. | ||
+ | </p> | ||
+ | |||
+ | <img src="#" width="60%" style="display: block; margin: auto;"> | ||
+ | |||
+ | <h1>IoT camp for science-gifted students in Taichung First Senior High School - the extension of synthetic biology in iGEM to engineering</h1> | ||
+ | |||
+ | <p> | ||
+ | Our team considers the ability of hardware and software important as biology is, so from July 17th to July 21st, NCTU_Formosa held an IoT camp to promote the application of IoT. During the camp, we introduced basic electronic | ||
+ | components, electronic circuits to the students, and the compiling of a micro-controller platform, Arduino. And what is also important is that the application of IoTtalk. With these techniques, they can try building an automatic mobile | ||
+ | vehicle. The lessons we provided included a speech delivered by Dr. Jason Yi-Bing Lin, who did good research in the field, and a Makerathon for students to make their own project. | ||
+ | </p> | ||
+ | |||
+ | <img src="#" width="60%" style="display: block; margin: auto;"> | ||
+ | |||
+ | |||
+ | <div><img class="hide_pic" src="https://static.igem.org/mediawiki/2017/c/cb/Ptp_show.png" style="display:block; margin:auto;"></div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <!-----------------------------------------------------------------------------> | ||
+ | <img id="hpedu_pbeg_pic" class="subtitle" src="https://static.igem.org/mediawiki/2017/0/0e/HpAg_study.png"> | ||
+ | |||
+ | <div class="hpedu_pbeg"> | ||
+ | <div class="show2"> | ||
+ | <p> | ||
+ | Bring the concept of Synthetic biology to the public. Sparkle Biology with interdisciplinary awareness to the students and the public. | ||
+ | </p> | ||
+ | <ol> | ||
+ | <li>Introduction of Synthetic Biology and iGEM to public</li> | ||
+ | <li>IoT camp & Syn-bio camp: extension of abilities for iGEMers </li> | ||
+ | <li>The inspiration of our project - application of Synthetic Biology</li> | ||
+ | <li>The fulfillment of our project - pursuing smart agriculture </li> | ||
+ | </ol> | ||
+ | |||
+ | |||
+ | <div><img class="show2_pic" src="https://static.igem.org/mediawiki/2017/4/4f/Ptp_hide.png" style="display:block; margin:auto;"></div> | ||
+ | </div> | ||
+ | |||
+ | <div class="hide2"> | ||
+ | <h1>Green agricultural market “Green You ii Me - sparkling ideas with the biological application on agriculture</h1> | ||
+ | |||
+ | <p> | ||
+ | We were glad to have the chance to participate in the green agricultural market "Green You ii Me", which was held at the NTHU campus in weekends and farmers there promoted the concept of green, organic agriculture, and organic | ||
+ | products. The experience inspired practical applications of our system. | ||
+ | </p> | ||
+ | |||
+ | <p> | ||
+ | After talking to the farmers, we found that farmers were suffering a serious defeat from the agricultural system and they generally lacked of the knowledge of biopesticides. Through overall investigation, the epidemic diseases | ||
+ | caused by fungi needed a systematically and accurately applicable method to solve. | ||
+ | </p> | ||
+ | |||
+ | <h3>Fungal diseases needs to be controlled effectively.</h3> | ||
+ | |||
+ | <p> | ||
+ | Once the environmental conditions reaches, the pathogen will germinate and infect the host and other plants rapidly which is highly contagious. Due to the hazardous infectiousness of fungi, we came out an conclusion that | ||
+ | designing the “prevention” would be more effective than only "treatments". | ||
+ | </p> | ||
+ | |||
+ | <h3>The concept and the promotion of biopesticides and systematically compiling could take over the abusing of chemical pesticides.</h3> | ||
+ | |||
+ | <p> | ||
+ | The current agriculture is lacking of exploration and promotion of biopesticides. There are useful information recorded in databases on the Internet, but farmers have no access to it, and also they have no way to record the | ||
+ | situation of their own farms. Establishing a system to aggregate new data and do further arrangement or analysis would be helpful for farms and also create more values on the research of biopesticides, which is a Win-win strategy. | ||
+ | After all, the success of more cases could be the best way to convince other farmers to use biopesticides. | ||
+ | </p> | ||
+ | |||
+ | <h3>Farmers who implement organic agriculture are actually not familiar to the knowledge of biopesticides.</h3> | ||
+ | |||
+ | <p> | ||
+ | Biopesticides are more likely to degrade in the environment, comparing to chemical pesticides, and almost proteins or peptides also have many features and mechanisms. Nonetheless, theories, experiments in labs and all information | ||
+ | would be useless for farmers unless we introduce them in user-friendly ways. Farmers should know "When to use “and “Which kind of biochemical pesticide should be used” to have the best function, or they might not get the expected effect. | ||
+ | Thus, basic knowledge and information is one of the key points for farmers to trust biopesticides. | ||
+ | </p> | ||
+ | |||
+ | <img src="#" width="60%" style="display: block; margin: auto;"> | ||
+ | |||
+ | <h1>Fulfillment of Smart Agriculture – Taiwan Productivity 4.0 Initiative </h1> | ||
+ | |||
+ | <p> | ||
+ | Taiwan Agro-Productivity 4.0 Initiative integrates intelligent and digital technology into traditional industry, trying to bring Knowledge Intensive Industry into Wisdom Intensive Industry. Let the 3.0 industrial revolution | ||
+ | which uses electronics and IT to achieve automation of manufacturing to level up to 4.0 industrial revolution based on Cyber-Physical System. | ||
+ | </p> | ||
+ | |||
+ | <p> | ||
+ | To promote biologically agricultural usage and break through the bottleneck of fungal diseases in the same time, turning the traditional agriculture into a high-tech advantage level is the best way . It’s important to increase | ||
+ | economic efficiency and lower the environmental cost. We combined these models to deal with more problems to be competitive: | ||
+ | </p> | ||
+ | |||
+ | <ul> | ||
+ | <li>IoT</li> | ||
+ | <li>Cloud Computing</li> | ||
+ | <li>Big Data </li> | ||
+ | </ul> | ||
+ | |||
+ | <p> | ||
+ | On 28 July, we attended the ASIA AGI-TECH EXPO & FORUM, which was held in Taipei Nangang Exhibition Center. We tried to refresh our idea on the project to with the perspective of technology. We became more familiar with the | ||
+ | application of automated storage management monitoring platform and cloud computing, and also knew the importance of our project that can make good contributions to humans. | ||
+ | </p> | ||
+ | |||
+ | <img src="#" width="60%" style="display: block; margin: auto;"> | ||
+ | |||
+ | <div><img class="hide2_pic" src="https://static.igem.org/mediawiki/2017/c/cb/Ptp_show.png" style="display:block; margin:auto;"></div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <!-----------------------------------------------------------------------------> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | |||
+ | <div id="fut"></div> | ||
+ | |||
+ | </body> | ||
+ | |||
</html> | </html> | ||
+ | |||
+ | {{NCTU_Formosa/Footer}} |
Revision as of 09:42, 27 October 2017
Bring the concept of Synthetic biology to the public. Sparkle Biology with interdisciplinary awareness to the students and the public.
- Introduction of Synthetic Biology and iGEM to public
- IoT camp & Syn-bio camp: extension of abilities for iGEMers
- The inspiration of our project - application of Synthetic Biology
- The fulfillment of our project - pursuing smart agriculture
Introduction to high school students and the public in group admission interview in NCTU
On March 25th, NCTU_Formosa introduced iGEM competition, our previous projects, and some conventional equipment in the laboratory to high school students islandwide during the group admission interview held by the Department of Biological Science and Technology, NCTU. Many of the students showed keen interest about iGEM during the introduction. The event gave high school students and the public an access to learn more about synthetic biology and the concept of multidisciplinary technology application. Most importantly, iGEM makes us learn by doing, and the event which also held in the past few years attracted people who is now members in 2017 NCTU_Formosa team.
A visit from City University of Hong Kong
On May 23rd, City University of Hong Kong came to National Chiao Tung University to visit the Department of Biological Science and Technology. In this event, NCTU_Formosa introduced iGEM to them, while most of them majored in engineering. They learned about our project in recent four years, having lunch with us after the event. During the time we were together, the ideas from different fields, biology and engineering, started to combine together and sparkled new thoughts. They said that our project sounded amazing, showing a great interest to take part in iGEM. We look forward to seeing them participating in iGEM in the future.
IoT camp for science-gifted students in Taichung First Senior High School - the extension of synthetic biology in iGEM to engineering
Our team considers the ability of hardware and software important as biology is, so from July 17th to July 21st, NCTU_Formosa held an IoT camp to promote the application of IoT. During the camp, we introduced basic electronic components, electronic circuits to the students, and the compiling of a micro-controller platform, Arduino. And what is also important is that the application of IoTtalk. With these techniques, they can try building an automatic mobile vehicle. The lessons we provided included a speech delivered by Dr. Jason Yi-Bing Lin, who did good research in the field, and a Makerathon for students to make their own project.
Bring the concept of Synthetic biology to the public. Sparkle Biology with interdisciplinary awareness to the students and the public.
- Introduction of Synthetic Biology and iGEM to public
- IoT camp & Syn-bio camp: extension of abilities for iGEMers
- The inspiration of our project - application of Synthetic Biology
- The fulfillment of our project - pursuing smart agriculture
Green agricultural market “Green You ii Me - sparkling ideas with the biological application on agriculture
We were glad to have the chance to participate in the green agricultural market "Green You ii Me", which was held at the NTHU campus in weekends and farmers there promoted the concept of green, organic agriculture, and organic products. The experience inspired practical applications of our system.
After talking to the farmers, we found that farmers were suffering a serious defeat from the agricultural system and they generally lacked of the knowledge of biopesticides. Through overall investigation, the epidemic diseases caused by fungi needed a systematically and accurately applicable method to solve.
Fungal diseases needs to be controlled effectively.
Once the environmental conditions reaches, the pathogen will germinate and infect the host and other plants rapidly which is highly contagious. Due to the hazardous infectiousness of fungi, we came out an conclusion that designing the “prevention” would be more effective than only "treatments".
The concept and the promotion of biopesticides and systematically compiling could take over the abusing of chemical pesticides.
The current agriculture is lacking of exploration and promotion of biopesticides. There are useful information recorded in databases on the Internet, but farmers have no access to it, and also they have no way to record the situation of their own farms. Establishing a system to aggregate new data and do further arrangement or analysis would be helpful for farms and also create more values on the research of biopesticides, which is a Win-win strategy. After all, the success of more cases could be the best way to convince other farmers to use biopesticides.
Farmers who implement organic agriculture are actually not familiar to the knowledge of biopesticides.
Biopesticides are more likely to degrade in the environment, comparing to chemical pesticides, and almost proteins or peptides also have many features and mechanisms. Nonetheless, theories, experiments in labs and all information would be useless for farmers unless we introduce them in user-friendly ways. Farmers should know "When to use “and “Which kind of biochemical pesticide should be used” to have the best function, or they might not get the expected effect. Thus, basic knowledge and information is one of the key points for farmers to trust biopesticides.
Fulfillment of Smart Agriculture – Taiwan Productivity 4.0 Initiative
Taiwan Agro-Productivity 4.0 Initiative integrates intelligent and digital technology into traditional industry, trying to bring Knowledge Intensive Industry into Wisdom Intensive Industry. Let the 3.0 industrial revolution which uses electronics and IT to achieve automation of manufacturing to level up to 4.0 industrial revolution based on Cyber-Physical System.
To promote biologically agricultural usage and break through the bottleneck of fungal diseases in the same time, turning the traditional agriculture into a high-tech advantage level is the best way . It’s important to increase economic efficiency and lower the environmental cost. We combined these models to deal with more problems to be competitive:
- IoT
- Cloud Computing
- Big Data
On 28 July, we attended the ASIA AGI-TECH EXPO & FORUM, which was held in Taipei Nangang Exhibition Center. We tried to refresh our idea on the project to with the perspective of technology. We became more familiar with the application of automated storage management monitoring platform and cloud computing, and also knew the importance of our project that can make good contributions to humans.