아래와 같이 configparser를 사용하면 된다. configparser에서 에러가 발생하면 pip install configparser로 모듈을 설치해 주어야 한다. import configparser import sys config = configparser.ConfigParser() config.read('./slack.ini') toggle = config['SETTING']['SEND_SLACK'] print(toggle) if int(toggle) == 0: print('종료합니다') sys.exit(0) #슬랙으로 메세지를 보내는 작업
//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 10까지 가능합니다. 4 이면 1000 에서 9999 사이의 랜덤 숫자 function get_rand_number($len=4) { $len = abs((int)$len); if ($len else if ($len > 10) $len = 10; return rand(pow(10, $len - 1), (pow(10, $len) - 1)); } //넘어온 세자리수를 36진수로 변환해서 반환합니다. preg_match_callback 을 통해서만 사용됩니다. function get_simple_36($m){ $str = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'; $div = floor(..
public class BmpLoader { public struct BMPHeader { public short type; public int size; public short reserved1; public short reserved2; public int offset; } public struct BMPInfoHeader { public int size; public int width; public int height; public short planes; public short bitsPerPixel; public uint compression; public uint imageSize; public int xPelsPerMeter; public int yPelsPerMeter; public int..
GC의 reachability를 판단할때는 다음과 같은 GC root 노드를 기준으로 판단한다. 그 GC root에 해당하는 것들은 다음과 같은 것이 있다. The so-called GC (Garbage Collector) roots are objects special for garbage collector. Garbage collector collects those objects that are not GC roots and are not accessible by references from GC roots. There are several kinds of GC roots. One object can belong to more than one kind of root. The root kinds are:..
I 프레임 - Infra Frame 의 약자로, 쉽게 말해 키 프레임 입니다. 이것은 JPEG 같은 방식으로 소스로부터 직접 압축되어 온 전체 그림이죠. 가장 화질도 좋지만 가장 용량도 큽니다. P 프레임 - Previous 또는 Predicted Frame 이라 불리며, 이전에 나온 키 프레임의 정보를 바탕으로 구성된 프레임 입니다. 화질/용량 둘 다 중간급입니다.B 프레임 - Bidirectional Frame 의 약자로, 전후의 I/P 프레임의 정보를 바탕으로 구성된 프레임 입니다. 화질/용량이 다 최하급입니다. http://egloos.zum.com/shiyoul/v/4360145
- Total
- Today
- Yesterday