분류 전체보기 (154) 썸네일형 리스트형 [E트렌드/E-TREND] 2021년 10월 7일 목, 염이사의 일일시황 아버지가 좋아하시는 염승환 이사님 정리 시작! https://www.youtube.com/watch?v=yVlLN_mdzrs [오늘 시황] 시장이 일주일 내내 빠지던 충격에서 벗어나 의미있는 반등이 나타났다. (코스닥 3%, 코스피 1.7% - 어제 빠진 만큼) 오늘 시장의 의미는 악재가 일부 해소 중 - 물가-> 천연가스 가격 급락, 긴축 이슈 일부 완화 - 재정정책(유동성) -> 12월까지 부채한도 상향 완전한 해소는 아니나 달라지는 조짐 오늘 많이 오른 것은 자동차 부품(현대위아, 현대모비스 4%) => 분위기가 바뀌어 가고 있다. 조심스럽지만 최악의 상황은 넘어간 듯(2900선에서 어느 정도 저점은 형성) 2차전지, 태양광, 정유주.. 최근 시장의 주도주(빠졌다. 주도주가 끝났다는 이야기가 아님... [dreamhack] basic_exploitation_000 wirteup 추억팔이 시작! basic_exploitation_000 (pwnable) url : https://dreamhack.io/wargame/challenges/2/ 아무런 보호 기법이 걸려있지 않은 것을 확인할 수 있다. basic_exploitation_000 을 실행시키면 buf 의 주소가 출력되고 입력을 기다린다. 입력을 받으면 종료된다. 취약점 찾기 #include #include #include #include void alarm_handler() { puts("TIME OUT"); exit(-1); } void initialize() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); signal(SIGALRM, alarm_.. [안드로이드/Android] JAVA long을 String으로 형변환 숫자를 문자로 바꿀 때, 보통 [.toString()] 이라는 좋은 친구를 사용했는데, 이 long이라는 친구를 String으로 변환할 때, .toString()을 사용할 수 없다. 결론만 보면, JAVA에서는 long을 String으로 바꾸는 방법이 여럿 존재한다. [방법1] valueOf [String] string = [String].valueOf(object); [방법2] Wrapper Class String string = object.toString(value); [방법3] String string = long + ""; [안드로이드/Android] Go to the documentation to learn how to Fix dependency resolution errors. 해결 Duplicate class android.support.v4.app.INotificationSideChannel found in modules core-1.5.0-runtime (androidx.core:core:1.5.0) and support-compat-25.1.1-runtime (com.android.support:support-compat:25.1.1) Duplicate class android.support.v4.app.INotificationSideChannel$Stub found in modules core-1.5.0-runtime (androidx.core:core:1.5.0) and support-compat-25.1.1-runtime (com.android.support:suppor.. [안드로이드/Android] Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference 해결 보호되어 있는 글입니다. [안드로이드/Android] Unrecognized Android Studio (or Android Support plugin for IntelliJ IDEA) version , please retry with version 20XX.X.X or newer. 아래와 같이 뜨는 오류를 해결해보자 익명의 XXX고양이께서 안드로이드 스튜디오를 업데이트 하는 바람에 (안그래도 오류가 많았지만) 계속된 버전 문제에 굴복하였고, 안드로이드 스튜디오 업데이트를 하기로 힘들게 마음을 먹었다. Unrecognized Android Studio (or Android Support plugin for IntelliJ IDEA) version '202.7660.26.42.7486908', please retry with version 2020.3.1 or newer. 이 문제는 안드로이드 프로젝트를 같이하던 동료가 버전을 올려버려서 안맞을 때 발생하는 증상이다. build.gradle를 보면, 아래와 같이 바뀐 것을 확인할 수 있다. classpath "com.android.to.. [안드로이드/Android] Untracked Files Prevent Checkout Move or commit them before checkout 해결 아래와 같은 문제가 발생 시, 해결하는 방법이 두가지가 있다. Untracked Files Prevent Checkout Move or commit them before checkout 1. VCS에 파일을 추가한 후, 커밋을 한다. Add to VCS 를 클릭하면, Unversioned Files -> Default Changelist 로 옮겨진것을 확인할 수 있다. 그러고 나서 commit을 해주면 된다! 그러나, 파일이 본의 아니게 바뀌었고, 변경 사항을 반영하고 싶지 않을 경우가 있다. 2. "숨김" 처리 한다. Ctrl + Shift + a 를 하거나, VCS->Git->Stash Changes 를 클릭해준다. 작업명을 해주고 Create Stash 를 해주고 기존에 하던 작업을 하면 된다! (.. [안드로이드/Android] Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: No outputs for the main artifact of variant: debug 에러 해결 Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: No outputs for the main artifact of variant: debug 이 에러가 발생해서 빌드가 안되는 경우가 있다. 해결방법 1. Build -> Clean project 2. Build -> Rebuild project 를 해주고 안될 경우 3. File -> Invalidate Caches / Restart -> Invalidate and restart 를 해주면 된다. https://stackoverflow.com/questions/56440572/how-to-fix-unable-to-determine-application-.. 이전 1 ··· 13 14 15 16 17 18 19 20 다음