The leaders of the two countries are planning their summit meeting with a (pledge) to maintain and develop good ties.
两国的领导人计划举办一场发表誓约的峰会以维持和发展彼此良好的关系。
Many youngsters have heard their parents say “You'll never (amount to) anything if you keep daydreaming that way!"
By advocating (moderate)reasonable change, they think that they can keep consumer costs low.
通过采取一些适度的改变,他们相信能够保持消费者的低成本。
Nuclear power , with all its inherent problems , is still the only (option) to guarantee enough energy in the future.
The promised wage increase is being delay(held back) while it is examined by the government to see if it is greater than the law allows.
提薪的承诺被搁置了,因为政府正在审查它是否超过了法律所允许的额度。
Safety officials have seriously(earnestly) questioned whether the increased use of synthetic materials heightens the risk of fire.
安全部门的官员已经认真地询问了增加合成材料的使用是否会增大火灾风险的问题。
The book shifted her viewpoint(outlook) from social to spiritual,for its theme was that before you change other people you have to change yourself.
这本书使她的观点从社会方面转移到精神方面,因为该书的主题是:在你改变别人之前,你必须先改变自己
The Americans recognize that the UN can be the medium(channel) for greater diplomatic activity.
美国承认联合国会成为更大外交活动的渠道。
The growth of part-time and flexible working pattern allows more women to (take advantage of) job opportunities.

Nobody can help but be (fascinated) by the world into which he is taken by the science fiction.
没有人能够忍住不被科幻小说迷人的世界所吸引。
Senator James Meeks has cancel(called off ) a boycott of Chicago Public Schools, organized to protest 抗议 Illinois education funding system.
参议员詹姆士•米克取消了芝加哥公立大学的一场联合抵制。这场抵制是为了反对伊利诺伊州的教育基金制度的。
I prefer chicken to fish because I am worried about (accidentally) swallowing a small bone.

The 16 percent fare increase would bring Chicago fares in agreement with (in line with) those of other big cities.

It is true that London is often sunless, moist(damp) and raw, though the occasional sunny days seem all the more attractive by contrast.
伦敦确实是经常没有阳光,潮湿阴冷,然而相比之下偶尔有阳光的日子似乎更迷人。

Like flowers that have been waiting all winter to bloom(blossom), tourists are eager to burst forth with their cameras.
像鲜花酝酿了整个冬天才绽放一样,游客们迫不及待地拿着照相机照相。

L207的更多相关文章

  1. OpenWebGlobe-开源三维GIS初体验(附源码和演示)

    1.OpenWebGlobe简介 OpenWebGlobe是一个高性能的三维引擎.可应用于可视化仿真,游戏,三维GIS,虚拟现实等领域.它使用纯javascript编写,可以运行在任何支持HTML5. ...

  2. chp-adapter 文件结构

    1.需要接口给chp推送数据的Bean,写到/chp-adapter/src/main/java/com/creditharmony/adapter/service 文件夹中,并添加父类,供chp业务 ...

  3. CoreCLR源码探索(二) new是什么

    前一篇我们看到了CoreCLR中对Object的定义,这一篇我们将会看CoreCLR中对new的定义和处理 new对于.Net程序员们来说同样是耳熟能详的关键词,我们每天都会用到new,然而new究竟 ...

  4. Type in Chakra

    Type in Chakra Javascript是一个无类型的语言. 我们要讨论的类型是指Chakra内置的一些数据结构,这些结构维护了Object的信息. Type在一类Object中共享数据,使 ...

  5. CoreCLR源码2

    CoreCLR源码 前一篇我们看到了CoreCLR中对Object的定义,这一篇我们将会看CoreCLR中对new的定义和处理new对于.Net程序员们来说同样是耳熟能详的关键词,我们每天都会用到ne ...

  6. Edit the AlarmClock in AOSP with android-studio

    1. git the AlarmClock source code on AOSP 2. select 'import project' by android-studio & we will ...

随机推荐

  1. C语言通过枚举网卡,API接口可查看man 7 netdevice--获取接口IP地址

    /*代码来自StackOverflow: http://stackoverflow.com/questions/212528/linux-c-get-the-ip-address-of-local-c ...

  2. 全网最详细Apache Kylin1.5安装(单节点)和测试案例

    转:http://blog.itpub.net/30089851/viewspace-2121221/ 微视频链接: Apache Kylin初识      1.版本(当前实验版本组合,版本一定要兼容 ...

  3. [ios]ScrollView小结

    设置ScrollView self.mysrollview.contentSize = CGSizeMake(1024,768); self.mysrollview.pagingEnabled = Y ...

  4. node 循序渐进

    1. 执行 node helloworld.js 2. http  服务器 建 server.js 文件 -  node server.js  跑起来 -  浏览器访问  http://localho ...

  5. Tensorflow的基本概念与常用函数

    Tensorflow一些常用基本概念与函数(一) 1.tensorflow的基本运作 为了快速的熟悉TensorFlow编程,下面从一段简单的代码开始: import tensorflow as tf ...

  6. centos 6.5 安装mplayer

    https://centos.pkgs.org/6/linuxtech/mplayer-1.0.4-3.el6.x86_64.rpm.html

  7. Redis 安装到linux系统

    下载地址 : http://download.redis.io/releases/redis-3.0.3.tar.gz ). tar -zxvf redis-.tar.gz -C /usr/share ...

  8. Jedis 之 初始<一>

    package xx.jedis; import java.util.Set; import redis.clients.jedis.Jedis; import redis.clients.jedis ...

  9. C#验证中文

    C#验证中文的方式有很多种,下面列举了其中几种可供参考,还有正则表达式的验证这里没有写,后面有机会再补上. 方法一: private bool isChina(string msg) { string ...

  10. windows下python检查文件是否被其它文件打开

    windows下python检查文件是否被其它文件打开.md 有时候我们需要能够判断一个文件是否正在被其它文件访问,几乎不可避免的要调用操作系统接口 from ctypes import cdll i ...