[ PHOTOSHOP ] 최근 오픈 파일 노출하지 않기 편집 -> 환경설정 -> 파일 처리 -> 최근에 사용한 파일 목록 0파일 Team/TOOLS HEON.D 2021.11.03
EACCES: permission denied 문제 해결 https://mxnr.net/elastic-beanstalk-sass/ Elastic Beanstalk Amazon Linux 2 issue Recently I run into a problem during initial deployment to one of our EB stacks (Build: Node.js 12 running on 64bit Amazon Linux 2/5.2.4). I found something like this in the logs and was completely confused; why deployer doesn't have enough permissions? Fa mxnr.net https://brtech.tistory.com/124 Error: EACCES: permis.. Team/난감했던 이슈들 HEON.D 2021.10.28
[ FLUTTER ] CocoaPods 오류 sudo gem uninstall cocoapods sudo gem install cocoapods https://smilehugo.tistory.com/entry/cocoapods-installed-but-not-initialized CocoaPods 설치한 후 초기화가 안될 때 (Flutter MacOS 셋업) Flutter(1.9.1+hotflix.2)를 맥OS에 설치를 할때 CocoaPods 설치한 후 초기화(Initialize)를 실행하면 아무런 표시가 안뜨는 것을 확인할 수 있고 flutter doctor를 실행해서 현재 flutter 셋업 상태를 확인할 때,.. smilehugo.tistory.com Team/난감했던 이슈들 거북 2021.10.26
[ FLUTTER ] flutter doctor -> Android toolchain 오류 *오류 화면 *원인 AndroidSDK 버전이 개발환경의 버전과 달라서 나타나는 오류. *해결방법 1. $ flutter doctor --android-licenses 입력 2. 만약 sdkmanager를 찾을 수 없다고 나오면 AndroidStudio 프로그램에서 sdkmanager 클릭. 3. 체크상태 확인 후 터미널에서 $ flutter doctor --android-licenses 입력 *결과 화면 Team/난감했던 이슈들 거북 2021.10.02
[ FLUTTER ] GridView 고정높이 주는 방법 ㅁhttps://github.com/flutter/flutter/issues/55290 Change height of GridView row to fixed height · Issue #55290 · flutter/flutter I've noticed that GridView makes each child a square.. I know we can change dynamically height of grid view row by setting childAspectRatio. That however doesn't make it fixed so when the d... github.com * 선언부 class SliverGridDelegateWithFixedCrossAxisCountAndFixedHeigh.. Team/난감했던 이슈들 거북 2021.09.17
[ VUE ] IE 11 에서 Vue 화면이 정상적으로 보이지 않는 경우 1. Babel 과 polyfill 사용 2. 메소드 표현방식 ES6 이하 로 선언 Team/난감했던 이슈들 HEON.D 2021.09.03
[ FLUTTER ] iOS 빌드시 앱이 종료되는 현상 iOS 모바일기기 연결 후 터미널 - fvm flutter run 명령어 수행시 Error launching application on iPhone. 에러를 일으키면서 앱이 종료되는 현상 발생. 원인: iOS 13.3.1버전부터 해당 증상이 발생됨 해결방법: iOS 13.4 이상의 버전으로 업데이트하여 구동 참고 : https://tylergrey.github.io/2020/03/ios_13.3_build_error/ Team/난감했던 이슈들 거북 2021.05.31
[ VSCODE ] 불필요한 파일 숨김처리 setting.json 에 다음과 같이 설정한다. "files.exclude": { "**/.pyc": { "when": "$(basename).py"}, "**/__pycache__": true, "**/.DS_Store": true }, "window.zoomLevel": 0 필요한 목록들을 계속 추가해 나갈 수 있다. Team/TOOLS HEON.D 2021.05.08