일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Form Stuff
- 안드로이드폰
- 구글 안드로이드 개발
- 아이폰 바탕화면
- SKY 시리우스
- 안드로이드개발
- 안드로이드 개발 2.0
- 안드로이드 개발 강좌
- 하루 한마디 영어
- 스카이 안드로이드폰 시리우스
- 구글안드로이드
- 안드로이드 바탕화면
- android
- 안드로이드2.0
- 스카이 안드로이드폰 시리우스 K양 동영상
- sky 시리우스폰
- 안드로이드2.0개발
- 안드로이드
- 인기있는 블로그 만들기
- 안드로이드 2.0 개발
- 하루한마디영어
- 아이폰 배경화면
- 안드로이드 개발 2.0 강좌
- MapView
- 안드로이드 배경화면
- 구글 안드로이드
- 영어
- 스마트폰 배경화면
- 안드로이드 개발
- objective-c
- Today
- Total
목록TIS_2020/빅데이터2020_1기 (85)
moozi
gbsb.tistory.com/9
RHadoop 설치를 위해서 R을설치할 때 P.113에서 R버젼을 R-3.6.1로 바꾸어 설치한다. p.115 configure 과정에서 오류발생. => sudo apt install libcurl4-openssl-dev 설치필요 RHadoop설치시 P.131 rmr2가 의존하는 패키지 설치시 에러가 남. install.packages("RJSONIO",dependencies=TRUE,respos="http://cran.rstudio.com") 형식으로 하나씩 설치. 패키지설치시 에러가 계속 발생하나 위와같이 하나씩 해결해서 설치성공. => R버젼에 따른 패키지 호환성 문제 심각.
1. 파이참 실행화면 아랫부분에서 'Terminal'탭 선택 2. pip install lxml 형식으로 실행
import sys args = sys.argv[1:] result=0 print(args[0]) if args[0]=="add": for value in args: if value in ("add","mul"): continue result=result+int(value) elif args[0]=="mul": result=1 for value in args: if value in ("add","mul"): continue result=result*int(value) print(result) 실행문 python calculator.py add 10 20 30 python calculator.py mul 10 20 30
flipdata.tistory.com/35
deafjwhong.tistory.com/84?category=779926
blog.naver.com/da2250/222058699618
newly0513.tistory.com/3?category=794595
Board Register Title Content Writer Submit Reset File Attach
contextConfigLocation /WEB-INF/spring/root-context.xml org.springframework.web.context.ContextLoaderListener appServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/spring/appServlet/servlet-context.xml 1 appServlet / encoding org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 encoding appServlet
create sequence seq_board; create table tbl_board( bno number(10,0), title varchar2(200) not null, content varchar2(2000) not null, writer varchar2(50) not null, regdate date default sysdate, updatedate date default sysdate ); alter table tbl_board add constraint pk_board primary key(bno); insert into tbl_board(bno,title,content,writer) values(seq_board.nextval,'테스트제목','테스트내용','user00'); commit;..
socket.io/get-started/chat