Home avatar

卢旺

细胞生物学硕士生在读, 正在努力学习数理化

但尽人事 不问前程

TOEFL | 社会文化相关背景材料+习题精炼

  • 人类语言的特点:语言 (language) 是一种人类特有交流方式的,而动物通过交流系统 (communication system)进 行沟通。与交流系统相比,人类语言有3个独特之处:
    • 学习能力(learn ability) , 语言是可以通过学习得到的,比如大家在努力学英语;
    • 不连续性(discreteness) , 语言中不连续的单元可以用不同的次序组合,形成不同含义;
    • 位移性(displacement) , 语言可以描述不在此时此地发生的事。
  • 语言家族谱系树 (the family tree model):世界上有超过5000种语言,但是很多语言都有相似之处。例如,闪米特语 (Sanskirt), 拉丁语(Latin) 和希腊语 (Greek), 语言学家认为这三门语言都源自于同一个母语(mother language) —— 原始印欧语(Proto- Indo- European)。
  • 语言学家发展出一种标记语言演化的方法——语言家族谱系树,这种方法形象地展示了语言家族如何发展,两种之间的紧密程度。
  • 格莱斯准则 (Gricean Maxims):在人们的交流中,有一些基本的原则是不能违背的,这就是格莱斯准则 (Gricean Maxims) 。
    • 质量原则(quality) , 不要说假话 ( do not say what you believe to be false);
    • 相关原则(relevance) , 答案要与问题相关,说话者给出暗示 (imply), 听众做出合理推测 (inference);
    • 数量原则(quantity) , 交谈的双方应该给出尽可能多的信息量。 相关 TPO 篇目: TPO9-L4,TPO19-L1,TPO20-L1 重点词条: Gricean Maxims
TPO20-L2: Gricean Maxims

  • What is the main topic of the lecture?

TOEFL | 生物/生态学相关习题精练+词汇整理

阅读1:Invading Algae (TPO72-1)

Biological invasions by exotic species are an escalating threat to biodiversity around the globe. Invasive species can displace native ones and irrevocably alter ecosystems. Most imported species either die or have limited growth in their new home, but a small percentage of the newcomers are opportunists whose growth is dangerously out of control. The story of how Caulerpa taxifolia became famous as one of these species began in 1989, when Dr. Alexandre Meinesz, a marine biologist at the University of Nice in France, learned that this exotic alga, which is native to the Caribbean and other tropical seas, was thriving in the Mediterranean waters off the coast of Monaco. Upon investigation, Meinesz discovered that a mutant variety of C. taxifolia was dumped into the Mediterranean with other aquarium refuse by the prestigious Oceanographic Institute of Monaco. Eventually, the C. taxifolia was traced back to a stock developed at the Wilhelma Zoological and Botanical Gardens in Stuttgart, Germany. This stock of C. taxifolia had caught the attention of amateur and professional aquarists for its exceptional beauty and hardiness and had been widely distributed in public and private aquaria in the 1980s.

TOEFL | 天文相关背景整理+习题精炼

  • 系外行星 (Exoplanet):系外行星是太阳系之外的行星,它们围绕自己的主恒星(host stars) 旋转,系外行星大部分是气态行星(gas giants),但 也 存 在岩质行星(rocky planet)。当前研究系外行星的目的,是想发现主恒星附近可以支持生命存在的宜居带(habitable zone)。在宜居带里的系外行星需要满足下面的条件:

对动粒蛋白组分的整理

近期读到最新的Science文章,解析了酵母外层动粒与微管互作界面的冷冻电镜结构,太漂亮了!之前一直觉得top-view的动粒是存在超微结构的,只可惜没有合适的方法去做。也因此想起来之前从事动粒蛋白互作组相关课题时,写过一些对动粒组分的总结,趁着对动粒结构还有热情再整理一下。

Rust | 02. 包管理、集合(String、Vector、HashMap)、错误处理

  • 代码组织需要包括哪些细节可以暴露,哪些细节可以私有,作用域内哪些名称有效等等;Rust的代码组织(也可以叫模块系统)如下:
    • Package(包),是Cargo的特性,让你构建、测试、共享crate
    • Crate(单元包),一个模块树,它可以产生一个library或可执行文件
    • Module(模块)、use,让你控制代码的组织、作用域、私有路径
    • Path(路径),是为Struct、function、module等项命名的方式
  • Crate有两种类型,即binary或library;Crate root是指源代码文件,Rust编译器会从这里开始,组成你Crate的根Module;一个Package包含了一个Cargo.toml文件(用于描述了如何构建这些Crates),一个package只能包含0-1个library crate,以及任意数量的binary crates,另外,一个library至少包含一个crate(library或binary)

关于打印机的一些知识

前段时间在实验室修理打印机,加之了解到纸模这种游戏,就导致最近很上头打印机,于是做了一些调研工作,对于打印机大致的技术原理总结如下