묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
Vue.js 중급 강좌 - 웹앱 제작으로 배워보는 Vue.js, ES6, Vuex
깃허브 권한요청드립니다.
삭제된 글입니다
-
미해결Vue.js 중급 강좌 - 웹앱 제작으로 배워보는 Vue.js, ES6, Vuex
깃허브 권한 요청드려요!!
깃허브에 댓글로 작성해두었습니다! 확인부탁드립니다 :)
-
미해결HAL, CubeMX, TrueSTUDIO를 이용한 STM32F4 무료 강좌
SPI (VS1003)의 클럭 폴라리티 ,클럭엣지에 관한 질문입니다.
데이터시트를 보면 클럭 폴라리티가 Low고, 클럭엣지의 데이터전송은 1Edge에서 전송되는걸로 보이는데 적용한것은 High에 2Edge로 했는데 제가 잘못 이해한것인지 헷갈립니다.!
-
미해결[베스트셀러 저자 직강] 디지털 마케팅과 페이스북 / 인스타그램 광고
픽셀 추적 설정시 모바일 페이지 진입 가능성
픽셀의 추적을 설정하기 위해 이벤트 추가를 통하여원하는 URL에 진입하여 설정을 진행하는데요. 이때 데스크탑 버전의 웹페이지가 열리게 됩니다. 제 경우는 90% 이상 유저가 모바일 버전을 접속하는데, 물론, 페이지 제작에따라 데스크탑의 특정 버픈이 같기도 한데, 모바일과 데스크탑 진입에 따라서 보여지거나 안보여지거나, 또는 서로 다른 버튼이 이용되는 경우가 종종 있습니다. 요점은, 이 추적 설정을할때 데스크탑이 아닌 모바일 페이지로 가서 설정 하는 방법이 있을까요 ?
-
해결됨[C#과 유니티로 만드는 MMORPG 게임 개발 시리즈] Part5: 데이터베이스
유니티의 Scriptable Object를 DB로 사용해도 될까요?
https://github.com/Heretic-byte/Strategy2/blob/master/Assets/Scripts/SO/UnitTable.cs 이런식으로 유니티가 제공하는 Scriptable Object를 db처럼 사용하는 코드들을 봤는데요 현업분들중에 db를 이런것으로 사용하는 분은 들어보지 못했습니다. 혹시 이런 방법을 사용하지 않는 치명적인 이유가 있을까요? 또 언리얼에서도 FDataTableRow 라는 데이터테이블의 역할을 해주는 기능이 있던데 기업에서도 이런 기능을 사용하나요? 아니면 전부 sql로 처리하게 되나요?
-
미해결스프링 MVC 1편 - 백엔드 웹 개발 핵심 기술
WebFlux에 고통받습니다..
1%에 속하고있었네요...ㅠㅠ 영한님 webflux강의계획은 없으셨다했는데, 언젠가 나왔으면 좋곘네요!
-
미해결스프링 MVC 1편 - 백엔드 웹 개발 핵심 기술
너무기다렸습니다 !!!!
저에게 스프링의 신세계를 알려주신 영한님 사랑합니다..... 열심히 공부하겠습니다 !!!
-
미해결스프링 MVC 1편 - 백엔드 웹 개발 핵심 기술
강의자료 관련
안녕하세요 강사님! 기다리던 MVC강의 잘 보고 있습니다! 다름아니라 올려주신 pdf 파일은 [서블릿] 파트부터 시작하던데 [웹 애플리케이션 이해] 파트 ppt 강의자료도 혹시 함께 올려주실 수 있으신지 궁금합니다!
-
해결됨남박사의 파이썬 기초부터 실전 100% 활용
안녕하세요 네이버 영화 평점 크롤링 부분 질문 입니다.
import requests from bs4 import BeautifulSoup url = " https://movie.naver.com/movie/point/af/list.nhn?&page=1" r = requests.get(url) bs = BeautifulSoup(r.text, "lxml") trs = bs.select("table.list_netizen > tbody > tr ") print(trs) 안녕하세요 영상보면서 차근차근 따라하는중에 잘 안되는 부분이 있어서 질문 드립니다. 영상 제작 시점과 지금은 뭐가 조금 다른지.. 똑같이 진행하여도 값이 다르게 나오네요ㅠ 일단위에 코드로 실행을 하면 아래의 사진과 같이 나옵니다. td가 3개인거같은데 맞을까요 ? (제가 첨부를..잘못해서 그런지 다른페이지로 열어야 잘보이네요 ㅠㅠ 죄송합니다) 그래서 제가 어찌어찌 해서 이렇게 까지는 뽑았는데 10점 중 이제 7점 뭐 2점 이부분을 못하고 있습니다.이리 저리 해밨는데 역시 어렵네요 답이 아니더라도 조언 부탁드립니다. import requests from bs4 import BeautifulSoup url = " https://movie.naver.com/movie/point/af/list.nhn?&page=1" r = requests.get(url) bs = BeautifulSoup(r.text, "lxml") trs = bs.select("table.list_netizen > tbody > tr ") # print(trs) for tr in trs: tds = tr.select("td") if len(tds) != 5: continue number = tds[0].text tatle = tds[1].select("a")[0].text point = tds[1].select("span")[1].text print(number, tatle, point,)
-
해결됨스프링 MVC 1편 - 백엔드 웹 개발 핵심 기술
너무재밌어요
오늘 아침에 알림 뜨자마자 바로 정주행했지요. 스프링 부트랑 jpa만 바로 시작하다보니 스프링MVC 패턴이 낯설게만 느껴졌는데 영한님 강의 정주행하면서 같이 프레임워크 만들어보니 어떠한 원리로 돌아가는지 머릿속에서 구상이 되는게 느껴지니까 너무 좋아요! 항상 좋은 강의 감사합니다~~
-
미해결[리뉴얼] React로 NodeBird SNS 만들기
Redux관련 오류 질문드립니다.
안녕하세요 제로초님. 아래와 같은 오류사항이 있는데 답을찾을 수 없어 질문드립니다. 서버에 접속하면 페이지에 다음과같은 문구가 뜨고 오류 내용은 다음과 같습니다. --------------------------------------------------------- /!\ You are using legacy implementaion. Please update your code: use createWrapper() and wrapper.withRedux(). error - TypeError: _store_configureStore__WEBPACK_IMPORTED_MODULE_4__.default.withRedux is not a function at Module../pages/_app.js (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:163:126) at __webpack_require__ (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:23:31) at Object.0 (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:273:18) at __webpack_require__ (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:23:31) at module.exports../node_modules/antd/dist/antd.css (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:91:18) at Object.<anonymous> (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:94:10) at Module._compile (internal/modules/cjs/loader.js:778:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) at Module.load (internal/modules/cjs/loader.js:653:32) at tryModuleLoad (internal/modules/cjs/loader.js:593:12) TypeError: _store_configureStore__WEBPACK_IMPORTED_MODULE_4__.default.withRedux is not a function at Module../pages/_app.js (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:163:126) at __webpack_require__ (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:23:31) at Object.0 (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:273:18) at __webpack_require__ (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:23:31) at module.exports../node_modules/antd/dist/antd.css (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:91:18) at Object.<anonymous> (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:94:10) at Module._compile (internal/modules/cjs/loader.js:778:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) at Module.load (internal/modules/cjs/loader.js:653:32) at tryModuleLoad (internal/modules/cjs/loader.js:593:12) error - TypeError: _store_configureStore__WEBPACK_IMPORTED_MODULE_4__.default.withRedux is not a function at Module../pages/_app.js (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:163:126) at __webpack_require__ (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:23:31) at Object.0 (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:273:18) at __webpack_require__ (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:23:31) at module.exports../node_modules/antd/dist/antd.css (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:91:18) at Object.<anonymous> (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:94:10) at Module._compile (internal/modules/cjs/loader.js:778:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) at Module.load (internal/modules/cjs/loader.js:653:32) at tryModuleLoad (internal/modules/cjs/loader.js:593:12) TypeError: _store_configureStore__WEBPACK_IMPORTED_MODULE_4__.default.withRedux is not a function at Module../pages/_app.js (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:163:126) at __webpack_require__ (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:23:31) at Object.0 (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:273:18) at __webpack_require__ (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:23:31) at module.exports../node_modules/antd/dist/antd.css (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:91:18) at Object.<anonymous> (C:\workspace\study\inflearn\react-nodebird\front\.next\server\pages\_app.js:94:10) at Module._compile (internal/modules/cjs/loader.js:778:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) at Module.load (internal/modules/cjs/loader.js:653:32) at tryModuleLoad (internal/modules/cjs/loader.js:593:12) -------------------------------------------------------- 아래는 제 git 주소입니다. ----------------------------------------------- https://github.com/812jay/react-nodebird ----------------------------------------------- 감사합니다.
-
미해결따라하며 배우는 노드, 리액트 시리즈 - 기본 강의
express 라이브러리..
import { response } from 'express'; 이거 저절로 생기던데 그냥 계쏙 지우고 하면되나요?
-
미해결스프링 웹 MVC
Event.builder() 관련 mac에서 lombok 문제 있으신 분들
참고한 링크 남깁니다.! https://gigas-blog.tistory.com/151 모두들 즐코하세요!!
-
해결됨스프링 프레임워크 핵심 기술
@Autowired 로 가져오는 Bean은 ?
@Componentpublic class AppRunner implements ApplicationRunner {// @Autowired// ApplicationContext applicationContext; @Autowired MessageSource messageSource; @Override public void run(ApplicationArguments args) throws Exception {// System.out.println(applicationContext.getClass()); System.out.println(messageSource.getClass()); } Autowired 로 가져오는 Bean 이 햇갈려서 질문드립니다. 위 코드에서 @Autowired을 통해서 주입받는 빈은 MessageSource 가 구현된 클래스인걸로 아는데요.. AnnotationConfigServletWebServerApplicationContext , ResourceBundleMessageSource 두개 모두 문서를 찾아보니 MessageSource 를 구현한 클래스입니다~! 그런데 왜 "ResourceBundleMessageSource "가 빈으로 등록되는지 궁금합니다. 혹시 @Primary 같은 우선순위가 적용되서 그러는건가요 ?
-
미해결모의해킹 실무자가 알려주는, 파일 다운로드 취약점 공격 기법과 실무 사례 분석
burp suite 설치는 언제 한건가요??
버프 수이트는 설치 방법이 안나왔던것 같은데 갑자기 설치되어 있어서 당황스럽네요
-
미해결초보를 위한 쿠버네티스 안내서
ingress window접속안됨 문의드려요!
선생님 안녕하세요! 질문이 있습니다~ 윈도우에서는 작동을 해서요~ cluter ip나 nodePort의 경우 minikube service 'NAME'으로 접속이 되었는데요 비슷한 문제 같아요 ㅠ
-
미해결문과생도, 비전공자도, 누구나 배울 수 있는 파이썬(Python)!
엑세스 거부 추가 질문
엑세스 거부가 떠서 관리자 모드로 들어갔더니 이렇게 나옵니다ㅠㅠ
-
미해결홍정모의 따라하며 배우는 C++
5:10 부분 결과값이 강의와 약간 다르게 나오는데 원인이 뭔지 모르겠습니다
main.cpp #include "AutoPtr.h" #include "Resource.h" using namespace std; AutoPtr<Resource> generateResource() { AutoPtr<Resource> res(new Resource(3)); return res; } int main() { { AutoPtr<Resource> main_res; main_res = generateResource(); } return 0; } //////////////////////////// AutoPtr.h #pragma once #include <iostream> template<class T> class AutoPtr { public: T* m_ptr = nullptr; public: AutoPtr(T* ptr = nullptr) :m_ptr(ptr) { std::cout << "AutoPtr default constructor" << std::endl; } ~AutoPtr() { std::cout << "AutoPtr destructor" << std::endl; if (m_ptr != nullptr) delete m_ptr; } T& operator*() const { return *m_ptr; } T* operator->()const { return m_ptr; } bool isNull()const { return m_ptr == nullptr; } AutoPtr(const AutoPtr& a) { std::cout << "AutoPtr copy constructor" << std::endl; //deep copy m_ptr = new T; *m_ptr = *a.m_ptr; } AutoPtr& operator=(const AutoPtr& a) { std::cout << "AutoPtr copy assignement" << std::endl; if (&a == this) return *this; //deep copy m_ptr = new T; *m_ptr = *a.m_ptr; return *this; } ///////////////////////////////////// Resource.h #pragma once #include <iostream> class Resource { //private: public: int* m_data=nullptr; unsigned m_length = 0; public: Resource() { std::cout << "Resource default constructed" << std::endl; } Resource(unsigned length) { std::cout << "Resource length constructed" << std::endl; this->m_data = new int[length]; this->m_length = length; } ~Resource() { std::cout << "Resource destroyed" << std::endl; if (m_data != nullptr) delete[]m_data; } Resource(const Resource& res) { std::cout << "Resource copy constructed" << std::endl; Resource(res.m_length); for (unsigned i = 0; i < m_length; ++i) m_data[i] = res.m_data[i]; } Resource& operator =(Resource& res) { std::cout << "Resource copy assignment" << std::endl; if (&res == this)return *this; if (this->m_data != nullptr)delete[]m_data; m_length = res.m_length; m_data = new int[m_length]; for (unsigned i = 0; i < m_length; ++i) m_data[i] = res.m_data[i]; return *this; } void print() { for (unsigned i = 0; i < m_length; ++i) std::cout << m_data[i] << " "; std::cout << std::endl; } }; 웬만하면 코드 질문은 스스로 해결하려고 했는데 며칠 고민하면서 디버거로 찍어봐도 중간중간에 뜬금없이 생성자가 호출되거나 다시 복사가 되는 원인을 못찾겠습니다
-
미해결[C#과 유니티로 만드는 MMORPG 게임 개발 시리즈] Part1: C# 기초 프로그래밍 입문
hd 화질로 올려주실수는 없는건가여?
강의 가다보니까 갑자기 화질이 낮아지는데 이것좀 어떻게 해주실수 없나영?
-
미해결따라하며 배우는 노드, 리액트 시리즈 - 쇼핑몰 사이트 만들기[전체 리뉴얼]
success가 안뜨네요 ㅠㅠ 도와주세요
안녕하세요 이제 거의 다 만들었는데 결제 이후에 success가 안뜨고 이렇게만 뜨네요 제품은 사라지는데요 ㅠㅠ 에러 사항으로 보면 이렇게 뜨는데요 user.js에 들어가서 확인해본 결과 let products = []; doc.product.forEach((item) => { products.push({ id: item.id, quantity: item.quantity }); }); 이 부분 입니다. 선생님꺼랑 비교해본 결과 같게 했는데 뭐가 문제일까요ㅠㅠ