[ Flutter ] game engine https://www.dunebook.com/best-flutter-game-engine/ App/Flutter HEON.D 2022.08.22
[ JAVASCRIPT ] console 유형 console.table() console.log() console.debug() console.dir() 카테고리 없음 HEON.D 2022.08.22
[ LINUX ] node version update https://askubuntu.com/questions/426750/how-can-i-update-my-nodejs-to-the-latest-version How can I update my nodeJS to the latest version? I have installed nodeJS on Ubuntu with following code sudo apt-get install nodejs Since I am a new user for ubuntu I also ran this code too sudo apt-get install npm Now when I type nodejs -- askubuntu.com BE/Linux HEON.D 2022.08.19
[ AWS ] S3 퍼블릭 버킷 설정 { "Version": "2022-08-18", "Statement": [ { "Sid": "AddPerm", "Effect": "Allow", "Principal": "*", "Action": "s3:GetObject", "Resource": "arn:aws:s3:::버킷명/*" } ] } BE/AWS HEON.D 2022.08.18
[ GIT ] git rebase git rebase -i hash pick -> edit git commit --amend --author="name " git rebase --continue git push origin -f master Team/GIT HEON.D 2022.08.14
[ FLUTTER ] 구글 애널리틱스 연동 - 안드로이드 참고 자료 https://firebase.google.com/docs/flutter/setup?platform=ios Flutter 앱에 Firebase 추가 Google은 흑인 공동체를 위한 인종적 평등을 추구하기 위해 노력하고 있습니다. 자세히 알아보기 의견 보내기 Flutter 앱에 Firebase 추가 plat_ios plat_android plat_web iOS+ Android 웹 기본 요건 아직 Flutter 앱 firebase.google.com https://firebase.google.com/docs/android/setup Android 프로젝트에 Firebase 추가 | Firebase 문서 Google I/O 2022에서 Firebase의 새로운 기능을 확인하세요. 자세히 알아보기 .. App/Flutter 거북 2022.08.11
[ FLUTTER ] 모르고 지나칠 수 있는 주석 사용 간단팁 이런 형태로 코드를 짜다보면 어느순간 특정 코드에 대해서 어떤 동작을 하는 코드인지 헷갈릴 때가 종종 발생하곤 하는데요 /// 주석을 사용한다면 커서를 위치했을 때 어떤 정보인지 쉽게 확인할 수 있습니다. App/Flutter 거북 2022.08.10