묻고 답해요
167만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결리눅스 시스템 프로그래밍 - 이론과 실습
inotify 객체에 등록된 watch descriptor 해제 관련 질문
inotify 객체에 등록된 watch descriptor에 대한 자원 정리를 할 때는 close 호출이 아니라 inotify_rm_watch(fd, wd1), inotify_rm_watch(fd, wd2) 와 같은 식으로 해야 하지 않나요?
-
미해결리눅스 시스템 프로그래밍 - 이론과 실습
select API 실습 코드 질문
FD_ISSET(fd, &fds), FD_ISSET(STDIN_FILENO, &fds)를 같은 조건-분기문으로 묶는 것이 아니라 분리해야 되는 것 아닌가요?select API의 return 값인 readable한 fd가 여러 개일 수도 있으니까 모두 검증해야 되지 않나요?
-
미해결실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발
오탈자 - @Transactional
[질문 템플릿]1. 강의 내용과 관련된 질문인가요? (예)2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? (예)3. 질문 잘하기 메뉴얼을 읽어보셨나요? (예)[질문 내용]안녕하세요. 영한님.프로젝트 환경설정 - JPA와 DB 설정, 동작확인 오탈자 제보합니다.강의에서는 Spring을 사용하고 있기 때문에Spring의 org.springframework.transaction.annotation.Transactional을 사용하셨지만수업자료는 jakarta.transaction.Transactional을 사용하고 있습니다.[1. 프로젝트 환경설정 | JPA와 DB 설정, 동작확인]import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.annotation.Rollback; import org.springframework.transaction.annotation.Transactional;import문 수정 내용입니다. 감사합니다.
-
미해결Certified Kubernetes Administrator (CKA) – Practical Exam Guide
가상머신 가져오는법?
강사님 지금 Oracle VirtualBox를 다운받았습니다. MobaXterm에서 알려주신 IP로 진입 시, Connection timed out이 떠서 확인해보니 강사님이 갖고계신 cka_master_node_17~에 해당하는 가상머신이 없어서 에러가나는거같은데, 이 가상머신은 어디서 다운받는지 알수있을까요? (+혹시 몰라 카페랑, ai한테 물어보니, .ova파일이 필요하다 하는데 어떤건지 잘모르겠습니다 ㅠㅠ)
-
미해결[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
결정트리에서 적절한 깊이 선택 후 시각화 과정에서 학습 데이터만 사용하는 이유
안녕하세요, 강사님.수업에서 다루지 않은 내용이지만 질문할 곳이 없어 이렇게 글을 남깁니다. 저는 혼자서 코드 필사를 하며 머신러닝을 공부하고 있는데, 일부 코드가 이해가 잘 되지 않아 문의드립니다.제가 질문하고 싶은 코드의 흐름은 다음과 같습니다.트리 깊이에 따라 모델 성능 비교적절한 트리 깊이 선택선택한 트리를 시각화 코드 필사를 하면서 트리 깊이를 선택하는 과정은 이해했지만, 트리 깊이를 선택한 후에 트리를 시각화하기 전에 학습 데이터만 사용하여 모델을 fit하는 것이 의문이 들었습니다.model = DecisionTreeClassifier(max_depth=5, criterion='entropy')model.fit(X.iloc[train_idx], Y.iloc[train_idx]) 개인적으로는 타겟값 원인 분석을 위해 학습 데이터와 검증 데이터를 함께 사용하는 것이 더 나을 것 같은데, 이 부분이 맞는지 확신이 서지 않아 문의드립니다.혹시 이에 대해 설명해주실 수 있을까요? 아래는 질문 관련 코드입니다.# Parameter Searching ==> Depth 2 ~ 10for i in range(2,11,1): print(">>>> Depth {}".format(i)) model = DecisionTreeClassifier(max_depth=i, criterion='entropy') model.fit(X.iloc[train_idx], Y.iloc[train_idx]) # Train Acc y_pre_train = model.predict(X.iloc[train_idx]) cm_train = confusion_matrix(Y.iloc[train_idx], y_pre_train) print("Train Confusion Matrix") print(cm_train) print("Train Acc : {}".format((cm_train[0,0] + cm_train[1,1])/cm_train.sum())) # Test Acc y_pre_test = model.predict(X.iloc[valid_idx]) cm_test = confusion_matrix(Y.iloc[valid_idx], y_pre_test) print("Valid Confusion Matrix") print(cm_test) print("TesT Acc : {}".format((cm_test[0,0] + cm_test[1,1])/cm_test.sum())) print("-----------------------------------------------------------------------") print("-----------------------------------------------------------------------")# Depth가 깊어질 수록 정확도는 높게 나오지만 해석력에 대한 가독성을 위해 Depth 5를 선택함 model = DecisionTreeClassifier(max_depth=5, criterion='entropy')model.fit(X.iloc[train_idx], Y.iloc[train_idx]) from sklearn import tree# Creating the tree plot# Creating the tree plot (left = True, Right = False)tree.plot_tree(model, filled=True, feature_names=X.columns, class_names = ['BAD', 'GOOD'])plt.rcParams['figure.figsize'] = [40,10]
-
해결됨바닥부터 만드는 언리얼 에이전트 (Liu)
인증 코드 복사 넣기시 오류
강의를 따라가고 있는데 복사 붙여넣기를 하면 위의 경로중 일부분에 인증코드가 들어가 정상적으로 진행이 안되는 상태입니다. 혹시 이런 경우에는 어떻게 하는건지 알 수 있을까요?
-
미해결클로드 코드 완벽 마스터: AI 개발 워크플로우 기초부터 실전까지
진행하던 모든 프롬프트 확인 및 내보내기
안녕하세요!다름이 아니라 과제로 인해서 AI를 사용 후 사용한 모든 프롬프트를 제출해야 하는데 claude code에서 지원하는 기능이 있을까요?따로 파일에 저장한다거나 확장프로그램이 있는지 궁금합니다!
-
미해결
How to Import MBOX to Google Workspace?
Are you having difficulties importing MBOX file to Google Workspace? Well, if you're experiencing a similar problem, here you go. We can import mail data from MBOX format-the default of popular email clients like Thunderbird-to Google Workspace for easy access and collaboration. Just go through the steps you need to take to make the process smooth and easy.An MBOX file basically consists of a single text file format used to store email messages. This format is often used by many email clients, starting from Thunderbird and up to Apple Mail, Eudora, etc. MBOX files are simply just a concatenated collection of multiple email messages; they are separated by certain delimiters.Google Workspace is a suite developed by Google that provides several different tools on communication and collaboration in an application supported from a cloud. Earlier, it was known as G Suite. Some popular applications installed in it include Gmail, Google Drive, Google Docs, Google Sheets, Google Slides, and Google Meet. Why Transfer MBOX to Google Workspace?Several advantages are associated when transferring MBOX files to Google Workspace:Accessibility: Using Google Workspace enables you to remotely access your email from any device connected with an internet connection.Collaboration: Sharing mails and collaborating with the team is easy in cloud computing.Storage: Google comes with generous storage options so that all important data is held in emails without losing anything running out of space. From the above section, you have understood the reasons behind transferring MBOX data to Google Workspace. Now, it's time to move over a manual solution to complete the conversion.#1. Free Method to Import MBOX to Google WorkspaceStart by downloading Thunderbird free email client which installs on your computer.After installation, open the Thunderbird application.On the menu bar click on "Tools" then tap on "Settings" which appears from the dropdown list.On the Settings window click on "Account settings" and then on "Account Actions."You can add your Google Workspace account now by clicking on "Add Account."Configuring your Google Workspace account with the IMAP settings supplied by Google will make Thunderbird sync your Google account.You need to install the "ImportExportTools" add-on in Thunderbird for importing MBOX files. It makes it very easy to manage MBOX files.ImportExportTools will allow adding your MBOX files into local folders of Thunderbird.Once the import is done, drag and drop the MBOX files from your local folder to the configured Google Workspace account in Thunderbird.After transferring the files, it will automatically synchronize with the Google Workspace account.Once done, login in your Google Workspace account to access your imported MBOX files. Upon completion of this procedure, you can import MBOX files into Google Workspace, thereby making emailing much more efficient and accessible.Drawbacks of Free ApproachComplex Setup: You will need a specific email client, probably something like Thunderbird or Apple Mail, to serve as a kind of a bridge between your MBOX files and Google Workspace. This will be pretty technical for those who are not.One-by-One Import: It imports one MBOX file at a time. So, if there are additional mailboxes to import, it can be quite a long and arduous task.Technical Knowledge: You'll have to configure the account of Google Workspace with an email client, follow some additional configuration tool procedures, and then turn on IMAP. Deep technical knowledge is necessary for this.Uncertain Outcome: Besides the proper settings, there is still a chance the manual import would not work absolutely. Some errors or incomplete imports may be encountered. #2. Pro Solution to Batch Transfer MBOX to Google WorkspaceConsider using BitRecover MBOX Converter Wizard. This tool is specially designed for importing emails from MBOX files into the Google Workspace. Also, this tool is capable of uploading multiple MBOX files at one time, which is very quick and efficient. The transfer will ensure that all email elements and attributes such as sender information, attachments, and so on are not lost. This will ensure you do not lose valuable information while you are moving your emails into Google Workspace.Why is Pro Solution Recommended Over Manual Method?This application enables importing of bulk MBOX files without any errors. The application ensures your email data stays intact while transferring to Google Workspace by keeping necessary elements intact during email transfer from MBOX format. This utility not only converts MBOX mailboxes to Google Workspace but also helps you migrate MBOX mailboxes to other cloud services. The tool allows you to export MBOX file to PST, PDF, EML and many more.The tool features an extremely simple and handy interface. From the point of view of very minimum knowledge of technology, one may work upon the tool without asking any person for help. Final WordsIn a nutshell, transferring MBOX files to Google Workspace can really make a big difference to your email management. With such detailed steps, it is very easy to import one's emails for easier access and collaboration. While there are always manual ways to do it, the dedicated tool, like MBOX Converter, simplifies the process making sure that all your email data is maintained appropriately.
-
미해결클로드 코드 완벽 마스터: AI 개발 워크플로우 기초부터 실전까지
[Git 설치] homebrew 설치 후 password 입력 안됌
짐코딩님 안녕하세요 답변 주신대로 mac 비밀번호를 기입하려고했는데.. 타이핑 자체가 안돼네요 저 화면에서는 혹시 어떻게 해결하시는지 아실까요?spacing 버튼만 적용이 되고 문자나 숫자 자체가 기입이 안됩니다..
-
미해결
How to Import MBOX to Google Workspace?
Are you having difficulties importing MBOX file to Google Workspace? Well, if you're experiencing a similar problem, here you go. We can import mail data from MBOX format-the default of popular email clients like Thunderbird-to Google Workspace for easy access and collaboration. Just go through the steps you need to take to make the process smooth and easy.An MBOX file basically consists of a single text file format used to store email messages. This format is often used by many email clients, starting from Thunderbird and up to Apple Mail, Eudora, etc. MBOX files are simply just a concatenated collection of multiple email messages; they are separated by certain delimiters. This structure allows for easy storage and retrieval of emails. MBOX file contains nearly all the elements of an email: the sending address, the recipient's address, a subject line, a date, and actually-the-body of the message.Google Workspace is a suite developed by Google that provides several different tools on communication and collaboration in an application supported from a cloud. Earlier, it was known as G Suite. Some popular applications installed in it include Gmail, Google Drive, Google Docs, Google Sheets, Google Slides, and Google Meet. With Google Workspace, one can create, share, and collaborate on a real-time document from anywhere with access to the internet. It allows perfect integration with other applications so that any team can easily collaborate with it.Why Transfer MBOX to Google Workspace?Several advantages are associated when transferring MBOX files to Google Workspace:Accessibility: Using Google Workspace enables you to remotely access your email from any device connected with an internet connection.Collaboration: Sharing mails and collaborating with the team is easy in cloud computing.Storage: Google comes with generous storage options so that all important data is held in emails without losing anything running out of space.From the above section, you have understood the reasons behind transferring MBOX data to Google Workspace. Now, it's time to move over a manual solution to complete the conversion.#1. Free Method to Import MBOX to Google WorkspaceStart by downloading Thunderbird free email client which installs on your computer.After installation, open the Thunderbird application.On the menu bar click on "Tools" then tap on "Settings" which appears from the dropdown list.On the Settings window click on "Account settings" and then on "Account Actions."You can add your Google Workspace account now by clicking on "Add Account."Configuring your Google Workspace account with the IMAP settings supplied by Google will make Thunderbird sync your Google account.You need to install the "ImportExportTools" add-on in Thunderbird for importing MBOX files. It makes it very easy to manage MBOX files.ImportExportTools will allow adding your MBOX files into local folders of Thunderbird.Once the import is done, drag and drop the MBOX files from your local folder to the configured Google Workspace account in Thunderbird.After transferring the files, it will automatically synchronize with the Google Workspace account.Once done, login in your Google Workspace account to access your imported MBOX files.Upon completion of this procedure, you can import MBOX files into Google Workspace, thereby making emailing much more efficient and accessible.Drawbacks of Free ApproachComplex Setup: You will need a specific email client, probably something like Thunderbird or Apple Mail, to serve as a kind of a bridge between your MBOX files and Google Workspace. This will be pretty technical for those who are not.One-by-One Import: It imports one MBOX file at a time. So, if there are additional mailboxes to import, it can be quite a long and arduous task.Technical Knowledge: You'll have to configure the account of Google Workspace with an email client, follow some additional configuration tool procedures, and then turn on IMAP. Deep technical knowledge is necessary for this.Uncertain Outcome: Besides the proper settings, there is still a chance the manual import would not work absolutely. Some errors or incomplete imports may be encountered. #2. Pro Solution to Batch Transfer MBOX to Google WorkspaceConsider using BitRecover MBOX Converter Wizard. This tool is specially designed for importing emails from MBOX files into the Google Workspace. Also this tool is capable of uploading multiple MBOX files at one time, which is very quick and efficient. The transfer will ensure that all email elements and attributes such as sender information, attachments, and so on are not lost. This will ensure you do not lose valuable information while you are moving your emails into Google Workspace.Software Steps to Import MBOX to Google WorkspaceDownload the MBOX to Google Workspace application on your Windows or Mac device. Follow the installation prompts for opening the software.After installing the software on your computer, click on "Select Files" or "Select Folders". Add a list of selected MBOX files to import into Google Workspace accounts.Simply tick the boxes beside folders you want to import- this allows you to choose only the MBOX files that you want transferred.Click on the subsequent window as the saving option: Gmail- this allows you to allow the tool to import your MBOX files directly into the Google Workspace account.Enter your Gmail email address and then click on the "Enable the Using Google oAuth Authentication" option on the page.Carefully key in your password for the account and then hit the Continue button. This begins the importing process of MBOX files into Google Workspace en masse.Once your import has successfully finished, log in to your Google Workspace account where your newly imported mailboxes will be waiting for you. By following these steps, you can effortlessly import MBOX to Google Workspace with all metadata and integrity.
-
미해결클로드 코드 완벽 마스터: AI 개발 워크플로우 기초부터 실전까지
windows 에서 커서사용시 텍스트나 이미지 복사 붙여넣기
커서 사용 중에 한 가지 여쭤보고 싶습니다.Windows 환경에서 Cursor 사용 시 텍스트나 이미지 복사/붙여넣기(Ctrl+C / Ctrl+V)를 할 때 상당한 딜레이가 발생하고 있습니다.반면 VSCode에서는 동일한 작업이 실시간으로 정상 작동하고 있어서, Cursor에서만 발생하는 이슈로 보입니다.혹시 이와 유사한 문제를 경험하신 적이 있으신지, 또는 원인이나 해결 방법에 대해 아시는 부분이 있으실까요?
-
미해결클로드 코드 완벽 마스터: AI 개발 워크플로우 기초부터 실전까지
🔥[MISSION 6] 나만의 출력 스타일 만들기🔥 질문
/output-style learning을 진행했을 때,클로드가 TODO(human) 마커를 남기며 직접 구현하도록 유도하는 것을 확인합니다.explanatory보다는 자세한 설명이 나오지만, TODO(human) 마커는 따로 생성되지 않았어요. 그리고 클로드가 코드 작성 중간에 "인사이트"를 제공하는 것을 확인합니다. 작성 중간에는 인사트를 제공하지 않고, 다 작성해놓고 인사이트를 제공했어요.
-
해결됨10,000장의 이력서를 본 기술이사의 이력서 가이드
직무전환의 경우, 다른 직무 경험도 기입하는게 의미 있을까요?
웹 서비스 도메인에서 영업/기획 경력이(각 n년) 있는데, 이것도 경력에 넣는것이 의미가 있을지 궁금합니다.
-
해결됨(2026 최신!) 일주일만에 합격하는 정보처리기사 실기
pdf 파일 에러 제보
지금 7강 조건문 듣고 있는데 파일에 문제가 있는지 수업자료를 열면 pdf 프로그램이 cpufmf 80% 가까이 잡아먹으면서 실행이 되지 않습니다. 파일 크기가 2mb 밖에 안되는데도 저렇게 잡아먹는거 보면 파일에 문제가 있는거 같아요
-
해결됨바닥부터 만드는 언리얼 에이전트 (Liu)
안녕하세요 언리얼엔진 버전 관련 질문합니다.
현재 강의에서는 언리얼 최신버전인 5.7.4로 진행하셨는데 혹시 5.5버전으로 개발을 진행해도 될지 여쭙니다.
-
미해결제로부터 Kotlin으로 Claude Code 만들기
타입스크립트
타입스크립트도 듣고 싶습니다.혹시 이전 할인 가격으로 구매할 수 있을까요? ㅠ
-
미해결클로드 코드 완벽 마스터: AI 개발 워크플로우 기초부터 실전까지
프로젝트를 플랜 모드 구상시 모델
프로젝트를 플랜 모드로 구상할 때, 초안 작성은 Sonnet으로 하고 이후 수정·보완은 Haiku 모델로 진행하는 방식이 효율적일까요?
-
미해결클로드 코드 완벽 마스터: AI 개발 워크플로우 기초부터 실전까지
강의중에 사용하고 계시는 화면에 도형이나 그림을 그리거나 마우스 포인트를 강조하는 건 언떤 툴을 사용하고계신가요?
강의중에 사용하고 계시는 화면에 도형이나 그림을 그리거나 마우스 포인트를 강조하는 건 언떤 툴을 사용하고계신가요?
-
미해결15일간의 빅데이터 파일럿 프로젝트
주제영역3 데이타 조회 문의
주제영역3 데이타 조회 문의 입니다. 저는 쿼리문장을 날리면건수가 10개만 조회가됩니다.managed_smartcar_drive_info 테이블를 전체데이타 건수는43000건 정도나옵니다.주제영역4는 실행하면 33건이 나오고있습니다.질문은 주제영역3는 결과가 94건인데..저는 10건이라서 제가 어떤 부분을 잘못한건지?아니면 저사향이고 랜덤으로 자바파일 로그 데이타 생성이므로 문제가 없는 건지 질문드립니다.또한 , 10건이여도 7장이후 분석에서 문제가 없는지 질문합니다.
-
해결됨10,000장의 이력서를 본 기술이사의 이력서 가이드
최근 업무에서 어필할 내용이 부족할 경우.
안녕하세요 저는 한 3년정도 SI 에서 근무한 이력이 있는데, 최근 이력의 경우 회사의 사정으로 인해 중간중간 투입되면서 대략 1~2달 간격으로 여러 프로젝트를 퐁당퐁당 진행한 케이스입니다.( ex. 25.08~25.10 , 25.11~25.12 ) 그래서 불가피하게 축약된 형식의 내용으로 업무와 역할을 어필 할 수 밖에 없는 상황인데, 이러한 경우에는 어떠한 전략으로 가야 할지 고민이라 질문 남깁니다.