리눅스에서 버전 확인 하기
커널 확인
배포판 정보 확인
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Python에서 bytes, bytearray 를 다룰 때 참고
Windows PC에서 endian을 지정하지 않고 했을 경우 => 네이티브로 판단하여 intel계열의 little-endian 으로 출력
Little-endian vs Big-endian
Python에서 아래와 같은 오류가 발생할 경우
A Bytes-Like Object Is Required, Not ‘Str'
bytes-likes 오브젝트가 필요하니 str 타입 말고 bytes 타입의 변수를 넣으라는 의미로 라이브러리등을 사용하다 보면 주로 발생하고 string type 과 bytes 타입은 아래와 같은 상관 관계가 있다.
str –> 디코딩 –> bytes
bytes –> 인코딩 –> str
프로젝트 생성 프로젝트를 생성하고자 하는 폴더에서 npx @react-native-community/cli init [ 프로젝트명 ] npx @react-native-community/cli init firstapp 해당 폴더에 [프로젝트명...