본문 바로가기

분류 전체보기238

openai sora 텍스트로 동영상까지 만드는 시대 도래 https://openai.com/sora Sora: Creating video from textThe current model has weaknesses. It may struggle with accurately simulating the physics of a complex scene, and may not understand specific instances of cause and effect. For example, a person might take a bite out of a cookie, but afterward, the cookie mopenai.com 퀄리티가 어마어마하네요. 간단한 동영상 부터 영화제작 영역까지 앞으로 판도가 확 달라지겠어요 2024. 2. 16.
배열앞에 +기호 (+배열[0]) 배열앞에 +기호를 붙이면 배열값을 숫자형으로 바꿔줌. const h = ['1', '2', '3'] typeof +h[0] 는 number타입 typeof h[0]는 string타입 인것을 알 수 있다. 2023. 11. 20.
웹3.0과 메타버스 설명의 끝판왕 https://youtu.be/ZUzIHjTs2dA 웹3.0과 메타버스에 대해 너무 명쾌하게 잘 설명해주셨네요! 2023. 1. 4.
API의 json 응답 처리 API로 부터 넘어온 json데이터를 파싱할때, 데이터가 객체 배열 형태로 넘어올때와, 객체 형태로 넘어올때를 구분하여 활용한다. 1. 객체 형태로 넘어올때 -. API URL : https:// dummyjson.com/quotes quotes.quotes 로 객체 안의 배열을 가져옴 API로 부터 객체를 받고 그안에 quotes배열의 quote, author값을 활용 console.log(quotes.quotes[0].quote); console.log(quotes.quotes[0].author); 2. 객체 배열 형태로 넘어올때 -. API URL : https://jsonplaceholder.typicode.com/users API로 부터 배열을 받고 배열을 forEach로 돌면서 username.. 2022. 12. 27.