Skip to content
Bible, Lee, Data

Bible, Lee, Data

Faith, software, data, and everyday life.

EnglishAll posts

Archive/Study Notes

TOEIC 공부 영단어 모음 2

unless -하지 않는 한 in addition to -일 뿐 아니라 even though -에도 불구하고 concern 우려, 걱정 privately 개인으로서, 비공식적으로 electric car 전기차 be intended for -을 위해 만들어지다[의도되다] journey 여행, 이동 within -이내에 environment 환경 fee 요금 parking lot 주차장 mandatory 의무적인 despite -에도 불구하고 opposite -맞은편에 regarding -에 관해서 tend to do -하는 경향이 있다 beyond -을 넘어서, -할 수 없는 below -보다 아래에 at -에서 in -의 as -로서 adamantly 단호하게 garage 차고 given that -을 ..

Archive/Study Notes

TOEIC 질문에 잘 모른다고 답변하는 유형

지금으로선 알 수 없다거나, 직접 알아보겠다거나, 다른 사람에게 물어보라는, '나는 잘 모르겠다'라는 표현이다. I don't know. 모르겠어요. I have no idea. 모르겠어요. I'm not sure. 모르겠어요. I wish I knew. 나도 알고 싶어요. 더보기 I'm not knowledgeable about that. 그것에 대해서는 잘 알지 못해요. I'm not familiar with that. 그건 낯설어요. It's beyond me. 나는 이해가 안 가요. I'm not well-versed in that area. 그 분야는 잘 알지 못해요. I can't say for certain. 확실하게 말할 수 없어요. It hasn't been decided yet. 아직 ..

Archive/Study Notes

[TOEIC] to부정사와 동명사를 뒤에 취하는 동사 총정리

영어 문장을 풀다 보면 동사 뒤에 to do를 써야 할지, doing을 써야 할지 고민되는 경우가 많다.The company decided (to expand / expanding) its operations.Would you mind (to wait / waiting) for a moment?첫 번째 문장에서는 decide to expand, 두 번째 문장에서는 mind waiting이 자연스럽다. 두 표현 모두 한국어로 해석하면 동사 뒤에 “~하는 것”이 이어지는 것처럼 보이지만, 영어에서는 앞에 놓인 동사가 어떤 문형을 요구하는지에 따라 정답이 달라진다.따라서 단순히 단어의 뜻만 외워서는 부족하다.decide = 결정하다avoid = 피하다suggest = 제안하다이렇게 뜻만 외우는 것이 아니라 다..

Archive/Study Notes

여행지 선택에 관한 영어 대화 A Conversation About Destination Selection

A Conversation About Destination Selection Jacob: Hey guys, I've been thinking about planning a trip. And I've always wanted to visit Japan. What do you think? Saul: That sounds amazing, Jacob! I've heard so many great things about Japan. I'm definitely up for it. What about you, Samuel? Samuel: Japan sounds interesting, but I've been wanting to go to Europe for a while now. How about we conside..

Engineering/Frontend

JavaScript Object-Oriented Programming and Prototypes

JavaScript is a prototype-based object-oriented programming language. In object-oriented programming, code is structured into objects that bundle related data and functions together. Object Creation and Properties Objects contain properties and methods, and prototypes are used for object inheritance. Objects in JavaScript are created by enclosing them in curly braces ({}) and can contain propert..

Engineering/Frontend

JavaScript Functions and Scope

Functions A function is a code block that performs a series of tasks. Understanding JavaScript functions and scope allows you to effectively manage the scope of variables and write modularized code. function functionName(parameter1, parameter2, ...) { // Function body // ... return result; } In the code above, functionName is the name of the function, and parameter1, parameter2, etc., are the pa..

Projects/Game Projects

A Word of Heart - A Puzzle Game Created with C++ and SDL2 Library

I wanted to create a game with a classic concept and, as I transitioned from Visual Studio to VSCode, I became familiar with the development environment and decided to start a game development project to practice and improve my skills. It took me about 1 to 2 weeks to complete the game, but I felt a bit limited in utilizing various features of the SDL2 library since I wasn't as familiar with imp..

Projects/Game Projects

Hangman Game Deadline Created in C Language

Deadline is a game inspired by the traditional Hangman game, where the term "deadline" refers to the due date. In this game, the goal is to guess an English word by guessing its individual letters, similar to Hangman. In the original Hangman game, blank spaces or underscores are drawn for each letter of the word, and when a player guesses a letter, if the letter is present in the word, it is fil..