일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Digital Ocean
- critical rendering path
- Unity Editor
- express
- server
- java
- mongoDB
- Camera Zoom
- docker
- css framework
- Unity IAP
- Spring Boot
- Packet Network
- Camera Movement
- rpg server
- screencapture
- react
- SDK upgrade
- Google Developer API
- OverTheWire
- Google Refund
- draganddrop
- nodejs
- springboot
- spread 연산자
- --watch
- MySQL
- linux
- Git
- unity
- Today
- Total
목록분류 전체보기 (101)
우당탕탕 개발일지
일반적으로 root@localhost 에게는 mysql에 대해 모든 권한 이있지만, Docker에서 원격으로 db에 접속하게 될 경우 root@접속한 ip 로 접속하게된다. 그런데 이에대한 접근권한이 주어지지 않았을 경우 access denied 가 발생한다. 이럴땐 docker container 안에 직접 들어가서 (localhost , 권한이 있는 계정으로 )모든 권한을 부여하고 나오면 된다. #여기는 host docker exec -it /bin/bash #cotainer 실행 #container에 들어왔음. mysql 에 접속 mysql -uroot -p #mysql 에 접속 #mysql 상에서 모든 계정에 권한을 부여 GRANT ALL PRIVILEGES on *.* TO 'root'@'%' W..
개발환경 : macos docker 홈페이지에서 docker desktop download. 다운로드 후 터미널에서 docker --version 명령어를 통해 정상적으로 다운받아졌는지 확인이 가능하다. https://www.docker.com/products/docker-desktop/ Download Docker Desktop | Docker Docker Desktop is available to download for free on Mac, Windows, or Linux operating systems. Get started with Docker today! www.docker.com MySQL docker image 다운로드 docker pull mysql docker pull mysql:8.0..
깃 레포지토리 연결하기 우선 깃허브에서 레포지토리를 생성한다. 로컬컴퓨터 내 업로드를 원하는 폴더에 가서 gitbash 를 오픈한다. 최초 커밋 시 git init git remote add origin git add . #현재 디렉토리에서 변경된 것 모두 적용 git commit -m "first commit" git branch -M main #main 이라는 branch 생성 (이건 맨최초만) git push -u origin main #main 브랜치로 푸쉬함. git push -u origin main 에서 -u 옵션은 **-set-upstream**의 약어입니다. 이 옵션은 로컬 브랜치를 원격 브랜치에 연결하는 역할을 합니다. 만약 로컬 브랜치에서 처음으로 push를 실행하는 경우, -u 옵션..
2023/07/05 아파치 소프트웨어에서 엑셀파일을 다룰 수 있도록 만든 라이브러리 이다. 우선 라이브러리를 다운로드 (bin 으로 다운받아야함) 링크 ; https://poi.apache.org/devel/
LDPlayer 에서만 게임이 느리거나 끊기는 현상 PlayerSetting > Resolution and Presentation> Optimized Frame Pacing 이 기본적으로 활성화되어있는데, 이를 해제하면 LDPlayer에서 빨라진다고한다. 또, 화면 비율을 고정하면 더 좋다. DPI 설정하기 핸드폰 사양이 좋지 않을 경우 해상도 문제 때문에 튕기는 일이 잦다. ProjectSettings>Player>Resolution and Presentation>Resolution Scaling 에서 Scaling mode를 Fixed DPI 로 설정하고 300정도로 놓으면 사양이 좋지 않은 디바이스에서도 그럭저럭 돌아간다. dpi가 낮을수록 해상도가 깨지고, 높을수록 해상도가 높은대신 디바이스 진입..