본문 바로가기

Programming

파이썬 flask 와 언리얼 연동-2 https://youtu.be/vLGZp5hl6qU  언리얼에서도 서버에 요청을 보내는 코드를 구현하기 위해 일단 이강의를 참고해봤다. 우선 대충 중요 함수를 보자면 Super::StartPlay(); FHttpRequestRef Request = FHttpModule::Get().CreateRequest(); // 질문할것 예상으로는 리퀘스트 요청을 요청할 변수 선언 Request ->SetURL("https://jsonplaceholder.typicode.com/posts/1"); // 웹서버 주소 경로 설정 Request ->SetVerb("GET")// Verb가 뭔지는 모르겠지만 이 코드를 통해 GET으로 읽어 올지할지 AI가 준 코드로 요청은 성공했지만 결국, 응답을 받아서 Usoundwave.. 더보기
(파이썬) 언리얼 엔진 과 flask 서버 연동하기 -1 https://youtu.be/X_n6IZmieV8?list=PLuHgQVnccGMClNOIuT3b3M4YZjxmult2y 우선 기초적으로 flask 웹 프레임 워크를 가장 기초부터 차근히 알려주는 생활 코딩에서 배우기 시작 했다. 웹 페이지를 만드는 작업 중에 많은 부분은 공통 적인 부분이 있고 이런 작업을 미리해둔 소프트웨어를웹 프레임 워크(Web Framework) 파이썬의 전용 웹 프레임 워크는 flask라고 한다.  기본적으로 flask 서버는 5000번 포트를 사용하고 만약 이것을 사용하고 싶다면5000번을 끄고 새로 시작하거나 아니면 다른 포트로 시작해야한다.  https://youtu.be/HjIeLsfYe08?list=PLuHgQVnccGMClNOIuT3b3M4YZjxmult2y 사용자 .. 더보기
깃,깃 허브를 배워보자 https://velog.io/@phantom5087/GitGithub-Git%EC%9D%84-%EB%B0%B0%EC%9B%8C%EB%B3%B4%EC%9E%90 [Git/Github] Git을 배워보자 Git이란? VCS Version Control System 으로 버전을 관리해주는 시스템입니다. 게임을 해보셨던 분들이라면, 버전시스템은 친숙하실겁니다! 웹 앱,게임 등과 같은 소프트웨어들의 버전을 관리할 수 있습 velog.io GIT/Github / Git을 배워보자 Git 이란? VCS Version Control System으로 버전을 관리해 주는 시스템 게임을 해보셨던 분들이라면, 버전 시스템은 친숙 웹 앱, 게임 등과 같은 소프트웨어 들의 버전을 관리 할 수 있음 버전은 'x.x.x'로 나타내.. 더보기
CMS 정리 두번째 시간 CMS 정리 두번째 시간 Which CMS system should you use? Sure, everyone has their answer, their preference, and their opinion, but it is difficult to come up with a factual argument for one content management system being the best in 100% of situations. All three are excellent choices in most cases. But your own unique scenario will require different capabilities, which probably makes ONE of these three C.. 더보기
week1 -1 CMS, Wordpress를 공부하는 이유 : 이것이 내 passive income에 도움 될태니까 당연히 열심히 해야합니다. 성실히 Although Wordpress was initially conceived as a blogging platform, it has grown far beyond that point. you can customize it with little limitations using plugins and themes (of which you have tens of thousands to choose from). The WordPress open source CMS project provides the opportunity for anyone to create and share we.. 더보기
URL 구성표 더보기
객체의 생성, 읽기,쓰기 객체의 생성 과 읽기, 쓰기 Object var coworkers = { "programmer" : "egoing", "designer" : "leezche" }; document.write ("programmer : " + coworkers.programmer + " "); document.write ("designer : " +cowokers.designer+" "); coworkers.bookkeeper = "duru"; 중요 document.write("bookkeeper : " + coworkers.bookkeeper + " "); coworkers["data scientist"] = "taeho"; 중요 document.write("data scientist : " +coworkers["dat.. 더보기