act

행동, 행위, 소행, 법령, 증서, (연극·가극의) 막, 행동하다, 결정을 내리다, 작용하다, ~의 역할을 하다


a brave act

용감한 행위


an act of terrorism

테러 행위


perform an act of charity

자선을 행하다.


pass an act

법령을 가결하다.


an act of sale

매도증.


the first act of a play

연극의 제1막


between acts

막간에


The hero dies in Act Three, Scene Five.

주인공은 3막 5장에서 죽는다


The time has come to act.

실행할 때가 왔다.


act foolishly

바보처럼 굴다


He acted like a child.

그는 어린아이처럼 굴었다.


Congress acted on this legislation.

의회는 이 법안을 의결했다.


act as secretary

비서 노릇을 하다


You will act for me while I'm gone.

내가 없는 동안 네가 내 대리를 하도록 해라.


The medicine acts on the heart.

이 약은 심장에 효과가 있다


act the clown

광대역을 하다



action

활동, 행동, 작동


out of action

작동하지 않는


in action

작동 중에


kick into action

활동을 개시하다


He is quick in action.

그는 동작이 민첩하다.


a kind action

친절한 행위


good actions

선행


be responsible for one's actions

자기의 행동에 대해 책임이 있다


action and reaction

작용과 반작용


the action of acid on metal

산이 금속에 미치는 작용



active

활동적인


an active man

활동적인 사람


an active career

활약이 화려한 경력


be politically active

왕성하게 정치 활동을 하다.


active negotiations

진행 중인 협상


an active coal mine

조업 중인 탄광


an active volcano

활화산.


active sports

격렬한 스포츠


active laws

현행법



activity

활동, 활동 상태


the activity of a volcano

화산 활동


be in full activity

왕성하게 활동하고 있다.


a time of full activity

한창 활동할 시기


political activities

정치 활동


outdoor activities

야외 활동



actor

배우, 남자 배우


a film actor

영화 배우.


actress

여배우



actual

현실의, 실제로 존재하는[일어난], 실제의


actual expenses

실비


actual speech

직접적인 말


in actual life

실생활에서.



activate

…을 활동적이게 하다,(기계를) 가동시키다


The smoke activated the fire alarm.

연기가 화재 경보기를 작동시켰다.


activate a molecule

분자의 작용을 활발하게 하다.



activator

활성화하는 사람, 촉매



acting

대리[대행]의, 임시의; 서리의(약자: actg.)


an acting manager

부장 대리


the acting principal

교장 대리.



actuate

행동하게 하다


He is actuated wholly by his desire.

그의 행동은 모두 욕망에서 비롯되고 있다


What actuated him to steal?

무엇이 그를 도둑질하게 만들었을까?



actually

현실로, 실제로, 정말로


Did he actually attack you, or just threaten you?

그가 실제로 너를 때렸느냐 아니면 그냥 위협했느냐?


Actually, you still owe me $100.

사실 너는 내게 아직도 100달러를 빚졌어






'외국어 > 영어' 카테고리의 다른 글

[영어 어원] verb - word, 말  (0) 2018.01.16
[영어 어원] juvenis 어린  (0) 2018.01.15
[영어 어원] sect, seg - 자르다  (0) 2018.01.07
[영어 어원] mit - send, 보내다  (0) 2018.01.07
[영어 어원] fin - 마지막  (0) 2018.01.07

1. homebrew 설치


ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"


OSX에서 루비는 기본적으로 설치되어있다.


2. adb 설치

brew cask install android-platform-tools



설치 끝. 참 쉽다.


adb가 설치되고 나면 다음 스크립트를 실행시켜서 USB 연결 없이 무선으로 디버깅 가능하다.




#!/bin/sh

#

# usage : 

#         adb-debug-over-wifi [SERIAL OF THE DEVICE]


device_serial=$1

devices_attached=`adb devices -l | grep -c "device:"`


# check the device 

if [ -z "$device_serial" ]; then

case $devices_attached in 

0 )

echo "No device attached"

exit 1

;;

1 )

echo "No serial given, automatically redirect to the current device"

device_serial_command=""

;;

* )

echo "More than one device attached, please provide a serial"

exit 1

;;

esac

else

device_serial_command="-s $device_serial"

fi


# get the device local ip

device_ip=`adb ${device_serial_command} shell netcfg | grep "wlan0" | grep -oE "\b([0-9]{1,3}\.){3}[0-9]{1,3}\b"`

echo "Device IP : ${device_ip}"


# restart adb in tcpip mode

adb ${device_serial_command} tcpip 5555


# wait for the user to disconnect the device

read -p "Unplug your device from USB, then press enter to create the wifi connection" w

adb connect ${device_ip}:5555



파이썬으로 만든 구구단 소스


for n1 in range(2,10):
for n2 in range (2,10):
print (n1,"x",n2,"=",n1*n2)


심플하지 않은가

심플하고 아름답다


코드를 뜯어보면...


루프 관련

 - 코드는 2중 루프로 되어있다

 - 루프 몸통은 대괄호 {}로 감싸지 않고 들여쓰기를 이용한다.

    들여쓰기는 공백, 스페이스를 이용해도 되는데 보통 탭문자를 이용한다.

 - 들여쓰기 레벨이 같으면 같은 블럭

 - 하위 블럭은 들여쓰기 한번 더 


range(2,10) : 2에서 9까지, 마지막 숫자 10은 포함되지 않는다. 


해당 소스에서 n1이 2에서 9까지 돌고

그 안에서 n2가 2에서 9까지 돌고

그 안에서 print 문이 실행된다.


파이썬은 2.x와 3.x가 있는데 3.x가 당연히 더 좋다.

레거시(오래된) 소스를 돌릴 필요가 없으면 3.x를 까는게 더 좋다.


파이썬만 따로 까는것 보다 Anaconda를 깔면 유용한 라이브러리를 잔쯕 깔아주니

아나콘다로 까는게 더 좋다.


맥에는 디폴트로 2.x가 깔려있는데 3.x 깔고 환경 살짝 잡으면 3.x를 디폴트로 쓸 수 있다.

설치는 다른 문서 찾아보시고...


 

for n1 in range(2,10):
for n2 in range (2,10):
print (n1,"x",n2,"=",n1*n2)
해당 소스를 실행시키면
2 x 2 = 4
2 x 3 = 6
(중간 생략)
2 x 9 = 18
3 x 2 = 6
3 x 3 = 9
3 x 4 = 12
(중간 생략)
9 x 8 = 72
9 x 9 = 81


기교를 살짝 부려보면

for n1 in range(2,10):
print("*** " , n1, " dan", " ***")
for n2 in range (2,10):
print (n1,"x",n2,"=",n1*n2)

결과는 직접 해보자



'IT > 파이썬' 카테고리의 다른 글

python으로 웹에서 주가 데이터 가져오기  (0) 2017.12.20
맥 , 파이썬, 파이참, 한글  (0) 2017.12.19

Android 프로젝트 폴더 -> app -> build -> output -> mapping -> release -> mapping.txt


난독화한 엡에서 크래쉬 발생하는 경우

이걸 구글 스토어에 올려야지 

어느 코드에서 익셉션이 발생했는지 확인 가능


난독화 여부는 app의 build.gradle에서

buildTypes {
release {
//minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}


minifyEnabled를 true로 설정해야 함


난독화는 리버스 엔지니어링을 어렵게 하기 위해서 하는데

큰 의미는 없는 듯 하고... 안하는 것 보다 낫겠지.

sect, seg 

자르다



section

절단, 절개


Caesarean section

제왕 절개.


cut the pie into sections

파이를 잘라 여러 조각으로 나누다.


a business section

상업 지구


a residential section

주택 지구


the Postal Section

우편과.


the sports section

스포츠란


a longitudinal section of the ship

선박의 종단면도


a a cross section of the ship

선박의 횡단면도


a cross section of college life

대학 생활의 한 단면


section a class by ability

반을 능력별로 구분하다


section the room off into office spaces

방을 사무실용의 공간이 생기도록 분할하다.



sector

부채꼴, 활동 분야, 영역


the banking sector

금융 부문.



insect

in(안에)+sect(자르다)

곤충


an insect net

포충망


an insect cabinet

곤충 표본 상자.



intersect

~을 횡단[교차]하다, …을 가로지르다.




intersection

교차로, 교차점


Please turn right at the next intersection.

다음 교차로에서 우회전하십시오.




segment

seg(자르다)+ment(것)

부분, 단편,


a segment of an orange

오렌지 한 조각.


segment apples into 5 pieces

사과를 다섯 쪽으로 자르다.


'외국어 > 영어' 카테고리의 다른 글

[영어 어원] juvenis 어린  (0) 2018.01.15
[영어 어원] act - do, 하다  (0) 2018.01.08
[영어 어원] mit - send, 보내다  (0) 2018.01.07
[영어 어원] fin - 마지막  (0) 2018.01.07
[영어 어원] ali - 다른  (0) 2018.01.06

mit 

send, 보내다



transmit

trans(맞은 편으로)+mit(보내다)

부치다, 보내다


transmit the money by check

수표로 송금하다


This canal transmits water to the fields for irrigation.

이 수로는 관개용 물을 밭에 보낸다.


The cold virus is often transmitted through hand to hand contact.

감기 바이러스는 종종 손과 손의 접촉으로 전염된다.


Metals transmit heat.

금속류는 열을 전도한다


transmit a message to a person

남에게 전갈을 전하다.




transmission

전달, 보냄, 변속기


transmission of news

뉴스의 전송.


a manual transmission

수동 변속기



admit

ad(~에)+mit(보내다)

…이 〔장소로〕 들어가는 것을 허락하다, 인정하다


admit a person to a room

남을 방에 들이다


admit a student to a college

학생에게 대학에의 입학을 허가하다


The theater admits adults only.

이 극장은 성인만 입장할 수 있다


admit one's mistake

잘못을 인정하다


admit it to be wrong

그것이 잘못임을 인정하다


He admitted his guilt.

그는 자기 죄를 시인했다


This theater admits 200 persons.

이 극장의 수용 능력은 200명이다.


The emergency admits of no delay.

이 비상 사태는 한시도 지체할 수 없다.



admission

들어가는 것을 허가함


admission tickets

입장권


the admission of a country into the U.N.

어떤 나라의 유엔 가입 승인


gain admission into

~에의 입회를 허락받다


I applied for admission to the university.

대학에의 입학 허가를 신청했다.


Admission free.

입장 무료


an admission that one has done wrong

잘못을 저질렀다고 시인하기


make full admission of one's crime

죄를 전면적으로 시인하다.



admissible

허용되는


an admissible explanation

수긍이 가는 설명.


admissible evidence

법정이 채용하는 증거.



permit

per(~을 통하여)+mit(보내다)

허락하다, 용인하다


the maximum speed permitted

최고 제한 속도


Smoking is permitted in this room.

이 방에서는 담배를 피워도 좋습니다


Your doctor wouldn't permit you on skis.

의사가 당신에게 스키를 허락하지는 않을 것입니다


Permit me to illustrate my point.

나의 취지를 설명하게 해주시오


His words permit no doubt.

그의 말에는 의심할 여지가 없다


The path permits only one man to pass at a time.

그 오솔길은 한 번에 한 사람밖에 지나갈 수 없다


These vents permit the escape of gases.

이 구멍 때문에 가스가 샌다.


weather permitting

날씨가 좋으면


if circumstances permit

사정이 허락하면


Call me when time permits.

시간이 있을 때 전화해 주시오


a permit for the gun

총기 허가증


grant an export permit

수출 허가증을 내주다


issue[revoke, apply for] a permit

허가증을 발행하다[무효로 하다, 신청하다].



permission

허용, 허락


by (a person's) permission(남의)

허가를 얻어


by[on] special permission

특별 조치로


with your permission 《구어》

지장이 없으시다면


without permission

무단으로


grant[give] permission

허가하다


ask for (written) permission

허가(증)을 신청하다


ask a person for permission

남에게 허가를 요청하다


get[have, obtain] permission to do

…할 수 있는 허가를 얻다.



missile

(돌·화살·투창·탄환 등의) 던지는 무기, 미사일


an international ballistic missile

대륙간 탄도탄(ICBM)


nuclear missiles

핵 미사일


a cruise missile

순항 미사일


launch[fire] a missile

미사일을 발사하다.


a missile base[site]

미사일 기지.



emit

(액체·빛·열·냄새 등을) 내뿜다, 방출하다


Cars emit noxious fumes.

자동차는 유독 가스를 내뿜는다.


John emitted a few curses.

존은 몇 마디 악담을 내뱉었다.




emission

방사, 방출, 방출[방사] 물질


sulfur emissions from steel mills

제강소로부터의 황의 배출.




commit

com(함께)+mit(보내다) → 맡기다

(죄·과실 등을) 저지르다, 범하다


commit suicide

자살하다


commit larceny[adultery]

도둑질을 하다[간통하다]


commit a blunder

큰 실수를 범하다


commit one's child to a person

자식을 남에게 돌보아달라고 맡기다


commit one's soul to God

영혼을 신에게 맡기다.


She is too deeply committed in the project to draw back.

그녀는 그 계획에 너무 빠져들어서 이제는 손을 떼지 못하게 되어 있다.


commission

위임; 위임장, 임무, 의뢰, 주문, 위원회


give the commission of authority to a person

남에게 권한을 위임하다


have a commission of all powers

전권 위임장을 가지고 있다.


have a high commission to carry out

수행해야 할 중요한 임무가 있다.


exceed[go beyond] one's commission

월권 행위를 하다.


the Fair Trade Commission

공정 거래 위원회


receive a commission to paint a picture

그림 주문을 받다.


commission sale

위탁 판매


sell goods on commission

상품을 위탁 판매하다




committee

committ(맡기다)+ee(사람)

위원회; 《집합적》 전(全)위원


a steering[a joint] committee

운영[합동] 위원회


the Standing Committee on Finance[Foreign Affairs](우리나라의)

재무[외무] (상임) 위원회


a budget committee

예산 위원회


appoint a committee

위원을 임명하다


form[organize, set up] a committee

위원회를 구성하다


The committee is sitting on this question.

이 문제를 토의하기 위해 위원회가 열리고 있다.


be in committee

위원회에 심의 중에 있다[출석하고 있다].


be[sit] on a[the] committee

위원회의 일원이다, 위원이다.



remit

(우편으로) 보내다, 송부하다, 면제하다, 감면하다


remit a cheque

수표를 보내다


remit the balance to him by money order[=remit him the balance by money order]

그에게 우편환으로 잔고를 보내다.


remit a fine to half the amount

벌금을 반액으로 감해 주다.


remit one's anger

노여움을 풀다.


remit the consideration of a bill to[until] the next session

법안의 심의를 다음 회기로 미루다.




message

mess(받는)+age(것)

전갈, 메시지


a congratulatory message

축전, 축사


a message pad

메모장


deliver a message

메시지를 전하다


get a message

전언을 받다


Would you like to leave a message?

전하실 말씀은 없습니까?


Will you take a message?

말 좀 전해 주시겠습니까?


the President's message to Congress

대통령 교서


the state of the Union Message(대통령의)

연두 교서.


I didn't understand the movie's message.

그 영화의 의도를 알 수 없었다.



messenger

메신저, 심부름꾼


send a letter by (a) messenger

심부름꾼에게 편지를 들려 보내다


Did you get the letter delivered by the messenger?

심부름꾼에 의해 배달된 편지를 받았습니까?


a King's[a Queen's] messenger

칙서 송달관, 국왕[여왕]의 사자


a goodwill messenger

친선 사절.



decommission

(함선 등을) 퇴역시키다

(이사·임원 등의) 위임 직권을 해임하다.



dismiss

dis(다른 방향으로)+miss(보내다)

해산시키다, , 물러가게 하다


The class is dismissed.

수업은 이만 끝


You are dismissed.

(군대 등에서)해산!


The suspect was dismissed after questioning.

피의자는 심문 후 방면되었다.


dismiss a clerk

사무원을 해고하다


dismiss a student from school

학생을 퇴학시키다.


dismiss one's fear

공포심을 버리다


I have dismissed her from my thoughts.

그녀의 일은 까맣게 잊었다.


dismiss a plea

간청을 물리치다


He dismissed the proposal as trivial.

그는 그 제안을 하찮다고 하여 거들떠보지 않았다.


Case dismissed.

본건(件)의 청구를 기각합니다

(※원고[검찰]의 실질적 패소를 나타내는 재판장의 말).




dismissal

퇴거, 해산


unfair dismissal

부당 해고


an abrupt[curt] dismissal

갑작스런 해고.



mission

(외국에 파견되는) 사절단, 대표단, 재외 대사[공사]관, 임무, 사명


the British mission at Washington

워싱턴 주재 영국 대사관


dispatch an economic mission to India

인도에 경제 사절단을 파견하다.


carry out one's mission

임무를 수행하다


send an envoy on a special mission

특수한 사명을 주어 전권 공사를 파견하다.


a sense of mission

사명감


Mission accomplished!

임무 완료!



missionary

선교사, 사절


a diplomatic missionary

외교 사절.



omit

ob(거꾸로)+mit(보내다) → 반송하다

~을 빠뜨리다, 생략하다


omit a sentence from a paragraph

한 단락에서 문장 하나를 빼다


Don't omit any details.

어떤 세부 사항도 생략하지 마시오


His name was omitted from[in] the list.

그의 이름은 리스트에서 빠져 있었다.


Kindly omit flowers.

헌화는 사양합니다.


She omitted to say goodbye.

그녀는 작별 인사를 하는 것을 깜박 잊었다.



omission

생략


without omission

빠짐없이


There were several omissions in the list.

리스트에는 몇 가지 누락된 것이 있었다.


sins of omission

태만죄


crimes of omission

부작위범(犯).




commitment

위임, 위탁, 약속


fulfill one's commitments

약속을 수행하다


make a commitment to do

…하겠다고 확약하다.



promise

pro(앞에)+mise(보내지다) →. 앞으로 말하다

약속, 맹세


a verbal promise

구두 약속


an implied promise

묵약


a solemn promise

엄숙한[중대한] 약속


under promise to do

…하기로 약속[서약]하고


make[give] a promise

약속하다


keep[break] one's promise

약속을 지키다[어기다]


Despite their promise to bring down inflation[=that they would bring down inflation], prices have gone on rising.

인플레이션을 끌어 내리겠다는 그들의 약속에도 불구하고 물가는 계속 오르고 있다.


The sky gives promise of storm.

폭풍이 올 것 같은 날씨다.


a writer of great promise

전도 유망한 작가


promise of a good harvest

풍작의 기대


show promise

장래성이 있다


be full of promise

전도 유망하다.


I claim your promise.

약속한 것을 해 줘야겠소[약속한 대로 이행해 주시오].



compromise

com(함께)+promise(약속하다)

타협, 양보


reach a compromise

타협에 이르다


make a compromise with

…과 타협하다


settle arguments by compromise, not with threats

협박에 의해서가 아니라 타협에 의해 논쟁을 해결하다.


a political compromise between the two nations

두 나라간의 정치적 타협안


a compromise between a pen and a writing-brush

펜과 붓의 중간물.


compromise oneself[=be compromised]

자신의 체면을 손상하다


compromise one's credit

자신의 신용을 떨어뜨리다.


compromise on these terms

이 조건으로 타협하다


The opposition party agreed to compromise.

야당은 타협하는 데 동의했다.





intermission

휴삭, 중지, 중단


a short intermission

잠깐의 휴식


with the intermission only of dinner

저녁 식사시간만 중단하여


without intermission

끊임없이.



'외국어 > 영어' 카테고리의 다른 글

[영어 어원] act - do, 하다  (0) 2018.01.08
[영어 어원] sect, seg - 자르다  (0) 2018.01.07
[영어 어원] fin - 마지막  (0) 2018.01.07
[영어 어원] ali - 다른  (0) 2018.01.06
[영어 어원] arm - weapon 무기  (0) 2018.01.06

define

de(완전히)+fine(제한하다)

~을 정의하다, 범위를 한정하다


A good dictionary defines words concisely.

좋은 사전은 단어를 간결하게 정의한다.


His figure was clearly defined against the lighted room behind him.

밝은 방을 배경으로 하여 그의 모습이 뚜렷이 떠올랐다.


Please define your position.

당신의 입장을 뚜렷이 밝혀 주십시오.


What defines us as human?

무엇이 인간다운 특징인가.



definite

명백한


a definite answer

확답


a definite reason

명확한 이유


It is definite that I'll go to U.S.A.

내가 미국으로 가는 것은 확정적이다.



definition

정의함, 명확하게 함, 정의, (렌즈의) 해상도


give a definition of the word

그 단어의 정의를 내리다.


take on definition

분명해지다.


high definition

고해상도


by definition

자명한 일로서, 당연히.



definitive

가장 확실한, 최종적인


a definitive decision

최종적인 결정.



indefinite

불명확한, 애매한, 무기한의


an indefinite opinion

애매한 의견


in an indefinite manner

막연한 태도로.


an indefinite prison term

무기 징역


an indefinite strike

무기한 파업.



confine

con(완전히)+fine(끝을 마무리짓다)

한정하다, 제한하다, 경계, 한계


confine a talk to fifteen minutes

이야기를 15분으로 제한하다


I confined my comments to the matter under consideration.

나는 내 의견을 검토 중인 문제에만 한정했다.


be confined to bed

병상에 누워 있다


be confined to a wheelchair

휠체어 생활을 하고 있다


He confined himself to his room.

그는 방에 틀어박혔다.


within the confines of the city

시의 경계 안에


outside the confines of one's income

수입액을 초과하여.



confinement

가둠, 구속, 감금


under confinement

감금되어


be placed in confinement

감금되어 있다.



final

최후의, 궁극의, 기말시험


the final chapter

마지막 장


the final goal

궁극의 목표


the final outcome

최종 결과


the World Cup Final

월드컵 결승전.


When do you take your finals?

기말 시험은 언제 치지?



semifinal

준결승의.



finis


The last page in the book says "Finis."

그 책의 마지막 페이지에는 '끝'이라고 적혀 있다.



finish

~을 끝내다, 마무리 칠을 하다


finish a book

책을 다 읽다


finish high school

고등학교를 졸업하다


inish the race in fifth place

경주를 5등으로 마치다.


finish off one's paper

리포트를 완성하다.


finish a chair in lacquer

래커로 의자에 끝마무리 칠을 하다.


finish up a plate of food

한 접시를 깨끗이 먹어치우다.


The scandal may finish his political career.

그 스캔들 때문에 그의 정치 생명이 끝날 것 같다


The course finishes in May.

그 강좌는 5월에 끝난다.


She's finished with her latest novel.

그녀는 최근 소설의 집필을 끝마쳤다


I'll soon be finished with this job.

이 일을 곧 끝내겠다.



finite

한계가 있는, 제한된



infinite

헤아릴 수 없을 만큼 큰, 막대한, 무한한


an invention of infinite value

극히 중요한 가치를 지닌 발명.


infinite patience

무한한 인내심


There are an infinite number of stars in the night sky.

밤하늘에는 무수히 많은 별들이 있다.



infinitude

무한, 무궁


an infinitude of possibilities

무한한 가능성


the vast infinitude of space

무한대의 공간



infinity

무한, 무궁


to infinity

무한히.



redefine

다시 정의하다, 고쳐 정의하다.



fine

마지막 -> 결론 -> 훌륭한

훌륭한, 멋진, 좋은, 완벽한, 끝이 뾰족한, 미세한, 정제된


a fine view

절경, 장관


a person's finest hour

남의 최고의 절정기


fine air

맑은 공기


gold 24 karats fine

순도 24금의 금.


a fine musician

우수한 음악가


a fine manner of speaking

세련된 말투.


a fine morning

맑게 갠 아침


a pencil with a fine point

끝이 뾰족한 연필


a fine knife

잘 드는 칼


fine flour

고운 밀가루


fine sugar

정제당


fine dust

미세한 먼지.


a fine mechanism

정교한 장치.



refine

~을 정제하다, 불순물을 제거하다


refine crude oil

원유를 정제하다


All impurities were refined away.

온갖 불순물이 제거되었다.


It has been refined since then.

그 이후로 그것은 정교해졌다.


refine upon the invention

발명품을 개량하다.


Modern medical techniques refine on those of the past.

현대 의학의 기술은 예전보다 뛰어나다.



refinement

세련됨, 고상함, 개량, 개선


a man of refinement

세련된 사람.


the refinements in new model stereos

신형 스테레오의 갖가지 정교한 고안



refinery

(금속·설탕·석유의) 정제소


'외국어 > 영어' 카테고리의 다른 글

[영어 어원] sect, seg - 자르다  (0) 2018.01.07
[영어 어원] mit - send, 보내다  (0) 2018.01.07
[영어 어원] ali - 다른  (0) 2018.01.06
[영어 어원] arm - weapon 무기  (0) 2018.01.06
[영어 어원] lingu, langu 혀  (0) 2018.01.06

alias

가명, 별명


use an alias

가명을 쓰다



go under the alias of Jones

존스라는 별명을 쓰다.


Johnson alias Jones

존슨 통칭 존스.



alibi

현장 부재 증명, 알리바이, 구실, 변명


a cast-iron alibi

논박의 여지가 없는 알리바이


set up an alibi

알리바이를 내세우다


We've got no alibi.

뭐라고 변명할 말이 없다.



alien

외국인


resident alien

거류 외국인.


alien registration

외국인 등록.


alien customs

외국의 관습.


ideas alien to our tradition

우리의 전통에 맞지 않는 사상



alienate

멀리하다


His arrogance alienated his employees.

그의 거만한 태도에 종업원들은 그를 경원했다.



army

arm(무장된)+y(물건)

육군, 군대, 집단, 단체, 다수


a regular army

정규군


an irregular army

비정규]군


a standing army

상비군


a reserve army

예비군


an invading army

침략군


join the army

입대하다


raise an army

군을 소집하다


serve in the army

군에 복무하다


train an army

군을 훈련하다.


the Salvation Army

구세군


an army of schoolchildren

수많은 초등 학생들


an army of ants

개미떼


a whole army of people

수많은 사람들.



disarm

무장을 해제하다


disarm a prisoner

포로를 무장 해제하다


disarm him of his weapons

그에게서 무기를 빼앗다.


disarm a bomb

폭탄을 안전하게 처리하다.


Religion disarms death of its terrors.

종교는 죽음의 공포를 없애준다.



disarmament

군비 축소


nuclear disarmament

핵군축



armor

갑옷


a suit of armor

갑옷 한 벌


in full armor

완전 무장을 하고.



armament

무기, 병기


chemical armaments

화학 무기.


the reduction of armaments

군비 축소


an armaments race

군비 경쟁.



rearm

재무장시키다.


rearm the country with modern missiles

최신 미사일을 나라에 배치하다.



armada

함대, 아르마다, 스페인 무적 함대



armadillo

아르마딜로

스페인어에서 armado는 무장한 사람, -illo는 축소의 의미



rearmament

재군비, 재무장.



alarm

놀람, 불안, 공포, 경보기


in great alarm

깜짝 놀라서


She felt alarm at the sight of the serpent.

뱀을 보고 그녀는 오싹했다.


a fire alarm

화재 경보기


set the alarm to go off at five

5시에 울리도록 자명종을 맞추어 놓다.


'외국어 > 영어' 카테고리의 다른 글

[영어 어원] fin - 마지막  (0) 2018.01.07
[영어 어원] ali - 다른  (0) 2018.01.06
[영어 어원] lingu, langu 혀  (0) 2018.01.06
[영어 어원] grade - step, 단계, 걸음  (0) 2018.01.06
[영어 어원] dur 단단한  (0) 2018.01.06

lingu, langu 


language

언어,


the English language

영어


a foreign language

외국어


an international language

국제어


He speaks three languages fluently.

그는 3개 언어를 유창하게 말한다.


the language barrier

언어 장벽


sign language

수화


informal language

구어체



bilingual

bi(둘의)+lingual(말의)

두 언어를 자유로이 구사하는.



multilingual

다언어(多言語) 사용.



prelingual

언어 사용 이전의.



'외국어 > 영어' 카테고리의 다른 글

[영어 어원] ali - 다른  (0) 2018.01.06
[영어 어원] arm - weapon 무기  (0) 2018.01.06
[영어 어원] grade - step, 단계, 걸음  (0) 2018.01.06
[영어 어원] dur 단단한  (0) 2018.01.06
[영어 어원] cap 머리  (0) 2018.01.06

+ Recent posts