묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결차량 번호판 인식 프로젝트와 TensorFlow로 배우는 딥러닝 영상인식 올인원
get_licenseplate_detector_dataset 문제
제가 따로 만든 데이터 (좌표와 detection 부분이니 "" 안에는 아무것도 넣지않았습니다. ) 만들었습니다. get_licenseplate_detector_dataset 함수를 돌리는데 위와 같은 문제가 떳습니다. 해결방법 부탁드릴께요 제가만든 txt에 문제가 있는걸까요?
-
해결됨실전 자바스크립트
3:18 부분 질문드립니다. (lexical environment)
3:18 쯤에 아래와 같이 설명해주셨는데요."이전에는 마치 함수가 종료될 때마다 execution context 가 제거되고, 그 안에 있던 lexical environment 도 제거되는 것처럼 설명을 드렸는데요.지금과 같이 내부에서 함수가 만들어지는 경우에는 이렇게 lexical environment 가 유지가 됩니다." 위 내용이 헷갈려서 그러는데 아래 1), 2) 중 어떤 내용이 맞는걸까요? ㅠㅠ"함수 A의 내부에서 또 다른 함수 B가 생성되고 함수 A의 실행이 종료될 경우" 에1) A 함수의 execution context 는 제거되지만 A 함수의 lexical environment 는 유지가 된다.2) A 함수의 execution context 와 A 함수의 lexical environment 모두 유지된다.저는 "EC 안에 LE 가 생성된다"고 이해했기 때문에 2번이 맞다고 생각하고 있습니다. 답변 부탁드리겠습니다 ㅠㅠ
-
미해결[리뉴얼] Node.js 교과서 - 기본부터 프로젝트 실습까지
MySQL을 배우면 시퀄라이즈를 사용하여 MySQL과 연동하여 하는방법은 몰라도되는건가요?
깔끔하게 하나로만 하고싶은데 하나만 공부해도되나요? 온라인 창업을 목표로 했을경우 어떤 방식으로 하는게 좋을까요?
-
미해결자바스크립트 알고리즘 문제풀이 입문(코딩테스트 대비)
정규 표현식에 관해 질문이 있습니다.
선생님 안녕하세요. 좋은 강의 감사드립니다. 아직 정규표현식을 공부한 적이 없는데 혹시 이 문제에서 문자만 추출하는 방법이 정규표현식 이외에도 있을까요...? 정규표현식도 공부를 해야겠습니다만은 다른 방법도 존재하는지 궁금합니다!
-
미해결따라하며 배우는 노드, 리액트 시리즈 - 쇼핑몰 사이트 만들기[전체 리뉴얼]
Suspense 컴포넌트만 App.js에 있는데..
안녕하세요, App.js 을 보면 Provider로 store를 연결시켜주는 코드가 없는데 리덕스 스토어를 리액트 내에서 사용 가능한지 여쭤보고싶습니다. function App() { return ( <Suspense fallback={<div>Loading...</div>}> <NavBar /> <div style={{ paddingTop: '69px', minHeight: 'calc(100vh - 80px)' }}> <Switch> <Route exact path='/' component={Auth(LandingPage, null)} /> <Route exact path='/login' component={Auth(LoginPage, false)} /> <Route exact path='/register' component={Auth(RegisterPage, false)} /> <Route exact path='/product/upload' component={Auth(UploadProductPage, true)} /> <Route exact path='/product/:productId' component={Auth(DetailProductPage, null)} /> <Route exact path='/user/cart' component={Auth(CartPage, true)} /> </Switch> </div> <Footer /> </Suspense> ); } Supense 컴포넌트가 비동기작업을 해주며, 로딩시 로딩화면을 보여주는 컴포넌트역할로 알고있는데, Provider와 같이 사용해도 되는걸까요?
-
미해결따라하며 배우는 노드, 리액트 시리즈 - 기본 강의
already in use에러
Error: listen EADDRINUSE: address already in use :::4000 4000포트 사용하는 PID를 kill한 후 다시 start로 올려도 동일한 에러가 발생합니다. 작성한 구문은 아래에 첨부합니다. const port = 4000 // 포트 const mongoose = require('mongoose') mongoose.connect('mongodb+srv://kyungwon:abcd1234@boilerplate.dg2la.mongodb.net/boilerplate?retryWrites=true&w=majority', { useNewUrlParser: true, useUnifiedTopology: true, useCreateIndex: true, useFindAndModify: false }).then(() => console.log('MongoDB Connected...')) .catch(err => console.log(err))
-
미해결차량 번호판 인식 프로젝트와 TensorFlow로 배우는 딥러닝 영상인식 올인원
split 함수 문제
제가 만든 custom data로 split 함수하나 추가하라고해서 했는데 문제가 일어납니다. split함수 저렇게 추가하는거 다르게 만드는걸까요?
-
미해결[리뉴얼] React로 NodeBird SNS 만들기
자동완성 기능 관련 질문
Sleact에서 useState를 import 하지 않았을 경우 빠른수정을 통해서 자동으로 import가 되도록 할 수 있었는데 여기에서는 그게 안되더라고요. 그게 typescript의 기능인지 따로 eslint에서 옵션을 정한건지 궁금해서 질문 드립니다.
-
미해결[리뉴얼] React로 NodeBird SNS 만들기
질문이 있습니다
페이지에서 로그인이 잠깐 풀렸다가 로그인되어 보이는 현상 때문에 모든 페이지에 서버사이드 렌더링 하는 함수 넣으셨잖아요 그러면 그냥 모든 컴포넌트가 공통으로 사용하는 front 폴더에 _app.js 파일 에 서버사이드 렌더링 하는 함수 넣어놓으면 공 통으로 적용되는거 아닌가요 ???
-
해결됨그로스해킹 - 데이터와 실험을 통해 성장하는 서비스를 만드는 방법
고객이탈비율 관련하여 질문 드립니다.
Lifetime Value=ARPU * (1/Churn)이라고 하셨는데, 이때 고객이탈비율을 의미하는 Churn은 어떻게 측정하는 것인지 궁금합니다. 특정 기간 내에 이탈하는 고객의 비율을 계산하는 건지, 수익 발생 전에 이탈하는 고객의 비율을 계산하는 건지 이해가 안 되네요...
-
해결됨실전 리액트 프로그래밍
redux useSelector에 대해 질문있습니다.
강의 내용중 const user = useSelector((state) => { console.log("User useSelector"); return state.user; }); const product = useSelector((state) => { console.log("product useSelector"); return state.product; }); useSelector 로그를 찍어 봤는데 User render User useSelector Product render product useSelector 까지는 예상된 결과였는데 그 후 User useSelector product useSelector는 왜 찍히는 건지 궁금합니다.
-
미해결피그마(Figma)를 활용한 UI디자인 입문부터 실전까지 A to Z
프로토타이핑 질문입니다.
피그마에서 UI를 디자인하고 프로토타이핑을 해 놓으면, 애플워치에서 인터랙션이 확인 가능한가요?
-
미해결[리뉴얼] React로 NodeBird SNS 만들기
_app.js 관련
지금 page에서 공통적으로 사용 할 것들을 _app.js에서 정의를 해야한다는것을 이해하였습니다. 이 _app.js의 파일명이 꼭 _app.js여야 하는거죠? next라는 프레임워크 안에서 그 규칙에 따라서 코딩을 해야되기 때문에요. 그리고 질문들을 읽다가 보니 import 'antd/dist/antd.css' 같은 경우는 _app.js에 정의를 하였을때 공통으로 적용이 되는데 import Head from 'next/head'의 경우 파일마다 해줘야하는 이유는 파일과 변수의 차이일까요? 파일 정의시에는 공통적용이 가능하나 변수의 경우에는 파일마다 적용을 해줘야한다.라 할까요. 그리고 이전에 제로초님이 말씀해주신 sleact 후에 nodebird를 수강하라는 의미가 이해가 갑니다. 직접 웹팩이나 바벨을 sleact에서 해보고 next로 넘어오니.. next가 편한점도 있고 자동으로 해준다는 말에 어떻게 동작하는지 이해가가니.. 좋은 커리큘럼인듯합니다.
-
미해결앵귤러 파이어베이스 완전정복 - PetStore 쇼핑몰 프로젝트
섹션2 FireBase의 petList활용하기에서 에러나네요
설명대로 다운로드받은 폴더에서 복사하고 새로 생성한 프로젝트에 붙여넣기했는데 저도 저 위와 같은 오류문구가 나오네요 ./src/app/services/item.service.ts:2:0-41 - Error: Module not found: Error: Can't resolve 'firebase/app' in 'C:\Users\jun\Documents\angular-08liter\angular-petlist\src\app\services' ./src/app/services/item.service.ts:3:0-27 - Error: Module not found: Error: Can't resolve 'firebase/database' in 'C:\Users\jun\Documents\angular-08liter\angular-petlist\src\app\services' Error: src/app/classes/item.ts:2:5 - error TS2564: Property 'key' has no initializer and is not definitely assigned in the constructor. 2 key: string; ~~~ Error: src/app/classes/item.ts:3:5 - error TS2564: Property 'id' has no initializer and is not definitely assigned in the constructor. 3 id: string; ~~ Error: src/app/classes/item.ts:4:5 - error TS2564: Property 'name' has no initializer and is not definitely assigned in the constructor. 4 name: string; ~~~~ Error: src/app/classes/item.ts:5:5 - error TS2564: Property 'available' has no initializer and is not definitely assigned in the constructor. 5 available: boolean; ~~~~~~~~~ Error: src/app/item/item.component.html:4:27 - error TS2341: Property 'item' is private and only accessible within class 'ItemComponent'. 4 <input [(ngModel)]="item.id" placeholder="ID"/> ~~~~ src/app/item/item.component.ts:8:16 8 templateUrl: './item.component.html', m ~~~~~~~~~~~~~~~~~~~~~~~ Error occurs in the template of component ItemComponent. Error: src/app/item/item.component.html:4:27 - error TS2341: Property 'item' is private and only accessible within class 'ItemComponent'. 4 <input [(ngModel)]="item.id" placeholder="ID"/> ~~~~ src/app/item/item.component.ts:8:16 8 templateUrl: './item.component.html', ~~~~~~~~~~~~~~~~~~~~~~~ Error occurs in the template of component ItemComponent. Error: src/app/item/item.component.html:9:27 - error TS2341: Property 'item' is private and only accessible within class 'ItemComponent'. 9 <input [(ngModel)]="item.name" placeholder="Name"/> ~~~~ src/app/item/item.component.ts:8:16 8 templateUrl: './item.component.html', ~~~~~~~~~~~~~~~~~~~~~~~ Error occurs in the template of component ItemComponent. Error: src/app/item/item.component.html:9:27 - error TS2341: Property 'item' is private and only accessible within class 'ItemComponent'. 9 <input [(ngModel)]="item.name" placeholder="Name"/> ~~~~ src/app/item/item.component.ts:8:16 8 templateUrl: './item.component.html', ~~~~~~~~~~~~~~~~~~~~~~~ Error occurs in the template of component ItemComponent. Error: src/app/item/item.component.html:14:27 - error TS2341: Property 'item' is private and only accessible within class 'ItemComponent'. 14 <input [(ngModel)]="item.available" type="checkbox"/> ~~~~ src/app/item/item.component.ts:8:16 8 templateUrl: './item.component.html', ~~~~~~~~~~~~~~~~~~~~~~~ Error occurs in the template of component ItemComponent. Error: src/app/item/item.component.html:14:27 - error TS2341: Property 'item' is private and only accessible within class 'ItemComponent'. 14 <input [(ngModel)]="item.available" type="checkbox"/> ~~~~ src/app/item/item.component.ts:8:16 8 templateUrl: './item.component.html', ~~~~~~~~~~~~~~~~~~~~~~~ Error occurs in the template of component ItemComponent. Error: src/app/item/item.component.ts:34:9 - error TS2322: Type 'Item | undefined' is not assignable to type 'Item'. Type 'undefined' is not assignable to type 'Item'. 34 this.item = this.itemService.getItem(id); ~~~~~~~~~ Error: src/app/services/item.service.ts:4:27 - error TS2307: Cannot find module 'firebase/app' or its corresponding type declarations. 4 import * as firebase from 'firebase/app'; ~~~~~~~~~~~~~~ Error: src/app/services/item.service.ts:36:33 - error TS7006: Parameter 'snapshot' implicitly has an 'any' type. 36 this.itemList.on('value', snapshot => { ~~~~~~~~ Error: src/app/services/item.service.ts:37:27 - error TS7006: Parameter 'snap' implicitly has an 'any' type. 37 snapshot.forEach( snap => { 라고 나고있는데 진행이 안되고있어요
-
미해결예제로 살펴보는 PyQt Tutorial
QSlider 부분 자료 파일
따로 png 파일이 없는건가요? mute.png min.png medium.png max.png 파일이 없네요 ㅠㅠ
-
미해결mongoDB 기초부터 실무까지(feat. Node.js)
궁금한 사항이 있습니다.
항상 좋은강의 해주셔셔 감사합니다. 다름이 아니라 관계를 하게 될 경우 index를 따로 생성해주셔야 한다고 말씀해주셨는데 부모 - 자식의 관계를 key로 생성한다면 결국 부모랑 자식이 가지고 있는 id는 모두 index로 생성이 되어있고 부모는 자식의 key를 자식은 부모의 key를 가지고 있는 상태인데 왜 따로 index를 부여해야 하는지 궁금합니다..
-
미해결자바스크립트 알고리즘 문제풀이 입문(코딩테스트 대비)
봉우리문제
선생님 봉우리 문제에서 flag변수를 사용하셨는데, 정확히 flag변수는 어떤 경우에 사용해야하는지 알 수 있을까요? 언제써야하는건지 확실히 모르겠습니다.
-
미해결Google 공인! 텐서플로(TensorFlow) 개발자 자격증 취득
중학생도 가능?
안녕하세요, 좋은 강의 감사 드립니다. 제 아들이 중학교 1학년인데, 이쪽에 관심이 많습니다. 중학생 또는 초등학생고학년도 이 자격을 취득할 수 있나요? 아이가 소프트웨어를 정말 좋아합니다^^
-
미해결언리얼 핵앤슬래쉬 게임 만들기
앉아서 무기 뽑기 강의 중 질문
앉아서 무기 뽑기 애니메이션 블루프린트에서 캐쉬포즈 메뉴가 없습니다.(4.26버전) 강의 내용에는 캐쉬포즈를 선택해서 진행하시던데, 캐쉬포즈 메뉴가 왜 없는지 모르겠습니다. 별도로 설정해줘야되는 부분이 있을까요?
-
미해결일주일 완성! 3dsmax 입문 (자동차 및 캐릭터 만들기)
서로 다른 맥스 파일 간 오브젝트 이동
안녕하세요, 파일 간 오브젝트 이동에 관한 문제입니다. 예를 들어, 제가 맥스 파일을 열고 자동차 오브젝트를 만들었는데 다른 맥스 파일을 새로 열어서 이 자동차 오브젝트를 그 파일로 복사붙여넣기 하고 싶을 때 다른 파일로의 이동은 어떻게 하는건가요?