[기록용] 테스트 환경 macOS venture ios 16.3 xcode 14.3 개발자 계정에서 디바이스와 패키지 정보가 등록되어있어야함 [c#/unity] unity Universal SDK 사용시(SNS로그인) 맥+IOS에서 빌드하기 1.플러그인폴더 Assets/Plugin으로 이동 2.UniversalSDK framework 설정 변경 3.ios build setting 으로 이동하여 패키지명 기록 4.auto signing 체크 5.icon등록 6. Signing & Capabilities 이동 후 team 선택 7.권한 추가 할 거 있으면 info.plist에 등록 (ex) NSBluetoothPeripheralUsageDescription Bluetooth is used to communi..
[react/shell] react실행 시 포트바꾸기 [외부 쉘에서] export PORT=8000 && npm run start [package.json에서] "scripts": { "start": "set PORT=4444 && react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, #react #port #shell
[iOS/unity]빌드 시 Unity-iPhone.xcodeproj "Unity-iPhone" requires a provisioning profile. Select a provisioning profile in the Signing & Capabilities editor. 오류 othersetting -> Automatically sign 체크 #유니티 #ios
[javascript/typescript] backend nestjs + prisma 기본 세팅 backend를 다양하게 써보면서 제일 궁합 좋은 건 nestjs+prisma였다 nextjs도, typeorm도 아니었다. 적극 추천한다. https://nestjs.com/ NestJS - A progressive Node.js framework NestJS is a framework for building efficient, scalable Node.js web applications. It uses modern JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functio..
[aws/linux] mysql 도커로 설치 및 테스트 cat /etc/os-release -- 버전확인(AWS AMAZON LINUX) sudo yum update -y sudo yum install docker -- 도커 설치 sudo service docker start -- 사용자 추가 sudo usermod -a -G docker ${USER} sudo docker --version sudo docker pull mysql -- 도커 이미지 받기 sudo docker run --name sql -e MYSQL_ROOT_PASSWORD=root -d mysql -- mysql 설치 docker exec -it sql mysql -u root -p --기존에 돌고 있을 수 있으니 삭제 후 다시 실행..
유니티에서 블루투스 read/write 하기 기본적으로 유니티에서는 블루투스기능이 제공되지 않는다. 궁금한 사항은 메일과 댓글을 통해서 얼마든지 알려주면 공유해드리겠습니다. [에셋 설치 Bluetooth LE for iOS, tvOS and Android] https://assetstore.unity.com/packages/tools/network/bluetooth-le-for-ios-tvos-and-android-26661 Bluetooth LE for iOS, tvOS and Android | 네트워크 | Unity Asset Store Get the Bluetooth LE for iOS, tvOS and Android package from Shatalmic, llc and speed up your..
출저:https://rito15.github.io/posts/open-cmd-as-admin/ @echo off >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" if '%errorlevel%' NEQ '0' ( echo. goto UACPrompt ) else ( goto gotAdmin ) :UACPrompt echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" set params = %*:"="" echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "..