일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리눅스
- VirtualBox
- localserver
- Android
- unittest
- 티스토리챌린지
- linux
- xcode
- Chrome
- jest
- TensorFlow
- MachineLearning
- 맥
- androidstudio
- ReactNative
- PYTHON
- 네트워크
- webpack
- 센토스
- centos
- react
- qunit
- build
- IOS
- 개발
- 오블완
- vsCode
- node
- MAC
- Today
- Total
목록분류 전체보기 (490)
로메오의 블로그
index.html 돈 많이 모아두셨죠? 지금 바로 구매하세요. app.css * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, Helvetica, sans-serif; } .intro { height: 100vh; } .intro video { height: 100%; width: 100%; object-fit: cover; } .intro h1 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 80px; color:blanchedalmond; } section { height: 100vh; backgro..
360도 영상을 촬영해서 소스를 준비합니다. https://github.com/google/spatial-media/releases/tag/v2.1 플랫폼에 맞는 파일을 다운로드 합니다. Spatial Media Metadata Injector 앱을 설치 후 실행합니다. Open을 눌러 동영상을 선택합니다. My Video is spherical을 선택하고 inject Metadata를 누릅니다. 파일명뒤에 _injected가 붙어서 생성됩니다. Youtube에 업로드 하시면 됩니다.
.htaccess 파일을 생성합니다. # php 확장자 제거 RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.php [NC,L] # php 오류표시하기 php_value error_reporting 22527 php_flag display_errors on 이제 .php 를 제거하고 접속할 수 있습니다.
SELECT 문 INSERT 문 UPDATE 문
www.mamp.info/en/mamp/ 위 사이트에서 MAMP를 다운로드해서 설치하고, 서버를 구동합니다. DBeaver에 mysql 드라이버 설치 dev.mysql.com/downloads/connector/j/ Platform Independent를 선택하고 zip 파일을 다운로드하고 압축해제합니다. Edit Driver Settings를 누릅니다. 드라이버 경로를 지정합니다. 접속 테스트하고 DB연결합니다. PHP - Mysql 연결 MAMP > Preference에서 Document Root 경로를 확인합니다. Document Root 경로에 php 파일을 생성합니다. 현재 PHP7 버전이 설치되어있는데 저는 PHP5 버전대를 사용해야해서 mysql-wrapper.php를 사용하겠습니다. git..
// @ts-nocheck 파일 최상단에 위 주석을 추가하면 해당 파일은 typescript lint 체크를 제외할 수 있습니다.
function play1() { return new Promise((resolve) => { setTimeout(() => { console.log('play1') resolve(); }, 1000); }) } function play2() { return new Promise((resolve) => { setTimeout(() => { console.log('play2') resolve(); }, 1000); }) } async function start() { await play1(); await play2(); console.log('finish') }; start(); console => play1 play2 finish
## git 설정값 보기 $ git config --list ## git user정보 설정 $ git config --global user.name "myname" $ git config --global user.email "my@email.com" ## local 저장소 생성 $ git init ## local 저장소 삭제 $ rm -rf .git ## remote 저장소 설정 $ git remote add origin https://github.com/user/myproject.git ## local 저장소 현재상태 $ git status ## branch 확인 / 변경 $ git branch * master $ git branch -M main $ git branch * main ## remote ..