일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- 코딩자율학습
- Do it
- TS
- do it! html+css+자바스크립트 웹 표준의 정석
- 이벤트
- html 기본문서
- css박스 모델
- JS
- JavaScript
- 코딩 자율학습 html + css + 자바스크립트
- CPU
- html 실무
- https://api.jquery.com/
- 코딩 자율학습 html + css + 자바스크립트]
- cpu 성능 향상 기법
- propschildren
- 혼자 공부하는 컴퓨터구조+운영체제
- css배경
- css필수 속성
- Git
- 자바스크립트
- 메모리와 캐시 메모리
- react
- html 필수태그
- HTML
- html 문서작성
- 코딩
- CSS
- 코딩 자율학습
- do it! 한권으로 끝내는 웹 기본 교과서 html+css+자바스크립트 웹 표준의 정석
- Today
- Total
목록2024/10/11 (5)
게으른 나에게
폴더 생성작업 폴더에서 터미널창 열기레포지토리 생성버전 관리 할 폴더 설정 명령어 (작업 디렉터리)git init 현재 파일 기록-staging area (전체 / 파일만)git add .git add 파일명-올리고 싶지 않은 파일 (.gitignore 추가) -repository (스테이지 된 파일들만)git commit -m "메시지"상태창 열기 (어떤 파일 staging, 수정 ..)git statuscommit 내역 조회git log --all --onelinegit log --all --oneline --graph commit 전 (최근 commit vs 현재 파일)git diffgit difftoolgit difftool 커밋아이디git branch (브랜치 생성: 파일 복사본 만들기)git ..
1. 터미널 접속 2. Homebrew 설치 (코드입력)/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"https://brew.sh/ HomebrewThe Missing Package Manager for macOS (or Linux).brew.sh 3. git 설치 (코드 입력) brew install git 4. git 버전 확인git --version 5. 환경설정 (유저이름 설정 / 이메일 설정)git config --global user.name "깃허브 닉네임 혹은 이름"git config --global user.email "github 가입 시 사용한 이메일 주소" 6..
브라우저 안 데이터 저장 가능 개발자도구 -> Application -> StoragelocalStorage, sessionStorageIndexedDBCookiesCache Storage이름(key) : 값(value) 형태로 저장구조화된 대용량 데이터 저장로그인 정보 저장html, css, js 파일 저장 localStoragesessionStorage용량 5MB문자/숫자만 저장 가능사이트 재접속시 유지휘발성 (사이트 나가면 자동 삭제) [JavaScript] localStorage 저장 방법localStorage.setItem('이름', '값'); [JavaScript] localStorage 출력 방법localStorage.getItem('이름'); [JavaScript] localStorag..
HTML 전부 다 읽고 실행할 JS 코드$(document).ready(function(){ 실행할 코드 })document.addEventListener('DOMContentLoaded', function() { 실행할 코드 })
sort array.sort는 문자정렬 sort로 숫자 정렬 하는 법(오름차순)1. a, b 는 array안의 자료.2. return 오른쪽 양수, a -> 오른쪽3. return 오른쪽 음수, b -> 오른쪽 (내림차순) filterarray 자료 원하는 것만 가져옴filter( ) 결과는 변수에 저장해서 써야함 sort vs filter.sort( )는 원본 변형됨.filter( )는 원본 변형되지 않음 map자료 전부 변형