본문 바로가기

전체 글125

image byte 데이터 <-> numpy string 인터넷 스트림으로 이미지를 전송할 경우 이미지 데이터는 string 형식으로 변환해야 한다.import numpy as np import base64 import sys def base64_encode_image(a):     # base64 encode the input NumPy array     return base64.b64encode(a).decode("utf-8") def base64_decode_image(a, dtype, shape):     # if this is Python 3, we need the extra step of encoding the     # serialized NumPy string as a byte object     if sys.version_info.major =.. 2024. 4. 29.
head / tail headhead dmesg.log텍스트 화일의 첫머리 부분 10라인을 표시head -n 3 dmesg.log텍스트 화일의 첫머리 부분 3라인을 표시  tailtail dmesg.log텍스트 화일의 끝에서부터 10라인을 표시tail -n 3 dmesg.log텍스트 화일의 끝에서부터  3라인을 표시 head dmesg.log | tail -n 2첫부분 10라인 마지막 2라인 2024. 4. 27.
pushd / popd pushd디렉토리를 스택에 저장하고 이동dirs -v 를 통해 저장된 디렉토리 리스트를 확인 popdpushd로 저장한 디렉토리에서 맨 마지막 디렉토리를 꺼내고 이동 2024. 4. 27.
whoami / history / date whoami현재의 유저명을 표시sudo su -> super user(=root) 로 전환exit -> su 로부터 탈피 history실행했던 명령어 리스틀 표시!번호 -> 명령의 단축키 date로컬 타임 2024. 4. 27.
Idioms 5개 1. 행동이 앞서다. 옛날 총소리로 출발신호를 알리기 전에 먼전 출발하는 것에 유래. Don't jump the gun! Wait for me! 앞서가지 말고 날 기다려! You jumped the gun. You should have waited for me. 너무 앞서 갔다구! 날 기다려야 했어. 2. 개운치 않게 잠에서 깨다. 찌푸둥 하다. 3. (면접, 첫인사, 미팅등) 좋은 인상을 주려 최상의 자신을 표현하다. 4. 어려운 상황이 닥쳤을때 최선을 다하다. 복싱에서 상대방의 펀치를 살짝 비켜 충격을 최소하는 것에 유래. 5. 여유를 가져라. 1960년대 골프선수의 자서전에서 유래. You need to stop and smell the roses. You're working too much. 2024. 4. 16.
미용실 영어 What are we doing with your hair today? 머리 어떻게 해 드릴까요? Well I want it more blonde. 좀 더 금발로 하고 싶네요. Okay, do you want a full dye or just highlights? 풀염색, 부분염색? I think just highlights and to cover my roots. 부분염색으로 가르마도 물들여 주세요. Would you like a haircut as well? 머리도 자르실까요? Just trim the ends. = You want a trim. 끝을 다듬어 주세요. Do you want me to cut your bangs as well? 앞머리도 짜를까요? You want to grow out y.. 2024. 4. 16.