반응형

분류 전체보기 223

오늘의 영어

She is taking orders from the customers. - 그녀는 주문을 받고 있다 손님으로부터 -> She is taking the customer's orders. (- more natural ) The customer is ordering set A. - 손님이 주문하고 있다 세트 A를 How does the woman want her eggs? - 여자는 그녀의 계란을 어떻게 해주길 원해? She wants a fried egg. She want her eggs sunny-side up. She wants them (to be) sunny side up. (The woman wants her eggs to be sunny side up) -> 그녀는 원한다 계란 후라이를 (sun..

영어공부 2021.11.28

Unity Canvas(UGUI) refresh

요즘은 이래 저래 뭘 만들면 나중에 바로 좀 쓸 수 있게 해 두는 편인데 요즘 게임에 자주 등장하는 UI를 만들다가 문제가 발생.. 이게 정상적인 모습이고 요게 비정상적인.. 차이를 자세히 보면 패널을 바꿀 때마다 아이콘의 위치가 가운데로 가지 않고 기존 위치에 머물러 있음 -> 분명 코드에서는 위치를 맞춰 줬음에도... 이런 경우가 UGUI에서 많이 나타나는 문제인데 이는 꼭 이 경우뿐만 아니라 Canvas안에서 active를 비활성화해서 작업을 해야 한다는 경우 등에서 흔히 나타나는 버그이다. 해결 방안은 간단 -> LayoutRebuilder.ForceRebuildLayoutImmediate(); 을 사용하면 되고 매개변수로는 refresh가 되어야 하는 RectTransform을 넘겨주면 된다. ..

Unity/Tips 2021.11.23

오늘의 영어

Can I get you anything to drink? - 마실 거 드릴까요? Orange juice would be nice. - 오렌지 주스가 좋을 거 같아요. would rather - 차라리 -> I'd rather have Set A. almond [ˈä(l)mənd] - 아몬드 (발음) dairy products - 유제품 starter - main course * 음식 코스로 먹을 때 애피타이저를 starter 느낌으로 pollen - 꽃가루 allergic [əˈlərjik] - 알레르기의, 알레르기에 걸린, 있는 (형용사, 발음) * Are you allergic to pollen? - 너 꽃가루 알레르기 있어? alcoholic beverage - 알콜 음료 (주류)

영어공부 2021.11.22

[프로그래머스 C#] 전력망을 둘로 나누기

https://programmers.co.kr/learn/courses/30/lessons/86971 코딩테스트 연습 - 전력망을 둘로 나누기 9 [[1,3],[2,3],[3,4],[4,5],[4,6],[4,7],[7,8],[7,9]] 3 7 [[1,2],[2,7],[3,7],[3,4],[4,5],[6,7]] 1 programmers.co.kr using System; using System.Collections.Generic; using System.Linq; public class Solution { public int solution(int n, int[,] wires) { int answer = -1; int[] _count = new int[2]; List _link1 = new List(); ..

오늘의 영어

When was the book due back( => back - 돌려줘야 하는(형), due는 기한이니까 => 돌려줘야 하는 기한)? - 책을 돌려줘야 하는 기한이 언제야? -> I'm not sure because they didn't mention it in detail, but maybe the due day was last Friday. - 나는 확실치가 않아 왜냐면 그들이 언급하지 않았거든 자세히, 그러나 아마 반납 기한은 저번 주 금요일이었을 거야. Where can the man return the book? - 어디서 할 수 있어 남자가 반납하는 것 책을? -> (If the library was closed,) he can put the books in the Late Return B..

영어공부 2021.11.20

오늘의 영어

* due - 지불 기일이 된 (형용사) D-day(due day) - 마감일 overdue - 지불 기한이 지난 I'm returning (back) this book. - 나는 돌려주는 중이야 이 책을. (책 반납하러 온 거임) Gosh! It was due last Friday. - 이런! 지난 금요일이 지불 기한이었어. * 요일을 표현할 경우 -> on + 요일 -> I always play a computer game with my friends on Fridays(=every Friday). => 나는 항상 컴퓨터 게임을 한다 나의 친구들과 매 금요일에. * but -> last / this / next 앞에는 전치사 On(X) -> I will play a computer game with ..

영어공부 2021.11.20

오늘의 영어

Why is the man not visiting his regular doctor? - 왜 남자는 방문하지 않았어 그의 주치의에게? -> Because he is from out of town. - 왜냐면 그는 다른 도시로 부터 왔기 때문이야. What does the doctor want to know? - 무었을 의사가 원했어 알기를? -> He wants to know about the patient's appetite. - 그는 원했어 알기를 환자의 식욕에 대하여 What is the main symptom of the flu? - 감기의 메인 증상은 뭐야? -> The main symptom of the flu is fever. - 메인 증상은 열이야. When did the woman’s s..

영어공부 2021.11.16

[프로그래머스 C#] 모음사전

https://programmers.co.kr/learn/courses/30/lessons/84512 코딩테스트 연습 - 모음사전 사전에 알파벳 모음 'A', 'E', 'I', 'O', 'U'만을 사용하여 만들 수 있는, 길이 5 이하의 모든 단어가 수록되어 있습니다. 사전에서 첫 번째 단어는 "A"이고, 그다음은 "AA"이며, 마지막 단어는 "UUUUU"입니 programmers.co.kr using System; public class Solution { public int solution(string word) { int answer = 0; string _useWords = "AEIOU"; int[] _index = new int[_useWords.Length]; _index[0] = 1; for..

반응형