1. 백앤드 프로그래밍에서 인증이 중요한 부분이라는것을 배우고 있습니다. 실무에서 인증서버라는 것을 따로 두는지요. 그리고 여담이지만 "키관리서버"(아마도 블록체인) 이것도 일종의 인증 개념으로 보는 것이 맞을끼요? 2. 함수형 프로그래밍의 핵심을 표현하면 객체클래스가 아닌 함수클래스를 주로 설계하는것을 말할까요?
서버이름들의 개념을 잡으려고 노력하고 있습니다. 1)nginx와 동급의 개념이 blazor라고 보면되나요? 2) asp.net에서 node.js에 해당하는 런타임은 무엇이라고 부를까요? 3)api가 있는 server (webapi)는 mvc 구조가 아니고 mc 구조인 것이죠? 감사합니다.
안녕하세요! 7:50 이전에 return HttpResponseRedirect(reverse( 'accountapp:hello_world' )) 를 작성하시는데 reverse가 없어도 겉으로 보기엔 똑같더라구요 HttpResponseRedirect만으로도 '돌아가라(redirect)'라는 의미 전달이 되는 것 같은데, reverse의 역할은 무엇인가요? 좋은 강의 감사합니다!
선생님 좋은 강의 감사합니다 LandingPage의 기능적인 부분은 다 작동하지만 LandingPage 출력시 아래와 같이 출력되어 수정하고자 하는데 어려움이 있습니다... 구글링 해봐도 해결이 어려워 도움 부탁드립니다. 1) product item 출력부분이 아래와 같이 중간에 공백이 생겨서 나옵니다. 어떤 부분이 문제 인지 알 수 있을까요?? 2) antd Collapse를 적용햇는데 아래와 같이 적용되어 질문 드립니다. antd 적용한 부분에 이렇게 뜨는데 이게 문제일까요? 감사합니다
동영상 4분 40초에 public Member save(Member member) { member.setId(++sequence); store.put(member.getId(), member); return member; 로 저장하잖아요. 그러면 결국 Map store는 < id , member( id , name)>로 저장되는 거잖아요. 그러면 key에서도 id가 저장되고 value에서도 member의 id가 저장되고 id가 총 2번이나 사용되어 저장되는 건가요?
sys.setrecursionlimit( 10 ** 6 ) def DFS (x , y , w): ch[x][y] = 1 for i in range ( 4 ): a = x + dx[i] b = y + dy[i] if 0 <= a < n and 0 <= b < n and tmp[a][b] > w and ch[a][b] == 0 : DFS(a , b , w) dx = [- 1 , 0 , 1 , 0 ] dy = [ 0 , 1 , 0 , - 1 ] n = int ( input ()) tmp = [ list ( map ( int , input ().split())) for _ in range (n)] count = 0 res = 0 for i in range ( 100 ): count = 0 ch = [[ 0 ] * n for _ in range (n)] for j in range (n): for k in range (n): if ch[j][k] == 0 and tmp[j][k] > i: count += 1 DFS(j , k , i) if res < count: res = count if count == 0 : break print (res) 5번은 통과하는데 4번만 시간초과합니다 컴퓨터 문제일까요??
똑같이 해서 run application.py를 하니깐 작동은 안되고 저런식으로 오류가 발생합니다. ㅠㅠ - 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요! - 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.
강의 보다가 set 부분에서 의문이 들어서 실험을 해봤는데요 예시에서 obj = {}, data = {} 이렇게 두가지 오브젝트를 사용하셨잖아요 저는 obj하나만 써서, Book의 get/set을 정의 할 때도, 데이터를 집어 넣고 빼고 하는 대상도 obj의 Book으로 설정을 하니까 마치 출구없는 재귀함수 처럼 스택 오버 플로우가 생기더군요 그래서 두개의 오브젝트를 써야하는 구나 싶은데 구체적인 이유를 잘 모르겠습니다
안녕하세요. 좋은 강의 감사드립니다. 에러를 해결하지 못하여 질문드립니다. babel을 따로 실행 시 문제가 없었는데 webpack.config.js에 babel-loader를 추가 한 후, 빌드 시 에러가 발생합니다. 에러 메세지 입니다. Error: [BABEL] /Users/duwon/front_edu/bundler_tutorial/app.js: Could not find plugin "proposal-class-static-block". Ensure there is an entry in ./available-plugins.js for it. (While processing: "/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/preset-env/lib/index.js [./app.js] 2.88 KiB {main} [built] [failed] [1 error] ERROR in ./app.js Module build failed (from ./node_modules/babel-loader/lib/index.js): Error: [BABEL] /Users/duwon/front_edu/bundler_tutorial/app.js: Could not find plugin "proposal-class-static-block". Ensure there is an entry in ./available-plugins.js for it. (While processing: "/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/preset-env/lib/index.js") at getPlugin (/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/preset-env/lib/index.js:67:11) at /Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/preset-env/lib/index.js:258:62 at Array.map (<anonymous>) at /Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/preset-env/lib/index.js:258:43 at /Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/helper-plugin-utils/lib/index.js:22:12 at /Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/core/lib/config/full.js:199:14 at Generator.next (<anonymous>) at Function.<anonymous> (/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/core/lib/gensync-utils/async.js:26:3) at Generator.next (<anonymous>) at step (/Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:261:32) at evaluateAsync (/Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:291:5) at Function.errback (/Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:113:7) at errback (/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/core/lib/gensync-utils/async.js:70:18) at async (/Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:188:31) at onFirstPause (/Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:216:13) at Generator.next (<anonymous>) at cachedFunction (/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/core/lib/config/caching.js:68:46) at cachedFunction.next (<anonymous>) at loadPresetDescriptor (/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/core/lib/config/full.js:292:44) at loadPresetDescriptor.next (<anonymous>) at recurseDescriptors (/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/core/lib/config/full.js:107:30) at recurseDescriptors.next (<anonymous>) at loadFullConfig (/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/core/lib/config/full.js:142:6) at loadFullConfig.next (<anonymous>) at Function.transform (/Users/duwon/front_edu/bundler_tutorial/node_modules/@babel/core/lib/transform.js:25:45) at transform.next (<anonymous>) at step (/Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:269:25) at /Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:273:13 at async.call.result.err.err (/Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:223:11) at /Users/duwon/front_edu/bundler_tutorial/node_modules/gensync/index.js:189:28 감사합니다.
- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요! - 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요. def copyright(func): #이 func 인자에는 여러 함수가 들어갈 수 있을 것임 def new_func(): print("@") func() return new_func def smile(): print("^0^") def angry(): print("ff") def love(): print("love") copyright(smile()) copyright(angry()) copyright(love()) 왜 이 코드를 실행하면, @는 같이 붙어있지 않고, ^0^ ff love 만 결과로 나오는 것인가요?