Skip to content

Instantly share code, notes, and snippets.

View dongbum's full-sized avatar
😄
Beat yesterday

DONGBUM, KIM dongbum

😄
Beat yesterday
View GitHub Profile
@dongbum
dongbum / KILL_PROCESS_FOR_LINUX
Last active October 31, 2017 01:34
특정 프로세스 KILL 스크립트 (for linux)
kill -9 `ps -ef | grep PROCESS_NAME | grep -v 'grep' | awk '{print $2}'`
@dongbum
dongbum / SVN_clear.bat
Created October 31, 2017 01:33
하드디스크에 존재하는 .svn 폴더를 모두 삭제하는 윈도우 스크립트
@FOR /R %1 %%1 IN (.svn) DO RMDIR /S /Q "%%1"
@PAUSE
@dongbum
dongbum / Change time zone on AWS
Last active November 2, 2017 05:24
aws 한국시간 변경
# 재시작 필수
$ sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
$ reboot
$ date
UPDATE wp_posts SET post_content = replace(post_content, 'lightsail.83rpm.com', 'blog.83rpm.com')
#include <iostream>
#include <memory>
template<typename T>
class A
{
public:
A(void) {};
static std::shared_ptr<A<T>> server_instance_;
@dongbum
dongbum / SimplePerformanceCheck.cpp
Last active January 2, 2024 14:28
함수의 실행시간을 측정할 수 있는 간단 코드
#include <iostream>
#include <chrono>
void Test(void)
{
// Test Source
}
int main(void)
{
@dongbum
dongbum / MemoryPool.cpp
Last active February 7, 2018 08:02
new/delete override for jemalloc
#pragma once
class MemoryPool
{
public:
MemoryPool(void) {}
virtual ~MemoryPool(void) {}
void* operator new(size_t size)
{
@dongbum
dongbum / Replace comment to space regexp
Last active December 7, 2018 09:25
Visual Studio에서 주석 한번에 삭제
//로 시작하는 주석 검색/삭제 (http://artwook.tistory.com/287)
//.*
/* */ 로 되어있는 주석 검색/삭제용
/\*[(\x00-\xff)|(ㄱ-ㅎ가-힣)]*?\*/
@dongbum
dongbum / Tail_on_python.py
Created January 4, 2019 06:59
Tail on python (without external library)
# https://stackoverflow.com/a/53121178/8793092
def follow(thefile):
while True:
line = thefile.readline()
if not line:
time.sleep(0.1)
continue
yield line

[공통] 마크다운 markdown 작성법

1. 마크다운에 관하여

1.1. 마크다운이란?

Markdown은 텍스트 기반의 마크업언어로 2004년 존그루버에 의해 만들어졌으며 쉽게 쓰고 읽을 수 있으며 HTML로 변환이 가능하다. 특수기호와 문자를 이용한 매우 간단한 구조의 문법을 사용하여 웹에서도 보다 빠르게 컨텐츠를 작성하고 보다 직관적으로 인식할 수 있다. 마크다운이 최근 각광받기 시작한 이유는 깃헙(https://github.com) 덕분이다. 깃헙의 저장소Repository에 관한 정보를 기록하는 README.md는 깃헙을 사용하는 사람이라면 누구나 가장 먼저 접하게 되는 마크다운 문서였다. 마크다운을 통해서 설치방법, 소스코드 설명, 이슈 등을 간단하게 기록하고 가독성을 높일 수 있다는 강점이 부각되면서 점점 여러 곳으로 퍼져가게 된다.

1.2. 마크다운의 장-단점

1.2.1. 장점