Dev Hyeri

전체 글 480

[영국영어] 준비를 하다 be prepared to

be prepared to 하도록 마음의 준비를 하다 Prepared to do what ordinary people won't do. 일반 사람들이 하지 않을 것을 할 준비가 되어 있다. I'm fully prepared to present our project at the meeting tomorrow. 내일 회의에서 프로젝트 발표할 준비가 완료되었어. We need to be prepared to adapt to changing technology trends in the industry. 산업에서 변화하는 기술의 트랜드에 적응할 준비가 필요하다. Being prepared to learn new programming languages is essential for a software develop..

[영국영어] 취소하다, 철수시키다 call off

call off 취소하다철수시키다, 중단시키다 Your death is the only thing that's going to call off the killers. 너의 죽음만이 킬러들을 철수시킬 거야. We were planning a team-building event next week, but some team members have other commitments. 다음 주에 팀 빌딩을 계획했지만 몇몇이 다른 약속이 있어요. Let's call off the team-building event and reschedule it for a time when everyone can participate. 취소하고 모든 사람이 가능한 시간으로 다시 잡읍시다. We've been working overt..

[영국영어] 불가능하다, 방법 없다 There's no ~ing

There's no ~ing ~는 불가능하다, 방법은 없다 (~ 하는 것은 없다) There's no stopping them now. 그들을 막는 건 불가능해. The client wants us to complete the entire project by tomorrow morning. 고객이 내일 아침까지 전체 프로젝트를 완성하라고 한대. There's no finishing it by tomorrow morning without compromising quality. We need more time. 품질과 타협하지 않고서는 내일 아침은 어려워. 시간이 더 필요해. We have to make this codebase compatible with the latest framework version..

[영국영어] 정리하다 처리하다 sort out

sort out /sɔːt/ 물건을 정리하다 문제를 처리하다, 다루다 Has Sherlock sorted it all out? 셜록이 문제를 다 처리했나? It took me hours to sort out the data inconsistencies in the dataset. 데이터셋의 일관성 문제를 해결하는 데 몇 시간이 걸렸어. The code review process helped us sort out coding style inconsistencies across the project. 코드 리뷰 과정을 통해 프로젝트 전반에 걸쳐 코딩 스타일의 불일치를 해결하는 데 도움이 되었어요. I cant't find the relevant documentation for this API. 이 API에 ..

[영국영어] 깜짝 놀랐잖아 you made me jump

make someone jump 누군가 놀라게 하다 God, John, you made me jump. 세상에. 존, 놀랐잖니. When I accidentally deleted the entire database, it really made my boss jump. 데이터베이스 전체를 실수로 삭제했을 때, 상사를 진짜로 놀라게 했어요. The sudden power outage in the middle of our coding session made us all jump. Thank goodness for auto-saving! 코딩 세션 중 갑작스러운 정전으로 모두 깜짝 놀랐어요. 다행히 자동 저장이 되었죠. When the new programming language features were ann..

MySQL 기본 완전 정리

릴레이션 == 테이블릴레이션 스키마 : 컬럼 이름들의 집합릴레이션 인스턴스 : 컬럼 외 값 부분 전체컬럼 == 속성 == 필드 도메인 : 컬럼이 가지는 값들의 집합로우 == 레코드 == 튜플 : 컬럼 값들의 집합, 테이블 내에서 유일      DDL    CREATE  CREATE DATABASE 데이터베이스명;USE 데이터베이스명; CREATE TABLE 테이블명( );DESC 테이블명;* 테이블 정보  CREATE INDEX 인텍스명 ON 테이블명(컬럼);     DROP  DROP DATABASE IF EXISTS 데이터베이스명; * 쿼리 실행시 데이터베이스가 존재하지 않으면 생기는 오류      ALTER  테이블 이름 변경 : ALTER TABLE 기존이름 RENAME 바꿀이름;컬럼 추가 : A..

기술스택/SQL 2023.10.05

[영국영어] 속다 fall for it

fall for it 속다 I kenw you'd fall for it. 속을 줄 알았어. There's a new tool that claims to double your programming speed overnight. 하룻밤 사이에 프로그래밍 속도를 두 배로 늘려주는 새로운 도구가 있대. There's no magic tool that can do that. 그런 마법같은 건 없어. Someone messaged me on social media offering a 'work from home' opportunity with high earnings. 누군가가 소셜미디어에서 '재택근무' 라면서 높은 수익을 약속했어. Be cautious. Don't fall for it. many work-fro..

[영국영어] 날로 먹음 daylight robbery

daylight robbery 날로 먹음, 날강도짓 Daylight robbery! All it takes is some willing participants. 날강도짓 한거지! 자발적인 참가자들만 있으면 된다고. Have you seen the price of the latest gaming console? It's daylight robbery! 최신 게임 콘솔 가격 봤어? 미친가격이야. I agree, it's ridiculously expensive. I might have to wait for a discount. 맞아, 정말 비싸. 할인할 때를 노려봐야 할지도 모르겠어. The conference registration fee is way too high. It's practically day..

[영국영어] 다시 하다 go back to ~ing

go back to ~ing 다시 하러 가다 다시 시작 하다 Now I've got to go back to playing with the ordinary people. 이제 다시 평범한 사람들하고 놀아야겠네. I tried using a different programming language, but it's not working as expected. 다른 프로그래밍 언어를 시도해봤는데, 역시 작동 안해. In that case, you may want to go back to using the language you're more familiar with for this project. 그렇다면 이 프로젝트에선 익숙한 언어를 계속 써서 해야지 . I tried implementing a new al..