Contrary to the arguments of some (that much of the pacific was settled by Polynesians accidentally marooned after being lost and adrift), it seems reasonable (that this feat was accomplished by deliberate colonization expeditions that set out fully stocked with food and domesticated plants and animals.)

许多太平洋小岛被波西米亚人偶然的定居,这些波西米亚人在被遗弃和漂泊之后偶然地孤立无援。与这个观点相反的是,(故意的殖民远航者在太平洋小岛上定居,这些远航者携带着丰富的食物和国内植物和动物)这个理论是理性的。

it seems reasonable that this feat was accomplished by deliberate colonization expeditions that set out fully stocked with food and domesticated plants and animals.

Contrary to The pacific was settled by Polynesians,The pacific was accomplished by expeditions .

不是波西米亚人定居太平洋,而是被远航者定居太平洋。

adrift漂泊的

stock提供货物

=========================================================================

Some people have argued that the Pacific was settled by traders who became lost while transporting domesticated plants and animals.

the Pacific was settled by traders----错误,Some people认为波西米亚人在太平洋定居。

==========================================================================

The original Polynesian settlers were probably marooned on the islands, but they may have been joined later by carefully prepared colonization expeditions.

Polynesian settlers were probably marooned on the islands, but they may have been joined later ---错误,主要讲reasonable的例子

marooned孤立无援的

=======================================================================

Although it seems reasonable to believe that colonization expeditions would set out fully stocked, this is contradicted by much of the evidence.-----------错误,转折相反

contradicted 反驳

=======================================================================

The settlement of the Pacific islands was probably intentional and well planned rather than accidental as some people have proposed.

The settlement of the Pacific islands was probably intentional and well planned rather than accidental as some people have proposed.

intentional 有意的

Proposed 提出

太平洋小岛上的定居者是有意的且计划好的,而不是像一些人提出的偶然性的定居者。

TPO5-2 The Origin of Pacific Island People的更多相关文章

  1. python绘制世界人口地图

    最近看了<python编程:从入门到实践>,里边设计的项目拿来学习学习,绘制世界人口地图. 首先,下载数据,http://data.okfn.org/ ,从这里下载population_d ...

  2. Codeforces GYM 100114 B. Island 水题

    B. Island Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100114 Description O ...

  3. LightOJ 1418 Trees on My Island (Pick定理)

    题目链接:LightOJ 1418 Problem Description I have bought an island where I want to plant trees in rows an ...

  4. [LeetCode] Island Perimeter 岛屿周长

    You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represen ...

  5. [LeetCode] Pacific Atlantic Water Flow 太平洋大西洋水流

    Given an m x n matrix of non-negative integers representing the height of each unit cell in a contin ...

  6. 463. Island Perimeter

    https://leetcode.com/problems/island-perimeter/ 在一个N×N的矩阵中,N<100,1代表岛,0代表海,岛内没有海,求岛的周长 [[0,1,0,0] ...

  7. homebrew update 出现Failure while executing: git pull --quiet origin refs/heads/master:refs/remotes/origin/master解决方案

    具体可以参考https://github.com/Homebrew/homebrew/issues/21002 cd /usr/local git status git reset --hard or ...

  8. Leetcode-463 Island Perimeter

    #463. Island Perimeter You are given a map in form of a two-dimensional integer grid where 1 represe ...

  9. Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:9001/api/size/get. (Reason: CORS header 'Access-Control-Allow-Origin' missing).

    Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http:/ ...

随机推荐

  1. C3P0模板

    1.创建c3p0-config.xml配置文件放在src下 <?xml version="1.0" encoding="UTF-8"?> <c ...

  2. [题解] Luogu P2000 拯救世界

    生成函数板子题...... 要写高精,还要NTT优化......异常dl 这个并不难想啊...... 一次召唤会涉及到\(10\)个因素,全部写出来,然后乘起来就得到了答案的生成函数,输出\(n\)次 ...

  3. NCRE的JAVA二级考试大纲

    全国计算机等级考试二级 Java 语言 程序设计考试大纲(2018 年版) 基本要求 1. 掌握 Java 语言的特点.实现机制和体系结构. 2. 掌握 Java 语言中面向对象的特性. 3. 掌握 ...

  4. C语言编程实现SYN-Flood(Dos)攻击

    ## 实验环境为了方便,直接在win10 VS2013Ultimate实现(攻击机),靶机为同一局域网的另外一台主机或外网服务器.   ## 实验依赖基于WinPcap实现,需要安装WinPcap4. ...

  5. 吴裕雄--天生自然 PHP开发学习:数据类型

    <?php $x = "Hello world!"; echo $x; echo "<br>"; $x = 'Hello world!'; e ...

  6. 学习spring的第一天

    1.首先在maven repository中找到Spring Context依赖添加进模块 2.配置xml,resources右键new→xml configuration file→Spring C ...

  7. 读取cookie、写进cookie方法

    整理 读取cookie.写进cookie方法. //设置cookies中的值 function setCookie(name, value) { var Days = 30; var exp = ne ...

  8. 读书笔记 - js高级程序设计 - 第四章 变量 作用域 和 内存问题

      5种基本数据类型 可以直接对值操作 判断引用类型 var result = instanceof Array 执行环境 每个执行环境都有一个与之关联的变量对象,环境中定义的所有变量和函数都保存在这 ...

  9. 18 11 26 用多进程 多线程 携程 实现 http 服务器的创建

    下面是一个  多进程 服务器的创建 import socket import re import multiprocessing def service_client(new_socket): &qu ...

  10. Java Web应用的加载过程

    在介绍Spring IoC和MVC的加载前,用这篇小文章简单地记录下,最简单的web应用的加载过程. 一.从最简单的web应用出发 使用Eclipse直接创建一个Dynamic Web Project ...