묻고 답해요
158만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결설계독학맛비's 실전 AI HW 설계를 위한 바이블, CNN 연산 완전정복 (Verilog HDL + FPGA 를 이용한 가속기 실습)
[AI HW data move] AI HW에서 DDR의 data를 사용하는 경우가 있나요?
=================현업자인지라 업무때문에 답변이 늦을 수 있습니다. (길어도 만 3일 안에는 꼭 답변드리려고 노력중입니다 ㅠㅠ)강의에서 다룬 내용들의 질문들을 부탁드립니다!! (설치과정, 강의내용을 듣고 이해가 안되었던 부분들, 강의의 오류 등등)이런 질문은 부담스러워요.. (답변거부해도 양해 부탁드려요)개인 과제, 강의에서 다루지 않은 내용들의 궁금증 해소, 영상과 다른 접근방법 후 디버깅 요청, 고민 상담 등..글쓰기 에티튜드를 지켜주세요 (저 포함, 다른 수강생 분들이 함께보는 공간입니다.)서로 예의를 지키며 존중하는 문화를 만들어가요.질문글을 보고 내용을 이해할 수 있도록 남겨주시면 답변에 큰 도움이 될 것 같아요. (상세히 작성하면 더 좋아요! )먼저 유사한 질문이 있었는지 검색해보세요.잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.================== 안녕하세요. 좋은 강의 공유해주셔서 감사합니다!!Verilog HDL season 2 강의와 본 강의를 보고 여러 AI HW 논문을 읽다보니 한 가지 궁금한 점이 있어서 글 남기게 되었습니다.많은 AI HW 논문에서는 빠른 data move를 위해서 보통 모든 weight와 feature map을 on-chip memory(Bram)에 모두 넣도록 구성하는 경우가 많더라구요. 그래서 BRAM에 모든 weight를 올릴 수 있도록 모델의 크기를 최적화하는 방향으로 연구를 하더라구요.그만큼 DDR의 접근 속도가 느리다는 것 같은데 그러면 AI HW 분야에서는 어떤 경우에 DDR를 사용하는지 그리고 느리다면 BRAM과 비교해서 얼마나 느리길래 사용하지 않는 것인지.(Stream을 이용하면 그렇게 차이가 크다고 생각하지 않는데...)[질문 정리]현업 AI HW 분야에서 DDR 접근은 언제 사용하나요?BRAM 접근 속도와 DDR 접근 속도가 얼마나 차이가 나길래 BRAM만 사용해서 AI HW system을 구성하는 것인가요? 항상 좋은 강의 만들어주셔서 감사합니다!!
-
미해결Vue.js 중급 강좌 - 웹앱 제작으로 배워보는 Vue.js, ES6, Vuex
깃헙 권한 요청드립니다~
인프런 아이디 : YOON KYEOM KIM인프런 이메일 : newalpha77@gmail.com깃헙 아이디 : newalpha7@naver.com깃헙 username : KimYoonKyum
-
미해결스프링부트 JUnit 테스트 - 시큐리티를 활용한 Bank 애플리케이션
완강 하였습니다. CI CD는
https://github.com/codingspecialist/JUNIT5-Security-Lecture 여기 나와있는 deploy.yml은 그대로 써도 되는걸까요?
-
해결됨[코드캠프] 부트캠프에서 만든 고농축 프론트엔드 코스
d-day 오류
<!DOCTYPE html> <html lang="ko"> <head> <script src="./js/calculator.js"></script> <link rel="stylesheet" href="./calculator.css"> <title>D-Day</title> </head> <body> <h1>D-day</h1> <div id="d__day__container"> <div class="d__day__child__container"> <span id="days">0</span> <span>일</span> </div> <div class ="d__day__child__container"> <span id="hours">0</span> <span>시간</span> </div> <div class ="d__day__child__container"> <span id="min">0</span> <span>분</span> </div> <div class ="d__day__child__container"> <span id="sec">0</span> <span>초</span> </div> </div> <div id="target-selector"> <input id="year" type="text" placeholder="년도" class="day-caleander" size=5 maxlength="4"> <input id="month" type="text" placeholder="월" class="day-caleander" size=5 maxlength="2"> <input id="day" type="text" placeholder="일" class="day-caleander" size=5 maxlength="2"> </div> <div id="target__selector"> <button onclick="counterMake()" id="start__btn">카운트다운</button> </div> </body> </html> const dateFormMaker = () => { const inputYear = document.getElementById("year").value; const inputMonth = document.getElementById("month").value; const inputDay = document.getElementById("day").value; const dateFormat = `${inputYear} - ${inputMonth} - ${inputDay}`; return dateFormat; } const counterMake = () => { const targetDateInput = dateFormMaker(); const nowDate = new Date() const targetDate = new Date(targetDateInput); const remaining = (targetDate-nowDate) / 1000; if(remaining <=0) { console.log("타이머가 종료되었습니다.") }else if (isNaN(remaining)) { "유효한 시간 형식이 아닙니다" } const reaminingDate = Math.floor(remaining /3600 /24); const remainingHours = Math.floor (remaining/3600) & 24; const remainingMin = Math.floor(remaining/60) % 60; const remainingSec = Math.floor(remaining) & 60; const dDayCounter = `남은 시간 : ${reaminingDate}일 ${remainingHours}시 ${remainingMin}분 ${remainingSec}초`; console.log(dDayCounter) return dDayCounter; } console 하나하나 찍어가며 파악한 결과 targetDate에서 NaN이 뜨는데, 아무리 봐도 이유를 모르겠습니다 ㅠㅠㅠinput 박스에 적은 값들도 잘 읽어오는데 갑자기 저기서 에러가 뜨니까 답답하네요 . 피드백 부탁드립니다.
-
해결됨스프링 시큐리티 OAuth2
AuthorizationServer 와 Resource Server 용어 질문이있습니다.
우선 Spring Security 1편부터 양질의 강의 너무 잘듣고있다는 말씀드리고 싶습니다.다름이 아니라 강사님이 강의 13분 10초에 "발급받은 AccessToken 을 가지고 AuthorizationServer 에 사용자정보를 요청한다" 고 말씀하셨는데. 이 AuthorizationServer 가 Resource Server 라고 이해하면 될까요?Authorization Code Grant 방식의 Flow 는 아래와 같은 것으로 알고 있습니다.Authorization Server 에 임시코드(Code) 을 발급받고발급받은 Code 를 Authorization Server 에 요청하여 AccessToken 과 교환한다.발급받은 AccessToken 을 가지고 Resource Server 에 사용자 정보를 요청한다.제가 잘못알고있는것일까요..? 답변해주시면 감사하겠습니다.
-
해결됨실리콘밸리 엔지니어가 가르치는 파이썬 기초부터 고급까지
csv 파일은 없나요?
현재 pandas 파일 읽기와 쓰기 실습을 하고 있습니다. csv 파일이 혹시 따로 제공되지 않는 지 궁금하여 여쭤봅니다.
-
미해결따라하며 배우는 리액트 테스트 [2023.11 업데이트]
msw 에러
강의를 보다 msw부분에서 에러가 발생합니다. 폴더구조는 이런식이고 handler와 server의 ts파일입니다.setupTests.ts파일입니다 App컴포넌트 입니다 문제의 테스트 코드입니다.강의에서 사용하신 대로 비슷하게 작성하고 에러가 발생할 부분도 제눈에는 보이진 않는데위와같은 에러가 발생하여 옵셔널 체이닝 을 사용하면이런 에러가 발생하네요.npm test가아닌 npm start로 실행시켜 봤을때에는 전혀 이상이 없는데 테스트를 실행시키면 에러가 발생합니다.서버설정부분이나 핸들러부분이 잘못돼었나 싶어서 찾아보았지만 그부분은 이상이 없는것같고app컴포넌트를 다른 방식으로 작성해도 계속에러가 발생합니다.어떤부분이 잘못된부분이고 어떤 해결방안이있을까요?
-
미해결자바 ORM 표준 JPA 프로그래밍 - 기본편
11분40초 부분 team, member쿼리가 나가지 않습니다
학습하는 분들께 도움이 되고, 더 좋은 답변을 드릴 수 있도록 질문전에 다음을 꼭 확인해주세요.1. 강의 내용과 관련된 질문을 남겨주세요.2. 인프런의 질문 게시판과 자주 하는 질문(링크)을 먼저 확인해주세요.(자주 하는 질문 링크: https://bit.ly/3fX6ygx)3. 질문 잘하기 메뉴얼(링크)을 먼저 읽어주세요.(질문 잘하기 메뉴얼 링크: https://bit.ly/2UfeqCG)질문 시에는 위 내용은 삭제하고 다음 내용을 남겨주세요.=========================================[질문 템플릿]1. 강의 내용과 관련된 질문인가요? (예/아니오)2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? (예/아니오)3. 질문 잘하기 메뉴얼을 읽어보셨나요? (예/아니오)[질문 내용]Hibernate: create table Member ( MEMBER_ID varchar(255) not null, TEAM_ID bigint, USERNAME varchar(255), primary key (MEMBER_ID) )Hibernate: create table Team ( TEAM_ID bigint not null, name varchar(255), primary key (TEAM_ID) ) create모드로 설정되어있고 이렇게 drop하고 create만 하고 강의처럼 insert 쿼리를 생성하지 않는데 어떤점이 문제일까요?public class JpaMain { public static void main(String[] args){ EntityManagerFactory emf = Persistence.createEntityManagerFactory("hello"); EntityManager em = emf.createEntityManager(); EntityTransaction tx = em.getTransaction(); tx.begin(); try{ Team team = new Team(); team.setName("TeamA"); em.persist(team); Member member = new Member(); member.setUsername("member1"); member.setTeamId(team.getId()); em.persist(member); tx.commit(); } catch(Exception e){ tx.rollback(); } finally { em.close(); } emf.close(); } }
-
미해결[왕초보편] 앱 8개를 만들면서 배우는 안드로이드 코틀린(Android Kotlin)
화면간 데이터전달강의 부분에서
둥근테두리의 작은 이미지를 크릭하면확대된 해당 이미지가 보이지 않고그냥 에뮬레이터의 초기화면으로 돌아가네요해당파일을 git 에 올려 두었습니다https://github.com/dongguntechnology/Twice/tree/main/app/src/main/java/com/dongguntech/twice
-
해결됨[개정3판] Node.js 교과서 - 기본부터 프로젝트 실습까지
파람스에 인코딩해서 보낼 때 질문
파람스부분을 인코딩해서 보냈는데 API서버에선 디코딩 안하고 바로 req.params.title를 꺼내 썼잖아요. 콘솔로 찍어보니깐 자동으로 디코딩 되어있던데 이건 익스프레스에서 알아서 디코딩 한 것인가요?
-
해결됨
ApplicationContextRunner 에러
import org.springframework.boot.test.context.runner.ApplicationContextRunner; import 되지 않는데 원인을 부탁드릴 수 있는지요 ?
-
미해결스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술
이클립스로 강의
인텔리제 대신 이클립스로 강의 수강해도 문제 없을까요?
-
미해결스프링 MVC 2편 - 백엔드 웹 개발 활용 기술
Spring Security API 구현 시 로그인 유지 기능
신입입니다. 회사 실무 프로젝트 개발을 하다가 Spring Security API 구현 시 로그인 유지 기능 구현을 하고 있는데요. Spring boot, JPA, API로 구현을 해야 하는데 모두 낯설어서JPA1,2편 먼저 수강했습니다.ㅠㅠ 토큰 기반 방식으로 api로 로그인을 했을 때 로그인 유지를 되게끔 하고싶어서 알아보니 WebSecurityConfigurerAdapter 이걸 사용해서 구현하는 방법만 있더라구요.근데 이건 Deprecated됐다고해서...... SecurityFilterChain을 사용해야되던데...이 부분에 대한 강의가 김영한님 강의 중 어느 부분인가요? ㅠㅠㅠ
-
해결됨10주완성 C++ 코딩테스트 | 알고리즘 코딩테스트
[2_R맞왜틀] ret을 전역변수로 선언하면 왜 틀릴까요?
http://boj.kr/db85dc94cd0c466aafbedb24affa6259 안녕하세요 선생님 도움 많이 받고 있습니다 항상 감사드려요. 다시 복습하면서 문제를 풀어보는데 ret을 전역변수로 선언하고 dfs함수를 ret을 계산하는 용도로만 사용하면 틀리더라구요 왜 그런지 잘 모르겠어요. 한번 봐주시면 좋겠습니다. 감사합니다
-
미해결Jenkins를 이용한 CI/CD Pipeline 구축
(공유) Windows 11 환경 wsl 사용 시 docker 나 docker-storage 없는 경우
그냥.. 저처럼 Windows 11 환경에서 wsl 을 사용해서 Ansible Server 컨테이너 구동 후, 컨테이너 안에서 도커 실행 잘 안될 때 해결 방법 공유드리려고 글 썼습니다. 헤헤..사실 강사님께서 "[섹션 9. Appendix] "Windows 환경에서 SSH+Docker 컨테이너 기동 시 발생하는 오류 해결" 강의에 잘 설명되어 있어서 그거 참고하셔도 될 것 같아요! (저도 그거 보고 참고해서)docker run --privileged=true \ --name ansible-server -itd \ -p 20022:22 -p 8081:8080 \ -e container=docker \ --tmpfs /run --tmpfs /tmp \ -v /sys/fs/cgroup:/sys/fs/cgroup:ro \ -v /var/run/docker.sock:/var/run/docker.sock \ edowon0623/ansible:latest /usr/sbin/init강의 보고 DooD (Docker out of Docker) 방식은 처음 알게 되었는데, 위 명령어를 저렇게 치고 컨테이너 안에 들어가면 호스트(windows 11) 에 띄워진 컨테이너 보이고, ansible --version 치면은 잘 나오네여(/etc/sysconfig/docker, /etc/sysconfig/docker-storage 파일은 여전히 없는데 딱히 문제 없는 듯)강의 친절하게 알려주셔서 감사해요~
-
미해결
How Dota 2 Boosting Services Impact Competitive Gaming
IntroductionCompetitive gaming in Dota 2 is an intense and rewarding experience for players seeking to prove their skills on the battleground. The game's matchmaking rating (MMR) system is at the core of competitive gameplay, determining a player's skill level and facilitating fair matches. However, the rise of Dota 2 boosting services has introduced new challenges and controversies to the competitive landscape. In this blog, we will explore the impact of Dota 2 boosting services like MMR-Boost.com on competitive gaming, analyzing the pros and cons they bring to the table.Understanding Dota 2 Boosting ServicesWhat are Dota 2 Boosting Services?Dota 2 boosting services are third-party platforms or individuals offering assistance to players looking to increase their MMR artificially. Boosting involves skilled players playing on behalf of the client, resulting in a higher MMR. These services may use various methods, such as account sharing or playing alongside the client in a solo-queue format.The Attraction of MMR BoostingThe appeal of Dota 2 boosting services is evident. Players who find themselves stuck in a particular MMR bracket due to various factors, such as a series of losses or a toxic gaming environment, may turn to boosting as a quick solution. It offers the prospect of experiencing higher-tier matches and avoiding the frustrations of low-level gameplay.Moreover, some players desire to improve their skills by observing and playing alongside highly skilled boosters. The learning opportunities presented by these services can be enticing, as they provide insights into advanced strategies and decision-making that can aid in overall gameplay improvement.Impact on Competitive GamingUnbalancing the Matchmaking SystemOne of the most significant impacts of Dota 2 boosting services is the distortion of the game's matchmaking system. MMR is designed to create balanced matches, pitting players of similar skill levels against each other for fair and competitive gameplay. When players artificially boost their MMR, they disrupt this balance, leading to mismatches where boosted players find themselves in matches they may not be adequately skilled to handle. This can result in frustrating experiences for both the boosted player's teammates and opponents.Undermining the Competitive SpiritDota 2 is renowned for its competitive spirit, where players strive to prove themselves and climb the ranks based on their actual skill and dedication. Boosting undermines this competitive integrity, as it allows players to attain higher ranks without genuinely earning them. This can lead to a devaluation of skill-based achievements and diminish the sense of accomplishment that comes from genuine improvement.Security and Ethical ConcernsMany Dota 2 boosting services require account sharing, which raises significant security and ethical concerns. Sharing login credentials with third-party individuals can result in compromised accounts, as well as potential exposure to scams and fraud. Furthermore, Valve strictly prohibits account sharing, and players caught engaging in such activities can face severe penalties, including permanent bans.Controversies in the Gaming CommunityThe rise of Dota 2 boosting services has sparked controversies within the gaming community. Many players argue that boosting disrupts the overall gaming experience and negatively impacts the community's competitive spirit. The debate surrounding the ethical implications of boosting remains a heated topic of discussion among players, developers, and gaming organizations.The Case of MMR-BoostAs one of the prominent names in the Dota 2 boosting industry, MMR-BOOST has gained both positive and negative attention. It is essential to consider reviews and mentions of MMR-Boost.com to understand its impact on competitive gaming fully.Reviews and Mentions of MMR-Boost.According to a NewsDirect press release, MMR-Boost. has been recognized as one of the top Dota 2 boosting websites in 2023-24. The press release highlights its impact on the competitive gaming scene and how it has become a popular choice among players looking to improve their MMR rapidly.Various reviews from trusted sources, such as Trusted Reviews, MerchantCircle, and Trustpilot, showcase the experiences and feedback of customers who have used MMR-Boost's services. These reviews shed light on the effectiveness of the boosting service and its influence on the competitive gaming landscape.MMR-Boost.com's ApproachCompared to other Dota 2 boosting services, MMR Boost stands out for its emphasis on skilled boosters, ensuring customers receive the best possible results. Additionally, they prioritize security and confidentiality, aiming to protect customer accounts and privacy. However, it is essential to remember that the use of boosting services remains a risky endeavor with potential consequences.ConclusionDota 2 boosting services undoubtedly impact competitive gaming in multifaceted ways. While they provide a tempting shortcut to higher MMR and offer learning opportunities, they also introduce imbalances, undermine the competitive spirit, and raise security and ethical concerns. MMR-Boost, as a prominent player in the industry, has garnered attention, but players must carefully consider the implications of using such services. In the end, competitive gaming is about the pursuit of improvement and genuine skill, and preserving the integrity of the game is paramount to fostering a thriving and fair gaming community.
-
미해결
MMR-Boost.com: Is This Dota 2 Service Worth the Hype? A Critical Review
IntroductionDota 2, the immensely popular multiplayer online battle arena (MOBA) game, boasts an intensely competitive landscape where players strive to improve their matchmaking rating (MMR). As the desire to reach higher MMR grows, so does the interest in MMR boosting services. Among them, MMR-BOOST has gained significant attention, claiming to be a professional service that can swiftly elevate players' MMR. In this critical review, we will delve deep into the world of MMR-Boost.com to determine whether it lives up to the hype and whether it is a service worth considering. Unveiling MMR-Boost.comUnderstanding MMR BoostingBefore evaluating MMR Boost, it is essential to grasp the concept of MMR boosting and its impact on the Dota 2 gaming experience. MMR boosting involves hiring skilled players to play on one's account with the aim of increasing MMR rapidly. The allure of quicker rank progression attracts many players to explore such services, but the consequences on the competitive integrity of the game are significant.Exploring MMR-Boost.comMMR-Boost.com markets itself as a professional and efficient MMR boosting service. With promises of secure and fast MMR boosts, the website appeals to players seeking an edge in the ranked ladder. However, with numerous MMR boosting services available, it becomes crucial to critically evaluate MMR-Boost.com to determine if it truly stands out from the rest.The Hype Surrounding MMR-Boost.comAnalyzing User ReviewsOne of the most reliable ways to gauge the legitimacy and quality of a service is through user reviews. Let's take a closer look at reviews from various platforms to see what players have to say about MMR-Boost.com:Sitejabber Review: Read the review hereSitejabber provides a platform for users to share their experiences. We will analyze both positive and negative reviews to gain a balanced understanding of the service.Reviewfoxy Review: Read the review hereReviewfoxy is another trusted review platform that can shed further light on the reliability of MMR-Boost.com's services.ProvenExpert Review: Read the review hereProvenExpert's reviews offer insights into overall customer satisfaction levels, allowing us to assess whether MMR-Boost.com consistently delivers on its promises.Press Mentions and CoverageIn addition to user reviews, media coverage can provide valuable information about MMR-Boost.com's reputation within the gaming community. Let's take a look at the press releases and news mentions to understand the service's standing:NewsDirect Coverage: Read the coverage here NewsDirect's coverage sheds light on the landscape of Dota 2 boosting websites, featuring an exploration of MMR-Boost.com.iLounge Article: Read the article here iLounge's review of the "3 Best Dota 2 Boosting Websites" includes an evaluation of MMR-Boost.com's services, further contributing to our critical assessment.ConclusionIn conclusion, MMR-Boost.com has undoubtedly garnered attention in the Dota 2 community, but the question remains: is it worth the hype? Through a critical review of user testimonials and media coverage, we aim to provide an objective analysis of the service's credibility and efficiency. Remember, while MMR boosting may offer short-term benefits, it is essential to consider the long-term impact on your gaming experience and the integrity of the competitive ecosystem. Proceed with caution, and always prioritize the spirit of fair play and self-improvement in your Dota 2 journey.
-
미해결스프링 시큐리티
세션 삭제
안녕하세요 시큐리티 이번에 처음 공부하게 되었는데 강의가 너무 좋네요 질문은임의로 세션을 삭제하면 다시 인증을 받아야 하는데SecurityContext에는 인증 정보가 들어있지 않나요 ?
-
미해결Vue.js 완벽 가이드 - 실습과 리팩토링으로 배우는 실전 개념
git 소스 문의드립니다
git clone을 받았는데 vue-news 폴더가 있고 vue-news-ts 폴더가 있습니다. ts는 무엇인가요? 무엇으로 학습해야하는지 문의드립니다. 감사합니다
-
미해결처음 만난 리액트(React)
3강 JSX 코드 작성 에러
안녕하세요, 강의 영상을 토대로 .jsx 파일을 chapter_03 폴더에 생성했는데요 영상 속 코드 사진과 다르게 파일을 인식하지 못하는것 같습니다. 이건 어떻게 해결해야할까요?