분류 전체보기
-
Interactive Learning Sites for Pythonpython 2021. 3. 25. 16:57
1. codecademy http://www.codecademy.com/learn | Codecademy Codecademy is the easiest way to learn how to code. It's interactive, fun, and you can do it with your friends. www.codecademy.com 2. Bento http://www.bento.io/ Bento - Learn to code and be a self-taught expert developer Curated tutorials on over 200 web technologies to make you an self-taught expert developer. Learn to code with languag..
-
Interactive Learning Sites for Rmachine learning 2021. 3. 25. 16:53
1. datacamp www.datacamp.com/ 2. code school www.pluralsight.com/courses/programming-with-r Programming with R This course will show you the basics of the R programming language, such as data types and data structures, conditional statements, and functions. Get started today! www.pluralsight.com 3. swrl http://www.swirlstats.com/ swirl: Learn R, in R. Learn R, in R. swirl teaches you R programmi..
-
깃허브 최고인기 프로젝트BigData/Node.js 2021. 3. 25. 14:33
1. freeCodeCamp - javascript, d3, react, nodejs github.com/freeCodeCamp/freeCodeCamp/blob/main/docs/how-to-setup-freecodecamp-locally.md freeCodeCamp/freeCodeCamp freeCodeCamp.org's open source codebase and curriculum. Learn to code for free. - freeCodeCamp/freeCodeCamp github.com 2. vue.js Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web github.co..
-
주식투자를 위한 기본기주식공부/투자원칙 철학 2021. 3. 24. 17:57
1. 자본주의에 관한 영상과 책 EBS '다큐프라임-자본주의' 5부작 로버트 기요사키의 '부자들의 음모' 홍춘욱 박사, '50대 사건으로 보는 돈의 역사' 엠제이 드마코, '부의 추월차선' 2. 주식이 무엇인지, 인간의 심리가 주식시장에 어떻게 반영되는지 공부 존 리, '왜 주식인가' 앙드레 코스톨라니, '돈, 뜨겁게 사랑하고 차갑게 다루어라' 피터 린치, '전설로 떠나는 월가의 영웅' 브라운 스톤, '부의 본능' 3. 기업의 재무제표 사경인, '재무제표 모르면 주식투자 절대로 하지마라' 4. 주식의 종류를 파악 - 개별주식, 펀드, ETF, 인덱스펀드 5. 포트폴리오 또는 자산 리밸런싱 - 주식외에 채권, 금, 원자재, 원유, 외환 에 대해서도 공부한다 - 마경환, '채권투자 핵심노하우' - 오건영, ..
-
Python 기초python 2021. 3. 24. 17:39
1. 파이썬 표준 라이브러리 가. 내장함수 docs.python.org/3/library/functions.html Built-in Functions — Python 3.9.2 documentation Built-in Functions The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order. abs(x) Return the absolute value of a number. The argument may be an integer, a floating poin docs.python.org 나. 표준 라이브러리 ..
-
AWS Lambda 로 하는 Hello World!BigData 2021. 3. 24. 15:52
AWS Lambda 로 하는 Hello World! 2018년 2월 11일 velopertdev.log / serverless / tech.log3 Comments 이 튜토리얼은 이어지는 튜토리얼입니다. 이 포스트를 통해 블로그에 처음 방문하셨다면 Serverless 강좌 목록 페이지를 확인해주세요. Lambda 는 AWS 에서 제공하는 FaaS 서비스 입니다. Lambda 말고도, 각 공룡 기업들에서 제공하는 다른 서비스들도 있습니다: Google Functions Azure Functions 아직까지는, Lambda 가 압도적으로 사용률이 높습니다. 사용률과, 구글 검색량이 정비례 하지는 않겠지만, Lambda 가 현재 가장 많이 사용 된 다는 것을 유추 할 수는 있지요. 성숙도, 인기도 측면에선 현..
-
서버리스 아키텍쳐(Serverless)란?BigData 2021. 3. 24. 15:26
서버리스 아키텍쳐(Serverless)란? 2018년 2월 11일 velopertdev.log / serverless / tech.log8 Comments 서버리스(Serverless)를 직역하자면, “서버가 없다” 라는 의미가 있습니다. 하지만, 사실상 서버가 없는건 아닙니다. 그저, 특정 작업을 수행하기 위해서 컴퓨터를 혹은 가상머신에 서버를 설정하고, 이를 통하여 처리 하는 것이 아님을 의미합니다. 그 대신에, BaaS (Backend as a Service) 혹은 FaaS (Function as a Service) 에 의존하여 작업을 처리하게 됩니다. BaaS 를 제공하는 서비스 중에선, Firebase, Parse (지금은 서비스종료 됨), Kinvey 등이 있고, FaaS 를 제공하는 서비스 ..