분류 전체보기
ARK 인베스트 ETF 이메일로 매매일지 구독하기
ARK 인베스트 ETF 이메일로 매매일지 구독하기
2021.01.23ark-funds.com/ ARK Innovation ETFs Invest in ARK's Innovation ETFs – Exchange Traded Funds, designed to aim for attractive performance, uncorrelated to traditional investment strategies. ark-funds.com 20년 3월 이후 ㅎㄷㄷ.. 도데체 뭘 어떻게 담았길래 액티브펀드 운용을 이렇게 할 수 있는지... 도데체 뭘 사고 팔았을까? 당장 알아봐야겠는걸? 캐시우드가 이끄는 ARK ETF 매매일지를 이메일로 받아볼 수 있다 메인 홈페이지에서 구독 클릭! 위의 사진과 같이 선택한다음에 구독을 누른다 그럼 이메일로 인증 메일이 오는데 Confirm my subs..
경기 부양책 (양적완화/금리) 를 알아보자
경기 부양책 (양적완화/금리) 를 알아보자
2021.01.2220년 3월부터 한국도 양적완화를 시작했다양적완화? 풀기? 차근차근 알아보자양적완화 라는것은 돈을 푸는 것이다. 사전에 보면 기준금리 수준이 이미 낮은 상태인데.. 더 좋은 방법은 없을까? 해서 시중에 돈을 푸는 것이다.왜 돈을 푸냐? 경제가 안좋아지니까 돈을 푸는 것이다. 왜 경제가 안좋아지는데 돈을 풀까? 돈을 풀면 경제가 좋아져? 돈이 많아지면.. 이 많아진 돈을 가지고 가계는 소비를 할것이고회사는 설비투자를 할 것이다. 가계는 소비를 하니까? 회사는 매출이 좋아지고. 매출이 좋아지면? 회사 덩치가 커지고, 고용을 늘리겠지?고용을 늘리면 가계가 좋아지겠지이렇게 양적 완화를 하면 가계와 회사가 좋아지게 된다. 그럼 양적완화는 누가 시행(?) 하는거야?국가별로 하나씩밖에 없는 중..
[react native] textinput 입력 시 글자 유실 textinput lose focus react native
[react native] textinput 입력 시 글자 유실 textinput lose focus react native
2021.01.14export default () => { const [content, setContent] = React.useState(''); const InsertData = () => { return ( setContent(text)} ) } return ( ) } 이렇게 InsertData 라는 component 를 만들고 그 안에서 TextInput 에 텍스트를 입력할 때 마다 계속 쳐지는게 아니라 한글자 치면 focus 가 사라지고;; 또 클릭해서 한글자 치고... 계속 저 InsertData() 가 rendering 되는 것이였다 (한글자 칠때마다) 해결방법은 InsertData 를 따로 컴포넌트로 만들어서 import 해서 사용하자 InsertData.js export default () => { con..
Ark Invest ETF (ARKK, ARKQ, ARKW, ARKG, ARKF)
Ark Invest ETF (ARKK, ARKQ, ARKW, ARKG, ARKF)
2021.01.101. ARKK 파괴적인 혁신적인 성장기업들로 이루어진 ETF (골고루..?) 1. DNA 기술 (유전 공학) 2. 자동화 및 제조분야의 산업 혁신 3. 인프라 및 서비스 (차세대 인터넷) 4. 금융 서비스 (핀 테크) 2. ARKQ 자동화, 로봇공학 테마로 이루어진 ETF 1. 자율 교통 2. 로봇 공학 및 자동화 3. 3D 프린팅 4. 에너지 저장소 5. 우주 탐사 3. ARKW 차세대 인터넷 ETF. 기존 인프라를 클라우드 전환화해서 모바일 및 신규 서비스 등 차세대 인터넷 발전 ETF 1. 클라우드 컴퓨팅 및 사이버 보안 2. 전자상거래 3. 빅 데이터 및 인공지능 (AI) 4. 모바일 기술 및 사물인터넷(IoT) 5. 소셜 플랫폼 및 블록체인 4. ARKG 바이오 ETF. 유전 공학의 발전 기대 ..
[react native] Invariant Violation: View config getter callback for component `firstView` must be a function (received `undefined`). Make sure to start component names with a capital letter.
[react native] Invariant Violation: View config getter callback for component `firstView` must be a function (received `undefined`). Make sure to start component names with a capital letter.
2021.01.08Invariant Violation: View config getter callback for component `firstView` must be a function (received `undefined`). Make sure to start component names with a capital letter. export default () => { const firstView = () => { return ( hello ); }; return ( FirstView 로 변경 Make sure to start component names with a capital letter. 구성 요소 이름은 대문자로 시작해야합니다.
[react native] react-native-calendars 캘린더에 마킹하기
[react native] react-native-calendars 캘린더에 마킹하기
2021.01.07import { Calendar } from 'react-native-calendars'; export default () => { const [markedDates, setMarkedDates] = React.useState(null); const [dates, setDates] = React.useState(['2021-01-05', '2021-01-20']); function addDates() { let obj = dates.reduce( (c, v) => Object.assign(c, { [v]: { marked: true, dotColor: 'red' }, }), {}, ); console.log(obj); setMarkedDates(obj); } return ( { addDates(); }}..
[react native] Warning: Cannot update a component from inside the function body of a different component.
[react native] Warning: Cannot update a component from inside the function body of a different component.
2021.01.07Warning: Cannot update a component from inside the function body of a different component. App.js const [visible, setVisible] = useState(false); Component.js export default (props) => { return ( /> ) } 부모에서 Modal 을 View 한 후에 (Component.js) Button 을 클릭하면 props 으로 넘어온 부모의 state 를 setvisible(false) 로 modal 을 닫으려 했다 Warning: Cannot update a component from inside the function body of a different comp..
[react native] TypeError: this.setState is not a function.
[react native] TypeError: this.setState is not a function.
2020.12.31TypeError: this.setState is not a function. export default class App extends Component { this.state = { data : '' } ... getItem = () => { return new Promise(function (resolve, reject) { axios .get('https://example.com') .then(function (response){ resolve(response) }) .catch(function (error){ reject(error) }); }; }; loadItem = () => { this.getItem() .then(function (items){ this.setState({ { const..
[node.js] nodejs 자동 재기동하게 만들기
[node.js] nodejs 자동 재기동하게 만들기
2020.12.29예기치 못하게 nodejs가 죽는 일이 발생할 일이 생겼다 (재부팅 등) 그 때 자동으로 재기동 하게 만들어보자 npm 은 당연히 깔려있을테고 npm install -g forever 으로 forever 을 설치하자 그리고 app.js 가 있는 디렉토리로 이동해서 forever start --minUptime 3000 --spinSleepTime 3000 -l app.log -a app.js 이라고 입력하자 자세하게 들여다보면 그냥 forever start app.js 이라고 해도 등록은 되는데 이런 워닝들이 뜬다. 설정을 좀 해달라고 권고하는데 해주자 --minUptime, --spinSleepTime 죽었을 때 다시 올라오는 시간을 설정해달라는 것 같다. 또 -l app.log 는 백그라운드에 app..
[nginx] 재부팅 시 자동으로 시작하게끔 서비스 등록하기 nssm 무중단
[nginx] 재부팅 시 자동으로 시작하게끔 서비스 등록하기 nssm 무중단
2020.12.28서버가 재부팅 될 경우 수동으로 다시 nginx 을 가동시켜야 하는 불편함이 생겼다 이럴 경우 nssm 이라는 서비스 매니저를 사용하면 해결된다 다운로드 링크 ↓ nssm 2.24 설치 하고 nssm-2.24 폴더 안에 win64 폴더로 이동한다 그럼 nssm.exe 가 있는데 cmd 로 해당 경로까지 이동 후 nssm install [서비스명] 그러면 아래와 같은 gui 창이 뜨는데 path 에는 exe 선택하면 directory 에는 자동으로 경로가 지정된다 그리고 아래 install service 누르면 끝 그 다음 services.msc 에서 서비스 실행 시키면 진짜 끝
Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default a..
Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default a..
2020.12.23Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports. 컴포넌트 최근에 추가한 것들 다시한번 살펴보자 나같은 경우 import { AppLoading } from 'expo-app-loading' 으로 썼다 expo-app-loading 에는 default export 로 되어있는데..
Something went wrong installing the "sharp" module
Something went wrong installing the "sharp" module
2020.12.23Something went wrong installing the "sharp" module dlopen(/Users/maani/Documents/react native/nexseat/node_modules/sharp/build/Release/sharp.node, 1): Library not loaded: @rpath/libvips-cpp.42.dylib Referenced from: /Users/maani/Documents/react native/nexseat/node_modules/sharp/build/Release/sharp.node Reason: image not found - Remove the "node_modules/sharp" directory, run "npm install" and loo..