├── 2013 └── Code-Ch12.pdf ├── 2014 ├── opensourcePerformance │ └── Working with Big Data in Bioinformatics v1.0.pdf └── sicp │ └── sicp_3_3.pdf ├── 2015 ├── bigArchitecture │ └── 아꿈사_NoSQL.pdf ├── doingDataScience │ └── 데이터 저널리즘_10장_아꿈사.pdf ├── elasticsearch │ ├── ch1_일래스틱서치_클러스터_시작.pdf │ ├── chapter5 make your search better │ ├── 엘라스틱서치_6.pdf │ └── 자료색인.pdf └── learningSpark │ ├── Ch13.pdf │ ├── Ch9_SPARKSQL.pdf │ └── ch5_data.pdf ├── 2016 ├── functional_thinking │ └── 5.pdf └── httpDefinition │ └── HTTP_definitive_guide_17.pdf ├── 2017 ├── deep_learning │ ├── chapter_4.pdf │ └── chapter_6.pdf └── deep_learning_a_to_z │ └── ch_2_3.pdf ├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /2013/Code-Ch12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2013/Code-Ch12.pdf -------------------------------------------------------------------------------- /2014/opensourcePerformance/Working with Big Data in Bioinformatics v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2014/opensourcePerformance/Working with Big Data in Bioinformatics v1.0.pdf -------------------------------------------------------------------------------- /2014/sicp/sicp_3_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2014/sicp/sicp_3_3.pdf -------------------------------------------------------------------------------- /2015/bigArchitecture/아꿈사_NoSQL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2015/bigArchitecture/아꿈사_NoSQL.pdf -------------------------------------------------------------------------------- /2015/doingDataScience/데이터 저널리즘_10장_아꿈사.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2015/doingDataScience/데이터 저널리즘_10장_아꿈사.pdf -------------------------------------------------------------------------------- /2015/elasticsearch/ch1_일래스틱서치_클러스터_시작.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2015/elasticsearch/ch1_일래스틱서치_클러스터_시작.pdf -------------------------------------------------------------------------------- /2015/elasticsearch/chapter5 make your search better: -------------------------------------------------------------------------------- 1 | 2 | http://www.slideshare.net/cinari4/elasticsearch-server-chapter5 3 | -------------------------------------------------------------------------------- /2015/elasticsearch/엘라스틱서치_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2015/elasticsearch/엘라스틱서치_6.pdf -------------------------------------------------------------------------------- /2015/elasticsearch/자료색인.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2015/elasticsearch/자료색인.pdf -------------------------------------------------------------------------------- /2015/learningSpark/Ch13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2015/learningSpark/Ch13.pdf -------------------------------------------------------------------------------- /2015/learningSpark/Ch9_SPARKSQL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2015/learningSpark/Ch9_SPARKSQL.pdf -------------------------------------------------------------------------------- /2015/learningSpark/ch5_data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2015/learningSpark/ch5_data.pdf -------------------------------------------------------------------------------- /2016/functional_thinking/5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2016/functional_thinking/5.pdf -------------------------------------------------------------------------------- /2016/httpDefinition/HTTP_definitive_guide_17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2016/httpDefinition/HTTP_definitive_guide_17.pdf -------------------------------------------------------------------------------- /2017/deep_learning/chapter_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2017/deep_learning/chapter_4.pdf -------------------------------------------------------------------------------- /2017/deep_learning/chapter_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2017/deep_learning/chapter_6.pdf -------------------------------------------------------------------------------- /2017/deep_learning_a_to_z/ch_2_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andstudy/afternoon/cb4948485f864ca8aa5ea19724cd319bf0ce2568/2017/deep_learning_a_to_z/ch_2_3.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # andstudy afternoon 2 | 3 | * 아꿈사 오후반 스터디 자료 4 | * wiki가 주목적 5 | 6 | ## 스터디 카페 7 | 8 | * [naver cafe](http://cafe.naver.com/architect1.cafe) 9 | * [wiki](https://github.com/andstudy/afternoon/wiki) 10 | 11 | --------------------------------------------------------------------------------