묻고 답해요
158만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
해결됨Confluence를 활용해서 효과적으로 지식 관리와 프로젝트 협업하기
Cloud / SEVER 차이
강의가 Cloud / SEVER 로 나누어져 있는데 두개의 차이점이 무엇인가요?
-
미해결
스프링 JPA 다중 연관관계 조회시, n+1 문제 해결 방법
스프링 JPA 관련하여 질문드립니다!JPA를 통해 조회 쿼리를 구현중인데, 일대다 관계에서는 컬렉션 패치조인을 사용하여 N+1 문제를 방지한다고 알고 있습니다.다만, 1:N 관계가 중첩으로 있을 경우,예를 들어서 다음과 같은 상황입니다.구역 (1:N) 테이블 (1:N) 주문 항목 (1:1) 옵션 그룹 (1:N) 옵션다음과 같이 1:N 관계가 3중, 4중으로 있을 경우, 다중 패치조인은 불가한걸로 알고 있는데, JPA 로는 해결하지 못하는 상황일까요?? 조언 부탁드립니다. 아래와 같은 형식으로 API 결과를 반환하려 합니다.
-
미해결10주완성 C++ 코딩테스트 | 알고리즘 코딩테스트
칠무해 이렇게 하면 왜 틀릴까요?
ㅠㅠhttp://boj.kr/d927a15d72e141c2968712791d96deb9
-
해결됨디자인 시스템 with 피그마
피그마 토큰 등록시 텍스트 사이즈
안녕하세요! 강의를 보면서 토큰 등록을 적용해보고 있습니다. 궁금한것이 생겨 질문드려요. font size 등록할 때, {base} * {sizing} 처럼 가변으로 등록하지 않고 14px, 16px, 20px.. 처럼 각각 등록을 해도 괜찮은것인지 궁금합니다. 설명주신 부분은 추후 텍스트 사이즈 변경시 효율적으로 처리하기 위해 base 값과 sizing 의 값을 지정하고, 계산식을 통해 사용하도록 설명주신것으로 이해 하였는데요.만약 텍스트 변동이 잘 일어나지 않는다고 가정한다면, px 고정값으로 각각 등록해도 무리가 없을것일까요? 감사합니다!
-
미해결it 취업을 위한 알고리즘 문제풀이 입문 (with C/C++) : 코딩테스트 대비
에라토스테네스의 체를 활용한 isPrime 함수
선생님 소수와 관련된 문제라 에라토스테네스의 체 알고리즘을 이용하여 배열에 미리 소수에 대한 여부를 파악하여 저장해두었습니다. isPrime 함수는 단순히 해당 배열의 값이 true인지 false인지 리턴을 하는것이라, 함수 자체의 의미가 없어지는거 같은 느낌이 들어서요. 실제 코딩테스트에도 이와같이 작성해도 문제가 없을까요? 아니면 함수의 의미에 맞게 함수 내부적으로 연산을 수행해야 할까요? #include <iostream> bool isPrime(int x); int reverse(int x); // 에라토스테네스의 체 알고리즘 static bool primes[100001]; int main() { int N, numInput; scanf_s("%d", &N); // 모두 true로 초기화 for (int i = 0; i < 100001; ++i) primes[i] = 1; // 0과 1은 소수가 아님 primes[0] = primes[1] = false; // 에라토스테네스의 체 알고리즘을 통해 모든 소수 판별 for (int i = 2; i <= std::sqrt(100001); ++i) { if (!primes[i]) continue; primes[i] = true; for (int j = i * 2; j < 100001; j += i) primes[j] = false; } // 나머지 계산 for (int i = 0; i < N; ++i) { scanf_s("%d", &numInput); int reverseNum = reverse(numInput); if (isPrime(reverseNum)) printf("%d ", reverseNum); } } bool isPrime(int x) { return primes[x]; } int reverse(int x) { int num = 0; while (x > 0) { num = num * 10 + x % 10; x /= 10; } return num; }
-
미해결스프링 시큐리티 OAuth2
임시 코드 요청시 Redirect에 대해 질문 드립니다
client registration의 redirect uri는 인가 서버로부터 임시코드를 발급받고, redirect uri로 임시 코드를 리다이렉트 시키는데,강사님께서redirect uri를 http://localhost:8081/client 로 설정하였고,ClientController의 매핑주소도 위와 같은 주소로 설정하였습니다. 여기서 궁금한점이 있습니다. 임시 코드를 발급한 시점에 저 리다이렉트 주소로 콜백하게 되는데, 이 시점에 clientcontroller에 저 매핑주소가 호출되어야 할텐데왜 token 발급시에 컨트롤러가 호출되는지그리고 redirect uri가 token 발급시 콜백 주소도 해당되는건가요?? 엑세스 토큰 발급후에도 http://localhost:8081/client여기로 호출되어서 의문이 듭니다.
-
해결됨홍정모의 따라하며 배우는 C언어
안녕하세요 강의를 완강하면
이 강의를 완강하면txt파일의 있는 숫자들을 읽어서 moving average?를 구하는 식을 혼자서 짤수있을까요?대학교 c언어 과제로 나왓는데 따라가기가 힘들어서 혹시 이 강의를 전체 수강하면 될지 궁금해서 질문드립니다
-
미해결홍정모의 따라하며 배우는 C언어
4.10 scanf() 함수의 사용법
18:44 질문입니다출력시 2 나오는 이유가 몇개의 값을 입력 받았는가-2개라서 2인가요? 그렇다면 왜 '몇개의 값을 입력 받았는가'로 출력해야 되나요?
-
미해결윤재성의 만들면서 배우는 Spring MVC 5
8강 에서 servlet-context.xml에 설정에서 에라
servelt-context.xml에서 <annotation-driven/>를 입력하면 그림과 같은 에라가 나오는데 어떻게 해야 하나요 ?
-
미해결2023년 개인정보보호 법령 제개정 내용 강의
강의 자료 공유
안녕하세요.좋은 강의 감사합니다. 강의 소개에 보면 강의자료 교안을 보내주신다고 했는데아직 못 받아서 이렇게 문의 드립니다.확인 부탁드립니다. 감사합니다.
-
미해결모의해킹 실무자가 알려주는, SQL Injection 공격 기법과 시큐어 코딩 : PART 1
mssql 게시판
mysql, oracle 다 정상인데 mssql만 이러네요 계정 비번 전부 다 확인했는데도 이러네요 ..
-
미해결대세는 쿠버네티스 (Helm편)
mychart 생성시 configmap 을 생성하고 배포시 발생하는 에러문의
cm-object.yaml 을 생헝한 후 helm install mychart . -n default --set persistence.enabled=false 명령을 실행하면 Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: error validating "": error validating data: apiVersion not set 라는 에러가 발생합니다. 확인 부탁드립니다.
-
미해결Flutter 초입문 왕초보편
30강 이미지 삽입 문의드립니다.
이미지를 삽입하는 코드를 작성 중인데 계속해서 아래와 같은 오류가 발생합니다. 여러 이미지주소를 넣어봐도 동일하게 나오네요..확인 부탁드립니다.!
-
미해결장고 설계철학으로 시작하는 파이썬 장고 입문
장고 모델 폼을 사용했는데 웹페이지에 표시되지 않습니다.
안녕하세요? 강의에 대한 질문이 아니라서 커뮤니티를 이용해도 될지 모르겠지만, 검색을 해봐도 마땅한 해결방법을 찾지 못해서 이렇게 질문을 드립니다.해당 강의를 완강하고 직접 사이트를 제작하며 실습을 진행하고 있는데요. 섹션 4 3강 실습 - django-bootstrap 5 적용 및 post_new 뷰 구현에서 배웠던 모델 폼을 사용하였는데 웹페이지에 데이터를 입력할 수 있는 입력칸이 표시되지 않습니다. 이런 경우에는 어떻게 해결해야 하나요?우선, 다음과 같이 모델 폼을 정의하였습니다.# models.py# forms.py그런 다음, update.html 파일을 작성하였습니다.마지막으로, views.py 파일에 update.html을 불러올 함수 update()와 입력된 데이터를 저장할 함수 create()를 정의하였습니다.
-
해결됨손에 익는 Next.js - 공식 문서 훑어보기
vscode 기능 궁금합니다!
안녕하세요 선생님! 넥스트 13 앱 라우터 잘 이해가 안되었는데 영상이 도움이 많이 되고 있습니다! 감사합니다.넥스트 관련 질문은 아닌데요 개인적으로 궁금해서요! 페이지 스타일 입히기랑 날씨 API KEY 분리할 때 영상에 잡힌건데 NEXT_PUBLIC_API_KEY=YOUR_API_KEY 이런 식으로 가이드? 가 나오더라구요. button {} css 도 그렇구요! 신기해서 그러는데 어떤 도구 설치하셨는지 여쭤봐도 될까요?
-
미해결[C#과 유니티로 만드는 MMORPG 게임 개발 시리즈] Part7: MMO 컨텐츠 구현 (Unity + C# 서버 연동 기초)
RegisterSend 의 NullReferenceException 오류
유니티에서 NetworkManager static Instance를 통해 Send를 하면 다음과 같은 오류가 발생합니다. 어떤 이유인지 알 수 있을까요? ㅠㅠServerSession에서 로그를 찍으면 문제가없습니다.
-
미해결Flutter 초입문 왕초보편
App Bar 질문 있습니다.!
현재 26강까지 진행했고, 코드를 잘 따라서 만들어보고 있는데요.'앱 바'부분만 강의에 있는 것 처럼 바 영역이 설정되지 않고 텍스트만 들어가있습니다. 혹시 어떤 부분을 수정을 해야할지요?
-
해결됨한 입 크기로 잘라 먹는 리액트(React.js) : 기초부터 실전까지
[props] children 사용법 및 동작원리 질문
props 강의 관련 질문입니다!1)어떻게 컨테이너 컴포넌트에 프롭스 형태로 전달하지 않아도,<Container children = { <Counter {...counterProps} />} />2)jsx 자체를 컨테이너 아래에 중첩?! 시키는 방법만으로도 children prop으로 작용할 수 있게되는지 그 이유? 원리가 궁금합니다!!<Container> <div className='App'> <Counter {...counterProps} /> </div> </Container> import './App.css'; import Container from './Container'; import Counter from './Counter'; function App() { const counterProps = { // initialValue: 7, a: 1, b: 2, }; return ( <Container> <div className='App'> <Counter {...counterProps} /> </div> </Container> ); } export default App; 저는 예를 들어 아래와 같은 방식으로 children prop을 전달하는 걸로 생각하고 있었습니다. <Container children={<OddEvenResult count={count} />} /> 1), 2) 방식의 차이는 무엇이고(어떤 게 더 나은 방식이고?), 2)방식의 동작원리에 대해 질문드립니다!!
-
미해결대세는 쿠버네티스 (Helm편)
install 시 발생하는 에러 문의
install 시에 아래와 같은 에러가 발생하는데 확인 부탁드립니다.Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: error validating "": error validating data: ValidationError(ServiceAccount.metadata): unknown field "automountServiceAccountToken" in io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
-
미해결
Expert Assignment Writing Service for Academic Success
In the fast-paced world of academia, students often find themselves juggling multiple assignments, coursework, and exams. This academic pressure can be overwhelming, leaving little time for students to focus on their personal lives or extracurricular activities. Fortunately, expert assignment writing service have emerged to provide much-needed assistance to students seeking to achieve academic success without compromising their well-being. In this article, we will explore the world of expert assignment writing service, shedding light on how they work, their benefits, and the factors to consider when choosing one.Understanding the Need for Expert Assignment Writing ServiceThe Academic Struggles of StudentsMany students struggle with the demands of their academic workload. From essays and research papers to complex projects and dissertations, the pressure to excel in every subject can take a toll on their mental and physical health.Time ConstraintsModern students often have to balance their studies with part-time jobs, internships, and other responsibilities. This leaves them with limited time to dedicate to each assignment, compromising the quality of their work.Language BarriersFor international students, language barriers can be a significant obstacle. Writing assignments in a language that is not their first can lead to misunderstandings and lower grades.How Expert Assignment Writing Service WorkChoosing the Right ServiceWhen seeking help from an expert assignment writing service, it's essential to select a reputable and trustworthy provider. Research and read reviews to ensure they have a track record of delivering high-quality work.Placing an OrderOnce you've chosen a service, you'll need to provide details about your assignment, including the topic, deadline, and specific requirements. The more information you provide, the better the final result will be.Assignment CompletionAfter placing your order, a qualified writer with expertise in your subject will be assigned to your task. They will work diligently to create a well-researched and original assignment that meets your criteria.Benefits of Expert Assignment Writing ServiceHigh-Quality WorkExpert assignment writers are well-versed in their respective fields, ensuring that the work they produce is of top-notch quality. This can lead to improved grades and a better understanding of the subject matter.Time SavingsBy delegating assignments to professionals, students can free up their time to focus on other academic tasks or personal activities. This balance can lead to reduced stress and increased overall well-being.Plagiarism-Free ContentReputable assignment writing service guarantee plagiarism-free content. This ensures that the work is original and will not result in any academic misconduct issues.Factors to Consider When Choosing an Assignment Writing ServiceReputation and ReviewsResearch the reputation of the assignment writing service by reading reviews from past clients. Look for positive feedback and a history of delivering assignments on time.Pricing and AffordabilityConsider your budget when choosing a service. While it's essential to find an affordable option, be wary of services that offer unrealistically low prices, as they may compromise on quality.Customer SupportPrompt and effective customer support is crucial. Choose a service that offers 24/7 support to address any concerns or revisions you may need.ConclusionExpert assignment writing service plays a vital role in supporting students on their academic journey. They offer a lifeline for those facing overwhelming workloads, time constraints, or language barriers. By choosing a reputable service, students can access high-quality, plagiarism-free work that can significantly impact their academic success.