분류 전체보기107 gitLab 서버 설치 관련 블로그 좋은 블로그가 있어서..향후 참고하기 위한 기록 https://blog.lael.be/post/5476 나만의 GIT 서버를 구축하고 프로젝트에 적용하는 방법 (gitlab 설치 구축) 이 글에서는 GIT 버전관리 시스템을 구축하고 프로젝트에 도입하는 방법에 대해 설명한다. 먼저 GIT 이란 [깃-] 이라고 읽으며, 버전관리 시스템 중 하나이다. 몇년전부터 기존의 버전관리 시스템 표준(레거시 표준)인 SVN 을 대체하고 대세로 자리매김 하고 있다. 따라서 최신의 개발자/기획자/디자이너/퍼블리셔 라면 이 GIT의 역할과 사… blog.lael.be Git 호스팅 비교 블로그 https://m.blog.naver.com/dlwhdgur20/221006619001 Git 호스팅 3대장 가성비 비교 Git 호스.. 2020. 2. 12. C #에서 싱글 톤 패턴 구현 C# 싱글 톤 패턴 유형별 설명이 잘되어 있는 사이트를 링크한다. https://csharpindepth.com/articles/singleton Implementing the Singleton Pattern in C# Implementing the Singleton Pattern in C# Table of contents (for linking purposes...) The singleton pattern is one of the best-known patterns in software engineering. Essentially, a singleton is a class which only allows a single instance of itself to be cr csharpindepth.com 2020. 1. 17. Python Transmission RPC 문서 https://pythonhosted.org/transmissionrpc/index.html Transmission RPC — Transmission RPC 0.11 documentation A note about debugging information If you ever need to see what’s going on inside transmissionrpc, you can change the logging level of transmissionrpc. This is done with these easy steps >>> import logging >>> logging.getLogger('transmissionrpc').setLevel( pythonhosted.org 2019. 12. 15. Python 파일 사이즈 확인 파이썬 파일 사이즈 확인하는 방법 os.path.getsize()를 사용하여 파일 용량(bytes) 확인 가능 import os path = '파일 경로' os.path.getsize(path) https://docs.python.org/3/library/os.path.html#os.path.getsize os.path — Common pathname manipulations — Python 3.8.1rc1 documentation os.path — Common pathname manipulations Source code: Lib/posixpath.py (for POSIX) and Lib/ntpath.py (for Windows NT). This module implements some useful f.. 2019. 12. 15. 이전 1 ··· 18 19 20 21 22 23 24 ··· 27 다음