본문 바로가기

etc18

[IELTS] Speaking Part 2 / Part 3 문제 모음 (Routine, Lost Item, Travel, The Elderly) 04.06.2024 1. Routine Part 2 Describe something you do to help you study or work What it is How you learn it When you do it How you feel about the method Part3 Do you think everyone's routine is different? Which jobs need a morning routine? Is a daily routine important? How do people organize their routines after getting up in the morning and after work? Do you think children need to have routin.. 2024. 4. 7.
[IELTS] Speaking Part 2 / Part 3 문제 모음 (Market, Busy, Outdoor Activity) 04.02.2024 1. Market Part 2 Describe a time you bought something from a street (or outdoor) market When it was Where the market was What you bought And how you felt about it Useful Expressions Spontaneously: 즉흥적으로 A good surpirse: 좋은 서프라이즈 (Could be a good surprise to buy a gift for your loved ones) Part 3 What kinds of markets are there in Korea? Do you think small markets will disappear in the.. 2024. 4. 2.
첫 쿼터 회고(1월-3월) 03.31.2024 1. Google Solution 프로젝트 1-2월 두달간 진행된 Flutter 프로젝트이다. 개발자로서 처음으로 디자인과 앱의 세계에 발을 들이게 해준 프로젝트이며 프로젝트 팀원으로서 처음으로 프로젝트 기획작업, 문서작업, ppt작업, 영상작업 등을 경험해 본 것 같다. 이 프로젝트에 대한 회고는 전에 따로 글을 써놓았으니, 궁금하신 분들은 밑의 링크를 통해 회고록을 볼 수 있다. https://bbani.tistory.com/87 2024 Google Solution Challenge - STREcording Overview 02.05.2024 0. 사담 본인은 현재 졸업생이고, 팀 멤버에 초대받았을 당시에는 gdsc에 가입되어있지 않은 평범한 재학생이었다. 학교 gdsc 멤버인 .. 2024. 3. 31.
[IELTS] SPEAKING Part 3 질문 모음 (Relax, Children, Complaints) 03.14.2024 1. Relax Do people have enough places to relax in your country? What do people usually do when they are relaxed? Is physical activity good for relaxation? Do you think that spending time in front of a screen helps people relax? Do people have to spend a lot of money to relax? Do people nowadays have more ways to relax than in the past? Useful Vocab Effective: 효과적인 Releases endorphins.. 2024. 3. 15.
[English] Can you change your sleep schedule? 12.30.2023 1. Video Link https://www.youtube.com/watch?v=Amkg1cdDCpM&list=PLm43Xgr8C9x5escsawFtEljCFOBgtnCpG&index=119 2. Vocabulary A stride: 길고 결정적인 단계(step, stage), 목표를 향해 진행중인 단계 Groggily: (질병, 부상, 수면부족 등을 이유로 멍하거나 약해져) 비틀거리며 Coast: 해안, 연안; 항해하다 Cast someone in: 캐스팅 Circadian system: 생체리듬(Circadian rhythm) 시스템 Anchored: 정박된, 닻이 내려진; 고정된, ~에 기반을 둔 Nerve cell cluster: the cluster of nerve cell.. 2023. 12. 30.
켄트백의 TDD 3회차 스터디 18장-24장(~200p) 06.27.2023 1. 전체 코드 공유 (The final code) class TestCase: def __init__(self, name): self.name = name def run(self, result): result.testStarted() self.setUp() try: method = getattr(self, self.name) method() except: result.testFailed() self.tearDown() def setUp(self): pass def tearDown(self): pass class WasRun(TestCase): def __init__(self, name): self.wasRun = None TestCase.__init__(self, name) def .. 2023. 6. 27.