본문 바로가기

분류 전체보기

(231)
자바스크립트 Tutorial By Ellie (2) 자바스크립트 4. 코딩의 기본 operator, if, for loop 코드리뷰 팁 // 1. String concatenation console.log('my' + 'cat'); console.log('1' + 2); console.log(`string literals: 1 + 2 = ${1+2}`) ////////////////////////////////////////////////////////////////////////////////// // 2. Numeric operators console.log(1 + 1); //add console.log(1 - 1); // substract console.log(1 / 1); // divide console.log(1 * 1); // multply c..
Netflix’s Top 10 Most Watched Movies 'Army Of The Dead' The zombie-filled Netflix-original film Army Of The Dead from writer and director Zack Snyder centers on a group of mercenaries who, following a zombie apocalypse, take the biggest gamble Las Vegas has ever seen and try to pull off a major heist in the center of the quarantine zone of the city. Starring Dave Bautista, Tig Notaro, Ella Purnell and more, Army of the Dead is set ..
자바스크립트 Tutorial By Ellie (1) script async 와 defer의 차이점 DOM을 따라 반드시 순서대로 실행되어야 한다면 DOM이나 다른 스크립트에 의존성이 없고, 실행 순서가 중요하지 않은 경우라면 DOM이나 다른 스크립트에 의존성이 있고, 실행 순서가 중요한 경우라면 'use stric' "올바르지 않은 문법" 을 사전에 검출할 수 있다. 수업내용 // 1. Use stric 'use stric'; ////////////////////////////////////////////////////////////////////////////////// // 2. Variable 변수 // let (added in ES6) let golbalName = 'global name'; { let name = 'jace'; console.lo..
React Portfolio Project https://khhomepage.ml/ 요구사항 : Landing Page, 자기소개, 취미, 웹 개발자로써의 목표 4가지 페이지를 포함하여 개인 홈페이지를 제작 구현기간 : 2021-02-24 ~ 2021-03-19 Skills : HTML, CSS, JavaScript, React 배포 : Netlify 시연영상 : https://youtu.be/DuhIKl-6hTw Code : https://github.com/bellcastle88/ReactPortfolioProject
01.Typescript : fundamentals
Final team Project 진행과정 (05/20) 총 몇페이지 / 들어갈 기능 오븐으로 미리 작업 다크모드 - Javascript를 이용해 만들기로 함 --------------------------------------------------------------- 팀명 : 클러스터(KH + luster) 프로젝트명 : upmu(up many utilities) 코로나시대에 재택근무자에게 필수적인 기능(전자결재, 사내메일 등)을 포함한 그룹웨어 구현 팀명 : KHluster (클러스터) 목차 프로젝트 명 수행 기간 개발 목표 개발 환경 Contributors 프로젝트 명 업무 (Many Utilities) 수행 기간 2021년 05월 12일 ~ 개발 목표 코로나시대에 재택근무자에게 필수적인 기능(전자결재, 사내메일 등)을 포함한 그룹웨어 구현 개발 환경..
HTML에 SCSS loading 안될때 live sass compiler를 설치하고 아래 watch sass를 클릭해야한다.
Github 협업 정리(4) - Pull & Push 설정 1.지역서버에서는 Master에서 작업하지만 원격에는 나의 branch에 Push한다 Pull을 할때는 원격에 Master에서 가져온다 Push / Pull 대상이 다르다. 2. fetch 설정하기 - 팀원은 처음에 clone을 했기때문에 origin이 보이지만 팀장은 설정을 해줘야한다. - 팀장 설정 - Save하면 fetch설정이 끝난다 3. Push 설정하기 - Push할때 어디에서 어디로 가는지 설정 - (중요)Local master에서 나의 branch로 간다 - 팀장도 마찬가지 자기 branch 4. 팀원 파일을 수정하고 (동일한 이름으로 class파일 만들면 충돌발생) -변경사항 저장하고 Commit -hestory에서 작업내용 확인가능 - Pull 먼저 해야한다. - 저장사항을 Reposi..