学英语之converse、none和analogous

The close function performs the converse operation of the open function.

There are 12 persons, none of which are students.

The operation of shm_open is analogous to that of open.

My dad isn't that hurt, he just doesn't fully understand the concept of someone not hiring him for his lack of English when he has more experience than most people.

The attorney I've reached out to is willing to take on your case pro bono.

The committee's confrontational style of campaigning has made it unpopular.

As the employer of Mr. Peterson, please accept my sincere apologies for the communication sent by Mr. Peterson to you. Mr. Peterson's communication was inappropriate and inconsistent with our company's values. Our company is an equal opportunity employer and it is proud of its diverse workforce. Indeed, the majority of the employees performing the work for which you applied speak English as a second language and they represent a wide range of backgrounds and nationalities. While it is true that communicating effectively in English is an important part of the job in question, the manner in which Mr. Peterson communicated with you was highly inappropriate and following our investigation he is no longer employed with the company. Thank you for bringing this to our attention and I hope you will accept my sincere apology.

Props to you.

I used to think if there was reincarnation, I wanted to come back as the President or the Pope or a .400 baseball hitter. But now, I want to come back as the bond market. You can intimidate everybody.

生词之typo和globbing

typo:

打字时,按错键,打出错字,可以说打出typo了,很好记,就是type错打成typo了。

globbing:

计算机术语为通配符的意思。比如,cmake中,add_library命令中的路径名是不能用通配符的,必须先用cmake提供的file命令收集路径名到一个变量中,再将此变量赋给add_library,像这样:

1
2
3
4
5
6
7
8
file(GLOB srcs
	path1/example1/*.cpp
	path2/*.cpp
)
 
add_library(lib1
	${srcs}
)

看到其中的GLOB了没?