PHRASE 与(某人)初次相识;结识(某人)When you make someone's acquaintance, you meet them for the first time and get to know them a little.

I first made his acquaintance in the early 1960s...

我与他初次相识是在20世纪60年代早期。

ADJ If something is adequate, there is enough of it or it is good enough to be used or accepted. 足够的

例:

One in four people worldwide are without adequate homes.

世界上1/4的人没有足够的住房。

ADJ-GRADED 可取的;明智的;适当的If you tell someone that it is advisable to do something, you are suggesting that they should do it, because it is sensible or is likely to achieve the result they want.

Because of the popularity of the region, it is advisable to book hotels or camp sites in advance...

鉴于该地区很受人们青睐,最好提前预订旅馆或宿营地。

He will announce tonight that he is resigning from office...

他将于今晚宣布辞职。

VERB 成功做到;设法做到If you contrive to do something difficult, you succeed in doing it.

The orchestra contrived to produce some of its best playing for years.

这支管弦乐队呈现了精彩的演奏,堪称其多年来的巅峰演奏。

to forgive someone and be friendly with them again after an argument or disagreement

和解,言归于好

They kissed and made up, as usual.像往常一样,他们亲吻和好了。

VERB 扔;抛;掷If you toss something somewhere, you throw it there lightly, often in a rather careless way.

He screwed the paper into a ball and tossed it into the fire...

他把纸揉成一团扔进火里。

Not bad at all, considering that the share price on the day before his departure was slightly less than it was when he took the job.

考虑到他离职前公司的股票价格只比他上任时低一点,这个结果完全不那么糟糕。

made his acquaintance|adequate|advisable|announce|contrived to|made up|toss|considering that的更多相关文章

  1. Gradle 1.12用户指南翻译——第四十二章. Announce插件

    本文由CSDN博客万一博主翻译,其他章节的翻译请参见: http://blog.csdn.net/column/details/gradle-translation.html 翻译项目请关注Githu ...

  2. CF1091E New Year and the Acquaintance Estimation

    题目地址:CF1091E New Year and the Acquaintance Estimation 首先,易知 \(ans\) 的奇偶性与所有给出的数的和的奇偶性相同 其次,易证 \(ans\ ...

  3. Codeforces 1091E New Year and the Acquaintance Estimation Erdős–Gallai定理

    题目链接:E - New Year and the Acquaintance Estimation 题解参考: Havel–Hakimi algorithm 和 Erdős–Gallai theore ...

  4. addict, address, adequate.四级

    addict addiction – a biopsychosocial [生物社会心理学的 bio-psycho-social] disorder characterized by persiste ...

  5. addict, address, adequate

    addict Addiction is a biopsychosocial disorder characterized by repeated use of drugs, or repetitive ...

  6. Codeforces 1091E New Year and the Acquaintance Estimation [图论]

    洛谷 Codeforces 思路 有一个定理:Erdős–Gallai定理. 然后观察样例,可以猜到答案必定是奇偶性相同的一段区间,那么二分左右端点即可. 定理和这个猜测暂时都懒得学/证,留坑. #i ...

  7. Automatic Text Difficulty Classifier Assisting the Selection Of Adequate Reading Materials For European Portuguese Teaching --paper

    the system uses existing Natural Language Processing (NLP) tools, a parser and an hyphenator, and tw ...

  8. CET4词汇

    abandon vt.丢弃:放弃,抛弃 ability n.能力:能耐,本领 abnormal a.不正常的:变态的 aboard ad.在船(车)上:上船 abroad ad.(在)国外:到处 ab ...

  9. A Study of WebRTC Security

    转自:http://webrtc-security.github.io/ A Study of WebRTC Security Abstract Web Real-Time Communication ...

随机推荐

  1. selenium爬取优酷页面并下载图片

    from selenium import webdriver import requests driver = webdriver.Chrome() #打开优酷 driver.get("ht ...

  2. jquery鼠标键盘悬停事件,形变动画和淡入淡出

    鼠标和键盘悬停 <!DOCTYPE html> <html lang="en"> <head> <meta charset="U ...

  3. PCB布局注意事项

    PCB布局注意事项   1.实现统一功能电路模块中的元件应采用就近集中原则,同时数字电路和模拟电路分开; 2.定位孔.标准孔等非安装孔周围1.27mm 内不得贴装元.器件,螺钉等安装孔周围3.5mm( ...

  4. Linux-线程同步之互斥锁

    1.互斥锁又叫互斥量(mutex) 2.相关函数:pthread_mutex_init  pthread_mutex_destroy   pthread_mutex_lock pthread_mute ...

  5. Spring Boot 中集成 Shiro

    https://blog.csdn.net/taojin12/article/details/88343990

  6. 吴裕雄--天生自然 PHP开发学习:面向对象

    <?php class Site { /* 成员变量 */ var $url; var $title; /* 成员函数 */ function setUrl($par){ $this->u ...

  7. 数据分析-Numpy-Pandas

    补充上一篇未完待续的Numpy知识点 索引和切片 数组和标量(数字)之间运算 li1 = [ [1,2,3], [4,5,6] ] a = np.array(li1) a * 2 运行结果: arra ...

  8. NWERC 2015

    2015-2016 Northwestern European Regional Contest (NWERC 2015) F H没做 似乎只有 B 题有点意思 D:数论分块枚举所有上取整区间,只需要 ...

  9. JavaScript学习笔记 - 进阶篇(6)- JavaScript内置对象

    什么是对象 JavaScript 中的所有事物都是对象,如:字符串.数值.数组.函数等,每个对象带有属性和方法. 对象的属性:反映该对象某些特定的性质的,如:字符串的长度.图像的长宽等: 对象的方法: ...

  10. gcc -l:手动添加链接库

    链接器把多个二进制的目标文件(object file)链接成一个单独的可执行文件.在链接过程中,它必须把符号(变量名.函数名等一些列标识符)用对应的数据的内存地址(变量地址.函数地址等)替代,以完成程 ...