throw new Error
미해결
Node.js로 웹 크롤링하기
개별적인 try...catch보다 throw new Error(...)를 쓰면 좋지 않나요?
- javascript
- puppeteer
- nodejs
- 웹-크롤링
173만명의 커뮤니티!! 함께 토론해봐요.
미해결
Node.js로 웹 크롤링하기
개별적인 try...catch보다 throw new Error(...)를 쓰면 좋지 않나요?
해결됨
[C#과 유니티로 만드는 MMORPG 게임 개발 시리즈] Part4: 게임 서버
안녕하세요 TIckCount를 사용하고 있는데 아래 문서를 보니 TickCount는 25일이면 int의 한계치에 도달하는것 같습니다. https://docs.microsoft.com/ko-kr/dotnet/api/system.environment.tickcount?view=netcore-3.1 그러면 해당 코드로 동작하는 서버는 25일이 되기 전에 재부팅을 해주어야 하는걸까요?.? 만약 더 오래 서버를 가동시키고 싶다면 어떻게 수정하면 될지 (ex. TickCount를 안쓰는 방식이 있는지) 궁금합니다!
미해결
Vue.js 끝장내기 - 실무에 필요한 모든 것
Barshrc 복붙하라면서서왜 강의는 다른게 더들어잇나요. Nvm 실행해도 없다고 나오네요
미해결
[개정판] 딥러닝 컴퓨터 비전 완벽 가이드
conda가 안 떠서 다시 처음부터 강의를 따라하려고 하는데 그래도 괜찮은가요??
미해결
포토샵 기본기 하루 5분, 3주 만에 끝내기
cmd 혹시 어디있는지 알수있을까요
미해결
Flutter 입문 - 안드로이드, iOS 개발을 한 번에 (with Firebase)
안녕하세요 강의 내용 잘 따라 하다가 구글 인증 수업 이후 부터 아래 에러가 발생합니다. Build file '/Users/Mac/AndroidStudioProjects/FlutterProject/instagram_clon/android/build.gradle' line: 35 여기는 apply plugin : 'com.android.application' 이 코드가 있습니다. 이 코드를 주석 처리하면 컴파일은 되는데, 구글 로그인 화면에서 클릭해서 처리가 않됩니다. 그리고 아래와 같은 문구 많이 생깁니다 E/MethodChannel#plugins.flutter.io/firebase_auth(11148): Failed to handle method call ..... E/flutter (11148): #27 _dispatchPointerDataPacket (dart:ui/hooks.dart:184:5) ...... 그리고 올려놓으신 전체 소스에서는 해당 코드가 않보이네요... 아래는 전체 컴파일 에러 메시지입니다. ------------------------------------------ Launching lib/main.dart on AOSP on IA Emulator in debug mode... Running Gradle task 'assembleDebug'... FAILURE: Build failed with an exception. * Where: Build file '/Users/Mac/AndroidStudioProjects/FlutterProject/instagram_clon/android/build.gradle' line: 35 * What went wrong: A problem occurred evaluating root project 'android'. > Failed to apply plugin [class 'org.gradle.language.base.plugins.LifecycleBasePlugin'] > Cannot add task 'clean' as a task with that name already exists. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 814ms Exception: Gradle task assembleDebug failed with exit code 1
미해결
[유니티 3D] 실전! 생존게임 만들기 - Advanced
serializefield랑 그 밖에 Rigidbody 등 강사님이 코드 치실 때 초록색으로 나오는 부분들 다 하얀 글자로 나옵니다. 플레이해보면 잘 움직이긴 하는데..유니티 버전이 달라서 그런 건가요? 비주얼 스튜디오도 지우고 다시 깔아봤는데 그대로에요ㅠ
미해결
React로 NodeBird SNS 만들기
여기서의 action은 나중에 서버에서 보낼 데이터들이죠??
미해결
스프링 웹 MVC
따로 무엇을 적용해야하나요?? 강의에서는 딱히 그런거 없었는데 왜 안되는지 모르겠어요ㅠㅠ 인터넷 서칭해 보니까 dependency hibernate를 추가하라고 하는데 쌤은 추가없이 사용하셔서 여쭤봅니다!! 참고로 spring framework boot는 2.3.0 릴리즈 사용하고 있습니다. 혹시 몰라서 pom.xml 내용 올립니다. <? xml version ="1.0" encoding ="UTF-8" ?> < project xmlns ="http://maven.apache.org/POM/4.0.0" xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation ="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" > < modelVersion >4.0.0</ modelVersion > < parent > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-starter-parent</ artifactId > < version >2.3.0.RELEASE</ version > < relativePath /> <!-- lookup parent from repository --> </ parent > < groupId >me.whiteship</ groupId > < artifactId >demo-web-mvc</ artifactId > < version >0.0.1-SNAPSHOT</ version > < name >demo-web-mvc</ name > < description >Demo project for Spring Boot</ description > < properties > < java.version >11</ java.version > </ properties > < dependencies > < dependency > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-starter-thymeleaf</ artifactId > </ dependency > < dependency > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-starter-web</ artifactId > </ dependency > < dependency > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-starter-test</ artifactId > < scope >test</ scope > < exclusions > < exclusion > < groupId >org.junit.vintage</ groupId > < artifactId >junit-vintage-engine</ artifactId > </ exclusion > </ exclusions > </ dependency > </ dependencies > < build > < plugins > < plugin > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-maven-plugin</ artifactId > </ plugin > </ plugins > </ build > </ project >
미해결
누구나 할 수 있다! 이모티콘 만들기
파일 오픈하면 새로운 창에 밑그림이 뜨는데요
미해결
실전 파이썬 게임 만들기 (Pygame)
이미지가 정확히 중간에 안들어 가는데..... 어떻게 하죠?
미해결
it 취업을 위한 알고리즘 문제풀이 입문 (with C/C++) : 코딩테스트 대비
앞을 기준으로 한명씩 체크하면 분노유발자가 더 많아지는데 그리할수도 있는거죠? 어찌되었건 모든사람 기준으로 앞이 크면 안보이니까요ㅎ 1번 기준잡고 2,3,4,5...다음 2번 기준잡고 3,4,5,6.. 다음 3번 기준잡고 4,5,6,7...
미해결
Node.js 교과서 - 기본부터 프로젝트 실습까지
// store: new RedisStore({ // host: process.env.REDIS_HOST, // port: process.env.REDIS_PORT, // pass: process.env.REDIS_PASSWORD, // logErrors: true, // }), 위부분을 포함시켜 실행시키면 서버가 응답하지 않습니다 어떤부분을 실수했을까요 ?
미해결
웰컴 투 태블로 월드
구글 애널리틱스 데이터 연결을 할때는 최대 7개의 자원과 10개의 측정값을 선택하라고 나오는데, 한정된 데이터만 연결이 가능한건가요?
해결됨
진짜 현업에서 쓰이는 직장인의 실무 엑셀 - 데이터 가공부터 분석까지
안녕하세요 8강 필터링 강의에서 파워쿼리 내 필터링 조건이 "금 and 남 and >=2018-11-15 or 통화건수 >= 15" 라면 파워쿼리 후 결과값에 금요일을 제외한 모든 요일, 여, 11월 15일 이전 데이터가 안보여야하지 않나요? 강의에서도, 완성 파일에서도, 직접 해봤을때도 이러한 결과값이 나오지 않아 질문드립니다.
미해결
R로 하는 웹 크롤링 - 입문편
for문 돌릴 떄 1. content라는 변수를 NULL로 선언하는 것과 c()로 하는 것의 차이가 있나요? 2. for문 중에서 content<-c(content, b6) 대신 rbind(content, b6)로 하면 content앞에 b6라는 문자가 다 붙는 오류가 나는데 왜 그런건가요?
미해결
대세는 쿠버네티스 (초급~중급편)
안녕하세요 강의 1:10 정도부터 master node에 xshell6를 통해 접속하시는 방법이 나오는데 master node에 접속하기 위해서 어떤ip와 어떤 port를 입력하셨는지 궁금합니다.
미해결
쉽고 빠르게 끝내는 GO언어 프로그래밍 핵심 기초 입문 과정
해당 파일안에 anaconda라는 경로는 제가 따로 설치한게 없어서 어떤식으로 PATH를 지정해줘야하는지 설명이 좀 필요해 보입니다.
미해결
대세는 쿠버네티스 (초급~중급편)
안녕하세요. 태민님 강의자료를 출력해서 보고 싶은데 강의와 강의자료실이 조금 내용이 다르네요. 제가 못찾은걸까요? 아니면 캡쳐해서 사용해야 할까요?
해결됨
남박사의 파이썬 기초부터 실전 100% 활용
argparse 모듈에 대해 질문드립니다. 사용 초기에 아래 코드를 사용하시던데 parse랑 args 변수에 담은 것들이 무엇을 의미하는지 알려주실수있으신가요? 또한 nargs = "+"는 입력받은 모든값들을 문자열 리스트로 만드는 코드인가요? parse = argparse.ArgumentParser() parse.add_argument( "-f" , type = str ) parse.add_argument( "-e" , nargs = "+" ) args = parse.parse_args()