일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- https://minkwon4.tistory.com/161
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- 국회의원 & 높으신 분들 어록
- Today
- Total
목록T.N.V/응용1 (13)
OPEN between Secret
를 참조하여서 해결 adnroid에서 openCV와 주식APi를 둘다 사용하려고 하다보니 NDK 설정쪽에서 무언가 잘못되었는지 주식API의 so를 못 읽어오는 error가 발생.그러다 http://creaby.tistory.com/11 를 참조하여 일단 error는 해결.
http://www.pratikbutani.com/2016/06/android-upload-image-file-using-retrofit-2-0/https://androidclarified.com/android-image-upload-example/ 참고로 갤러리에서 갖고온 이미지 경로는 context:?? 로 시작하는데 이 경로에 있는 이미지를 서버로 보내려고 하면 error 발생이미지의 절대경로를 갖고와서 보내야 하늗네 그 절대경로는 다음 소스를 통해서 구할수 있음private String getRealPathFromURI(Uri contentURI) { String filePath; Cursor cursor = getActivity().getContentResolver().query(contentU..
http://mailmail.tistory.com/9 https://academy.realm.io/kr/posts/android-threading-background-tasks/ 동기 비동기 (아직도 개념 정리가 안된듯)https://blog.naver.com/hulhul2k/220318155749 개념정리http://mailmail.tistory.com/9 http://fallingstar.tistory.com/172 http://twinw.tistory.com/50(pendingIntent 이용)-> service, thread를 이용하여서 앱을 종료시켜도 알림이 오게 구현. callback 을 이용한 통신http://fallingstar.tistory.com/172
1. pubDate format 변경하기pubDate가 Tue, 03 Apr 2018 17:57:47 +0900 이런 식으로 값을 주기 때문에 $date = $chan->pubDate; $pubDate = strftime("%Y-%m-%d %H:%M:%S", strtotime($date));이런식으로 date의 타입을 변경해서 사용해야 한다. stackoverflow 참고https://stackoverflow.com/questions/2912262/convert-rss-pubdate-to-a-timestamp 2. php 에서 날짜 기준으로 정렬하기$data = array(); // 날짜를 기준으로 오름차순으로 정렬 $arr = array( 'title' =>"$title", 'url' => "$url"..
sudo dpkg-reconfigure tzdata입력하면 시간을 설정할수 있는 ui가 나오게 됨.Asia -> seoul을 선택하면 끝참고 : http://webagency.ogoga.com/act-article/article=58
오늘 할일1. 코스피 코스닥 값 디비에 저장하는 php를 crontab을 이용해서 돌리기-> 일단 크론탭을 작성하여서 하긴 하였지만 확인해봐야 함.크론탭 참고 1: http://nahosung.tistory.com/952: http://jmoon.co.kr/110 -> php 실행시키는법3. https://superuser.com/questions/839017/how-to-save-crontab-edits -> 크론탭 저장하고 나오는 방법 4. http://greenhappy.tistory.com/entry/%EB%A6%AC%EB%88%85%EC%8A%A4-crontab-%EC%B4%88%EB%8B%A8%EC%9C%84-%EC%8B%A4%ED%96%89-%ED%95%98%EA%B8%B0-> 크론탭 초단위..
난 프래그먼트로 만들었기 때문에 일반 Activity 와는 다르게 적용.//recyclerView 선언 및 recyclerAdapter 선언 private RecyclerView recyclerView = null; private RecyclerAdapter recyclerAdapter = null; onCreateView에 다음을 작성//리싸이클러뷰를 붙일 곳을 찾음. recyclerAdapter = new RecyclerAdapter(this.getContext()); recyclerView = rootView.findViewById(R.id.frg_info_recyclerView); recyclerView.setLayoutManager(new LinearLayoutManager(this.getCon..
AutoCompleteTextView edit = (AutoCompleteTextView) rootView.findViewById(R.id.autoCompleteTextView); edit.setAdapter(new ArrayAdapter(getContext(), android.R.layout.simple_dropdown_item_1line, items)); edit.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView parent, View view, int position, long id) { // Toast.makeText(getContext(), ((Text..
방법 1Toad for mysql 이용하기-> import 기능을 사용하여서 csv 파일을 넣으려고 했는데 한글 깨짐1. Toad 언어 설정하는 부분이 있다고 인터넷에서 얘기하지만 수정하는부분이 없음.2. 터미널에서 show variables like 'character%'; 로 character를 다 utf-8 로 바꾸고 Toad 에서 다양한 방법으로 import 시도에도 계속 한글 '??' 표시-> 포기 방법 2서버 터미널에서 csv 파일을 DB에다가 직접 import 시키기. Load data local infile '파일명' into table 테이블명 옵션설정;-> 파일명 : csv 파일이 위치한 곳-> 테이블명 : DB 테이블명-> 옵션설정 : csv파일에서 값들이 나뉘어져 있는 형태 확인->..