来自英语课的一个练习:

https://www.youtube.com/watch?v=ePY3uY1L0X0

next up I'd like to welcome Joshua to ten he's from the ANU College of Medicine biology and the environment

and the title of his three-minute thesis presentation tonight is targeting the route of vision loss

if I asked everyone here to think about the one sense that you couldn't live without

I'm willing to bet that most of you would have immediately thought of your sucked

从听众已知的知识和认知引入话题

that's because our vision and what we see play such an integral role into how we perceive the world around us

now the tissue responsible for that is known as the retina

基本常识的介绍,话题的重要性

but what if I told you specific part of your retina was too slowly damaged as the age

what if this part of your retina was responsible for your color perception as well as your central vision

and that this damage leads to your visual field looking like this

well this is exactly what happens an age-related macular degeneration or AMD

继续引入到我们想要讲的话题

this disease is the leading cause of blindness in the developed world

this disease cost the extremely economy up to five billion dollars per year

in the most common form of this disease has no cure

AMD is a serious problem

now due to the many factors that are at play therapies are very hard to come by

介绍我们主题的一些基本特性

but I'm researching a potential gene therapy using tiny molecules called micro RNA that are like the gods of gene regulation and have the ability to bypass this problem

how

because a single micro RNA can bind to multiple targets

so instead of controlling just the one gene we're controlling its entire pathway instead of superficially cutting just the stem of the weed we're ripping out the whole root

开始引入我们特殊的疗法

so in the case of AMD we know that the inflammatory pathway plays a major role

so we've injected an anti-inflammatory micro RNA into the eye

and what we saw was a decrease in genes responsible for inflammation cell death as well as a

slowing in the damage progression of the retina

but we've now done has identified multiple micro RNA that can each regulate pathways leading to AMD and by injecting a cocktail of these molecules

we can slow the progression of the zees and hopefully halt vision loss now

具体举例,我们的研究以及结果

I want everyone to look at this image again

imagine living the rest of your life with vision like this

so the next time you're with your loved ones study their faces their every feature commit that to memory cherish that image

because one in seven of you will lose that ability if nothing is done about this disease

再次通过同理心说明该研究的重要性

with the use of micro RNA my hope and my goal is that for millions of people this image can become clear

一句话总结我们的研究成果

thank you

3分钟快速presentation的更多相关文章

  1. 一分钟快速入门openstack

    一.它是什么,能干什么想认识一个事物,必须先弄明白它是什么,能干什么.首先说一下,openstack是一个搭建云平台的一个解决方案,说他不是个软件,但是我觉得说是一个软件,能够让大家认识更清晰些.op ...

  2. 30分钟快速掌握AngularJs

    [后端人员耍前端系列]AngularJs篇:30分钟快速掌握AngularJs   一.前言 对于前端系列,自然少不了AngularJs的介绍了.在前面文章中,我们介绍了如何使用KnockoutJs来 ...

  3. Vue.js——60分钟快速入门(转)

    vue:Vue.js——60分钟快速入门 <!doctype html> <html lang="en"> <head> <meta ch ...

  4. [转帖]十分钟快速理解DPI和PPI,不再傻傻分不清!

    十分钟快速理解DPI和PPI,不再傻傻分不清! https://baijiahao.baidu.com/s?id=1605834796518990333&wfr=spider&for= ...

  5. 5分钟快速打造WebRTC视频聊天<转>

    原文地址: 5分钟快速打造WebRTC视频聊天 百度一下WebRTC,我想也是一堆.本以为用这位朋友( 搭建WebRtc环境 )的SkyRTC-demo 就可以一马平川的实现聊天,结果折腾了半天,文本 ...

  6. Vue.js 60 分钟快速入门

    Vue.js 60 分钟快速入门 转载 作者:keepfool 链接:http://www.cnblogs.com/keepfool/p/5619070.html Vue.js介绍 Vue.js是当下 ...

  7. 不会几个框架,都不好意思说搞过前端: Vue.js - 60分钟快速入门

    Vue.js——60分钟快速入门   Vue.js是当下很火的一个JavaScript MVVM库,它是以数据驱动和组件化的思想构建的.相比于Angular.js,Vue.js提供了更加简洁.更易于理 ...

  8. 零元学Expression Blend 4 - Chapter 42 五分钟快速完成扇形变圆形动画

    原文:零元学Expression Blend 4 - Chapter 42 五分钟快速完成扇形变圆形动画 零元学Expression Blend 4 - Chapter 42 五分钟快速完成扇形变圆形 ...

  9. 【Java】15分钟快速体验阿里Java诊断工具Arthas

    [墙裂推荐]15分钟快速体验阿里Java诊断工具Arthas : https://alibaba.github.io/arthas/arthas-tutorials?language=cn&i ...

随机推荐

  1. torch.utils.data.DataLoader使用方法

    数据加载器,结合了数据集和取样器,并且可以提供多个线程处理数据集.在训练模型时使用到此函数,用来把训练数据分成多个小组,此函数每次抛出一组数据.直至把所有的数据都抛出.就是做一个数据的初始化. 生成迭 ...

  2. byte转bit

    由于项目需要,传过来的数据是高位到低位的Byte,需要输出低位到高位的bool数组. public static bool[] getBits(byte[] byt) { bool[] ret = n ...

  3. oracle 日期取 月 日

    今天碰到只要取月份和天数,如果月份前面有0要去掉0.比如说2010-01-08 ,需要的结果是1-8. 引出了一系列的sql语句 第一: 利用to_number的函数转换自动截0 select to_ ...

  4. js页面路径拼接字符串进行参数传递

    页面路径拼接字符串进行参数传递: 参数传递页面: <style> input,button{ border: 1px solid red; } body { font-size:24px; ...

  5. JavaScript--浅谈!=、!==、==和===的区别

    == 和 != 比较若类型不同,先偿试转换类型,再作值比较,最后返回值比较结果 === 和 !== 只有在相同类型下,才会比较其值 <!DOCTYPE html> <html> ...

  6. rsync 守护进程备份报错

    [root@nfs01 backup]# rsync -avz  /backup rsync_backup@172.16.1.41::backupPassword: @ERROR: auth fail ...

  7. python 匿名函数捕获变量值 (执行时的值)

  8. websocket 二合一

    server from flask import Flask, request, render_template from geventwebsocket.handler import WebSock ...

  9. js 取消事件冒泡

    html部分 <input type="button" id="btn1" value="按钮" /> <div id=& ...

  10. nodejs笔记之搭建服务器

    简单服务器搭建: 1.新建一个文件:app.js 2.加入实现服务器代码: const http = require("http"); http.createServer(func ...