❑ REST(Representational State Transfer)
❍ Communication way of client↔server.클라이언트↔서버의 통신 방식.
❍ An architecture style (type) for the purpose of communication using URI and HTTP.URI와 HTTP를 이용한 통신 목적의 아키텍처 스타일(유형).
* URI(Uniform Resource Identifier): Name for identifying resources such as pictures, documents and videos.그림, 영상 등의 자원 식별용 이름.
* Architecture · · ·
June 10, 2020
May 02, 2020
September 02, 2019
How to check each memory address
Let's check the address of the text, data, BSS, heap, libc, and stack memory addresses with C code.
C 코드를 통해 Text, data, BSS, heap, libc, stack 메모리 영역의 주소를 확인한다.
// < check.c >
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
void aFunc() {
printf("Function called");
}
char *global1 · · ·
July 01, 2019

How to create HTTP request message(crawling) using Python
#-*- coding: utf-8 -*-
import sys
import os
import ssl
from socket import *
def main(argv):
rstCrawl = crawl("news.naver.com", 443, "/main/main.nhn", "?mode=LSD&mid=shm&sid1=102")
# os.system("Pause")
def crawl(dHost, target_port="80", path="/", paramGET=""):
· · ·
June 21, 2019

How to use python pdb
❑ pdb: The Python debugger. 파이썬 디버거.
❑ How to debug.
01. Command line style. 커맨드 라인 방식.
python -m pdb [program.py]
02. Python code style. 파이썬 코드 방식.
import pdb
pdb.set_trace()
# Place this code in the position you want to stop. But it is not recognized as a breakpoint.
# 중단하고 싶은 위치에 이코드를 넣는다. 하지만 브레이크포인트로 · · ·
January 12, 2019
Dark web, deep web, surface web
❑ Dark web: The cyberspace accessible only through specific software or authentication.
다크 웹: 특정 소프트웨어나 인증을 통해서만 접근할 수 있는 사이버 공간.
❑ Deep web: The cyberspace that search engines such as Google can not access. It is a superordinate concept including Dart web.
딥 웹: 구글 등 검색 엔진이 접근할 수 없는 사이버 공간. 다크 웹을 포함하는 상위개념.
❑ Surface web: The cyberspace · · ·
December 30, 2018
RDBMS meta-data
❑ Meta-data: The data to describe the data in the DB.
메타데이터: DB의 데이터를 설명하기 위한 데이터.
❑ MySQL, PostgreSQL: INFORMATION_SCHEMA(DB format. DB 형태.)
INFORMATION_SCHEMA.COLUMNS
PropertyData typeDescription
COLUMN_NAMEvarchar(64)The column's name.
칼럼의 이름.
TABLE_NAMEvarchar(64)The table's name to which the column belongs.
칼럼이 속해있는 테이블의 이름.
TABLE_SCHEMAvarchar(64)The · · ·
Subscribe to:
Posts (Atom)