Daisy's IT Study Note 275

[TIL] 영어 - 2022.08.01 (Mon)

gripe 1. 불만 2. 불평을 해 대다 demeaning 비하하는, 모욕적인 alienate 1. (사람을) 소원하게[멀어지게] 만들다 2. 소외감을 느끼게 하다 ex) When you're setting up difficulty levels, maybe try naming your least challenging one "story mode" or something? Something that signifies that the player is playing for the experience rather than the challenge? Terms like "super easy" or "baby mode" are kind of demeaning. Remember a lot of people pic..

Daily Life/English 2022.08.01

[TIL] 영어 - 2022.07.24 (Sun)

overarching (많은 것에 관련되므로) 대단히 중요한 : most important, because of including or affecting all other areas pitfall 함정 working in Scrum gimmick : a trick or device intended to attract attention, publicity, or business. humming along : if you say things are humming along (nicely), it means that things are going fine spikes and dips = up and down 정도로 이해하면 될 듯. - spike: a sharp increase in the magnitude ..

Daily Life/English 2022.07.24

[TIL/Swift] 2022.07.20 (Wed) - 변수

Double vs Float - 보통은 double을 더 많이 씀. - double이 부동소수점을 더 정확하게 처리할 수 있기 때문. - 하지만, double이 float 보다 항상 더 좋은 것은 아님. - '속도'가 정확도보다 더 중요할 떄는 float를 씀 변수 타입 선언 // 방법1 var myMiddleInitial = "A" // 방법2: 타입 지정 var myInitial: Character = "A" - 변수 타입 명시적으로 지정 안 해도 알아서 추론 해줌 (type inference) 명시적 타입 선언 - 컴파일러는 기본적으로 "" 안에 있으면 String으로, 소수점 있으면 double로 타입 지정한다. - 이런 결과를 원하지 않는다면 명시적으로 타입 선언해줘야함 var letter1 =..

The Umbrella Academy S1 Ep2 - Words and expressions

crevice (바위나 담에 생긴) 틈 admirable /ˈadm(ə)rəb(ə)l/ 감탄스러운, 존경스러운 [ad] arousing or deserving repect and approval. - ex) "Knowledge is an admirable goal, but you know the rules." clatter (그릇 등이) 달그락하는 소리를 내다, 달그락하는 소리 [n] a continuous rattling sound as of hard objects falling or striking each other. - ex) The horse spun around with a clatter of hooves.(발굽) [v] make or cause to make a continuous rattl..

Daily Life/English 2022.06.29

The Umbrella Academy S1 Ep1 - Words and expressions

wail give a cry of pain, grief, or anger. ex) Tina ran off wailing ex) 아기 낳는 장면에서 [wailing] ex) 영화 영어 제목이 이다. sober not affected by alcohol; not drunk ex) Klaus가 rehab에서 퇴원하는 장면에서, 직원이 "Stay sober!" 라고 말함 clamor [n] a loud and confused noise, especially that of people shouting vehemently. - ex) the questions rose to a clamor [v] (of a group of people) shout loudly and insistently. - ex) the surg..

Daily Life/English 2022.06.29

[C프로그래밍] 기말고사 대비 최종점검

* 포인터 - 포인터를 이용한 메모리 동적 할당 * 상수 - 8진 상수: 숫자 앞에 0을 붙인다 - 16진 상수: 숫자 앞에 0x를 붙인다 - 문자형 상수는 내부적으로 해당 문자의 ASCII 코드값이 사용된다 - 실수형 상수는 소수형식과 지수형식으로 표시할 수 있다 * 출력양식변환기호 %문자 변환 형식 부호 인자의 자료형 %d 10진 정수 O char, short int, int %ld 10진 long 정수 O long int %lld 10진 long long 정수 O long long int %u 10진 정수 X unsigned int %o 8진수 X unsigned int %x, %X 16진수 X unsigned int %f 10진 부동소수점 float, double %lf 10진 부동소수점 long..

[컴퓨터의 이해] 기말고사 대비 5-13장 요약

5장. 보조기억장치와 데이터 저장 * 보조 기억장치의 필요성 - 1) 대용량의 기억장치가 필요함: 컴퓨터의 응용분야 확대 및 데이터 생산량 폭증으로 인하여, 컴퓨터가 사용할 프로그램과 데이터를 주기억장치에 모두 저장하기에는 한계가 있음 - 2) 비휘발성 기억장치: 전원 공급 없이 데이터를 보관할 수 있어야 함 - 3) 주기억장치의 효율적 사용: 지역성의 원리 활용 --> 필요한 부분만 주기억장치에 저장하고, 나머지는 보조기억장치에 저장 * 보조 기억장치의 종류 접근 방식 매체 형태 매체 종류 순차 자기테이프 릴 테이프 카트리지 테이프(DAT, DLT, LTO 등) 직접 자기디스크 플로피디스크, 하드디스크 광디스크 CD-ROM, CD-R, CD-RW, DVD, DVD-R, HD-DVD, Blu-ray(BD..

[이산수학] 부울대수의 기본 정리 Laws and Theorems of Boolean Algebra

1a X + 0 = X 1b X • 1 = X 2a X + 1 = 1 2b X • 0 = 0 3a X + X = X 3b X • X = X 4a 4b 5 6a X + Y = Y + X 6b X • Y = Y • X 교환법칙 7a X + (Y + Z) = (X + Y) + Z = (X + Z) + Y = X + Y + Z 7b X (Y Z) = (X Y) Z = (X Z) Y = X Y Z 결합법칙 8a X + Y Z = (X + Y) • (X + Z) 8b X • (Y + Z) = X Y + X Z 분배법칙 9a 9b 드 모르간 정리 10a X + X • Y = X 10b X • (X + Y) = X 흡수 정리 11a 11b Redundancy Law 12a 12b Redundancy Law 13a 13..

반응형