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..
설치 1. 개발자라면 누구나 가지고 있는 개인 서버에 cups 를 설치 # cups install apt install cups # setting cups vim /etc/cups/cupsd.conf 2. 접속하기 localhost:631 3. 프린터 설치 및 공유 프린터로 지정하기 고생했던 부분 localhost:631/admin 접근 권한 # 리눅스 접속 를 cups 그룹에 넣기 sudo usermod -aG lpadmin 위 명령어를 입력하면 리눅스의 의 계정의 아이디와 비밀번호로 관리자 로그인 가능

기억 저장용 예제는 대량의 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
보호되어 있는 글입니다.