get_cli 실행 에러
Flutter getx 패키를 사용하고 있는데, 그중에 모듈을 자동으로 생성해주는 get_cli 을 잘사용하고 있다. 그런데 어느날 갑자기 아래와 같은 에러가 나왔다. Synchronous waiting using dart:cli waitFor and C API Dart\_WaitForEvent is deprecated and disabled by default. This feature will be fully removed in Dart 3.4 release. You can currently still enable it by passing --enable\_deprecated\_wait\_for to the Dart VM. See [https://dartbug.com/52121.](https://dar..
개발/Dart & Flutter
2024. 3. 6. 09:41
대량의 파일들을 euc-kr 에서 utf-8로 바꿀 때
기억 저장용 예제는 대량의 csv 파일을 utf-8 로 바꾸는 shell script #!/bin/bash # ls -al *.csv 명령을 실행하여 csv 파일 목록을 가져온다. csv_files=`ls -1 *.csv` # for 문을 사용하여 csv 파일 목록을 하나씩 처리한다. for csv_file in $csv_files; do # iconv를 사용하여 csv 파일의 인코딩을 변환한다. iconv -c -f euc-kr -t utf-8 $csv_file > utf8/$csv_file done
개발/Etc
2023. 9. 11. 21:52
flutter 문제
보호되어 있는 글입니다.
보호글
2023. 8. 6. 00:55