일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- 안드로이드
- 쓰레드 비디오 다운로드
- 메타 쓰레드
- cloud firestore
- git
- non conventional NFR
- 특수기호
- 객치지향프로그래밍
- jenkins
- firestore
- meta threads
- Firebase
- 파이썬
- 영어회화
- skeleton architecture
- 자료구조
- Realtime Database
- 젠킨스
- RecyclerView
- Python
- 이모티콘
- conventional NFR
- 라이브아카데미
- endless scrolling
- Android
- 특수문자
- 직장영어
- re-engineering
- 쓰레드 이미지 다운로드
- django
- Today
- Total
목록전체 글 (63)
Owl Life

안드로이드 Q의 새로운 피처인 다크테마 적용 방법에 대하여 알아보겠습니다. 시스템에서 다크테마 적용은 설정 - 디스플레이 메뉴에서 적용이 가능합니다. 앱에서는, 1. style - theme의 parent를 Theme.AppCompat.DayNight 로 수정 2. theme의 parent를 DayNight 로 설정하지 못하는 경우에는 android:forceDarkAllowed 속성 추가 3. 코드 레벨에서 강제로 ON/OFF class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.a..

'알다'로 해석은 똑같이 되지만 그것이 내포하는 의미에 따라서 굉장히 많은 말들이 있다. know, understand, find out, notice, realize, recognize, be familiar with, be aware with 그리고 심지어 tell까지 ■ Know – 어떤 지식을 알다, Understand – 이해하다 알다 ex) I understand why she did that, but I don’t agree with her decision. ex) I don’t understand what it means. ■ Find out – 알게 되다. Cf. get to know(x), become to know (x) ex) I found out about that just yes..

■ 많을수록 좋아: The more the better ■ 이를수록 좋아: The earlier the better/sooner the better ■ 가까울수록 좋아: The closer the better ■ 작을수록 좋아: the smaller the better ■ 작을수록 가격이 더 싸: The smaller it is the cheaper it is (gets)/ The smaller the cheaper 로 생각할수도 있는데, 미국에서는 이렇게 사용하지 않음. "the better"처럼 it is를 생략이 불가능하므로 it is 를 그대로 노출시켜서 사용함. 작을수록 더 가격이 비싸 The smaller it is the more expensive it is (gets)/ 작을수록 더 편리해..

get back to + 누구 (on)(such) short notice Can I get back to you on that? -> 나중에 다시 이야기 해도 될까요? Thanks for getting back to me so soon. -> 다시 이야기하게 해줘서 고마워요. I'm sorry for getting back to you so late. + on this issue + on this matter 출처: 유투브

■ 시간 언제가 좋아요? / 시간 언제가 괜찮으세요? When's a good time for you? / When's good for you? When's the best time for you? / When's the best for you? ■ "언제까지 해주세요"라는 표현에서 일반적으로 사용되는 표현 "as soon as possible(you can)" "There is no rush. Whenever you can get to it." ■ 좀 더 Formal 편한 시간 내에 해주세요. + "하지만 가능하면 빠르게" "at your earliest convenience" 출처. Youtube
Syntaxhighlighter 사용http://alexgorbatchev.com/SyntaxHighlighter/ 사용 예) 글 쓸때 우측 상단에 HTML 체크표시 후 아래 태그 추가하여 그 사이에 소스코드 첨부. ------------------------------------------------------------소스코드에 가 포함되면 불필요하게 마지막에 가 함께 포함됨.ex) #include 위 한 줄을 붙이면 마지막에 와 같이 잘못 인식되어 보여짐. 해결 방법은 쉬우면서도 간단합니다. 각각을 아래와 같이 바꿔줍니다. : > 즉, 엔티티 코드로 변환해 주면 됩니다. HTML을 맞춰준다? 정도로 생각하면 될 것 같네요.출처: http://noota.tistory.com/entry/Sy..
Double Linked List 소스코드입니다. #include "iostream" using namespace std; #define MAX_NODE 1000 #define INIT_DATA -1 typedef int T; typedef struct _node { T data; struct _node *prev, *next; } NODE; NODE node_list[MAX_NODE + 1]; int node_idx; NODE *head; int node_count; NODE *alloc_node() { NODE *new_node = &node_list[node_idx++]; new_node->prev = new_node->next = 0; return new_node; } void init() { n..