전체 글340 sqlalchemy / 몇 가지... SQLAlchemy SQLAlchemy.Model.query.order_by(User.id).all() SQLAlchemy.Model.query.filter().all() SQLAlchemy.Model.query.all() SQLAlchemy.Model.query.get() SQLAlchemy.Model.query.filter(SQLAlchemy.Model.column.like('%%')).all() SQLAlchemy.Model.session.delete() SQLAlchemy.Model.session.add() SQLAlchemy.Model.session.commit() 2022. 2. 26. 파이썬 가짜 데이타 from faker import Faker faker = Faker("ko_KR") faker.name() faker.name_female() faker.name_male() faker.country() faker.postcode() faker.company() faker.address() faker.city() faker.phone_number() faker.job() faker.email() faker.user_name() faker.uri() faker.text() faker.word() faker.ipv4() faker.ipv4_private() faker.color_name() faker.date() faker.credit_card_full() faker.street_address() faker.. 2022. 2. 26. 계정 관리 useradd / userdel / usergroups / usermod / passwd /etc/login.defs /etc/default/useradd /etc/adduser.conf 등등의 파일 참고 각 계정에는 primary group과 supplementary group이 있는듯 하다. (파일/디렉토리 생성시 primary group의 권한을 가지고 생성된다) -g : (gid) primary group (변경만 가능) -G : (group) 보조 그룹 목록 (변경 & 추가 가능) groupadd / groupdel / gpasswd gpasswd -a account group -d 소유권은 파일이나 디렉토리를 생성한 사용자에 대한 것이고 권한은 파일이나 디렉토리가 다른 사람의 접근을 어떻게 할.. 2021. 12. 11. 로깅 라이브러리 https://softworld.tistory.com/61 - C https://github.com/gabime/spdlog - C++ https://woochan-dev.tistory.com/9 - android https://yhzion.tistory.com/10 - java https://nowonbun.tistory.com/568 - java https://python-guide-kr.readthedocs.io/ko/latest/writing/logging.htm - python 2021. 12. 6. 이전 1 2 3 4 5 6 ··· 85 다음