resume|issue|transmit|sake|obliged|beyond her wildest dreams|echo|transmission|immense|consistent |convey to| boasted|satisfaction|rub|enrol|demonize
If an activity resumes, or if you resume it, it startsagain after a pause.
(中断后)继续,重新开始
An issue of shares is a time when a company gives people the chance to buy part of it or gives extra shares to people who already own some.
(股票的)发行
If one person or animal transmits a disease to another, they have the disease and cause the other person or animal to have it.
...mosquitoes that transmit disease to humans...
传染疾病给人类的蚊子
PHRASE 由于;为了;因为…的缘故If you do something for the sake of something, you do it for that purpose or in order to achieve that result. You can also say that you do it for something's sake .
Let's assume for the sake of argument that we manage to build a satisfactory database...
为了便于讨论,不妨假定我们成功地建立了一个令人满意的数据库。
VERB (形势、规定或法律)强迫,迫使If you are obliged to do something, a situation, rule, or law makes it necessary for you to do that thing.
The storm got worse and worse. Finally, I was obliged to abandon the car and continue on foot...
暴风雨愈发猛烈,我最终不得不弃车步行
Suddenly she was rich beyond her wildest dreams.她突然出乎意料地发了大财。
N-COUNT (态度、观点或说法的)重复,附和An echo is an expression of an attitude, opinion, or statement which has already been expressed.
I hear an echo of the thinking that got us into this mess in the first place...
我听到有人重提那个最先使我们陷入这一困境的想法。
Political attacks work only if they find an echo with voters.
政治攻击只有在选民中引起共鸣才会有作用。
N-UNCOUNT (电视、广播节目的)播送,播放The transmission of television or radio programmes is the broadcasting of them.
ADJ-GRADED 广大的;巨大的If you describe something as immense, you mean that it is extremely large or great.
...an immense cloud of smoke...
大片的烟云
DJ (观点等)一致的,吻合的,不矛盾的If one fact or idea is consistent with another, they do not contradict each other.
This result is consistent with the findings of Garnett & Tobin...
这个结果与加尼特托宾公司的调查结果一致。
Please convey our condolences to the family.请向家人转达我们的哀思。
VERB 吹嘘;炫耀;夸耀If someone boasts about something that they have done or that they own, they talk about it very proudly, in a way that other people may find irritating or offensive.
Witnesses said Furci boasted that he took part in killing them...
几位证人声称富尔奇曾吹嘘自己参与了对他们的屠杀。
PHRASE 令…满意If you do something to someone's satisfaction, they are happy with the way that you have done it.
She never could seem to do anything right or to his satisfaction...
她似乎从没能做过一件正确或令他满意的事。
VERB (用布)擦干,擦净,擦拭If you rub an object or a surface, you move a cloth backward and forward over it in order to clean or dry it.
She took off her glasses and rubbed them hard...
她摘下眼镜使劲擦着。
to put yourself or someone else onto the official list of membersof a course, college, or group
(使)加入;注册;招(生);吸收
VERB 将…妖魔化;把…想象成魔鬼If people demonize someone, they convince themselves that that person is evil.
Each side began to demonize the other.
双方都开始把对方妖魔化。
resume|issue|transmit|sake|obliged|beyond her wildest dreams|echo|transmission|immense|consistent |convey to| boasted|satisfaction|rub|enrol|demonize的更多相关文章
- RS-232, RS-422, RS-485 Serial Communication General Concepts(转载)
前面转载的几篇文章重点介绍了UART及RS-232.在工控领域除了RS-232以外,常用的串行通信还有RS-485.本文转载的文章重点介绍了RS-232.RS-422和RS-485. Overview ...
- 【POJ-2482】Stars in your window 线段树 + 扫描线
Stars in Your Window Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 11706 Accepted: ...
- POJ 2482 Stars in Your Window 线段树扫描线
Stars in Your Window Description Fleeting time does not blur my memory of you. Can it really be 4 ...
- POJ 2482 扫描线(面积覆盖最大次数)
Stars in Your Window Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10806 Accepted: ...
- CentOS 6.4安装AMH面板
复制以下代码 然后执行 或者下载wget http://amysql.com/file/AMH/3.2/amh.sh; chmod 775 amh.sh; ./amh.sh 2>&1 | ...
- IEEE 802.3 Ethernet
Introduction Ethernet 是过去30年以来最为成功的局域网(local area networking)技术. 1. First widely used LAN technology ...
- acmer -- 最美的情书
2014-09-29 20:51:45 POJ 2482 Fleeting time does not blur my memory of you. Can it really be 4 years ...
- 【POJ2482】【线段树】Stars in Your Window
Description Fleeting time does not blur my memory of you. Can it really be 4 years since I first saw ...
- phabricator 搭建
os:debian7 Installation Guide :https://secure.phabricator.com/book/phabricator/ $ cd /data # 安装目录 da ...
随机推荐
- MVC——再探MVC——增删查改
MVC 是我大学学的比较弱的,甚至不懂原理.(那时候都在准备蓝桥杯 软件杯比赛.) 在重新学 肯定要学MVC 现在知道了为什么叫MVC了 MVC是怎么工作的 MVC 是一个设计模式 控制器(Cont ...
- Activity组件:(一)通过显式意图和隐式意图来实现Activity间的跳转
一.通过显式意图来实现Activity间的跳转 显式意图是指在创建Intent对象时就指定接受者组件 /** * 下面是通过显式意图进行跳转,即明确写出要跳转到SecondActivity.class ...
- ThreeJS 阴影条纹BUG
ThreeJS 开启阴影正确做法: 1. 渲染器启用阴影 renderer.shadowMap.enabled = true;2. 灯光产生阴影 light.castShadow = true;3. ...
- 深入理解JVM - JVM内存模型
各版本的差异 JDK1.6 在JDK1.6 的时候运行时常量池在方法区中 JDK1.7 在JDK1.7 的时候运行时常量池在堆中 JDK1.8 在JDK1.8 的时候,JVM内存模型直接将方法区移到了 ...
- NFS 文件共享
备注:NFS 文件共享需设置两部分:服务端和客户端 一.服务端设置 1.1.查看nfs包是否安装,未安装则重新安装 [root@localhost ~]# rpm -qa|grep rpcbind r ...
- Linux下自由切换用户
切换用户的命令是su,su是(switch user)切换用户的缩写.通过su命令,可以从普通用户切换到root用户,也可以从root用户切换到普通用户. 上述图中是linux下的终端页面,其中pyv ...
- 当年写的C代码
#ifndef KMIN_H_ #define KMIN_H_ /******************************************************************* ...
- 线程池-进程池-io模型
一.线程池与进程池 什么是池?简单的说就是一个容器,一个范围 在保证计算机硬件安全的情况下最大限度的充分利用计算机, 池其实是降低了程序的运行效率,但是保证了计算机硬件的安全,也是实现了一个并发的效果 ...
- NAIPC2018
NAIPC2018 参考:http://www.cnblogs.com/LQLlulu/p/9513669.html?tdsourcetag=s_pctim_aiomsg https://www.cn ...
- 量化投资_TB交易开拓者A函数和Q函数常见组合应用
1 在交易开拓者当中,关于交易的做单方式一般分为:图表函数和A函数两类. 两类的主要区别为:如果采用图表函数的话,所有的交易内容都是以图表上面的信号为准,当前仓位运行的实际状态是没有的,但是可以显示交 ...