Linux Tmux / Vim Tmux Upgrade 1.8 to 2.0 (Ubuntu 14.04) sudo apt-get update sudo apt-get install -y python-software-properties software-properties-common sudo add-apt-repository -y ppa:pi-rho/dev sudo apt-get update sudo apt-get install -y tmux=2.0-1~ppa1~t now if you do tmux -V it should show tmux 2.0 which Keun.R 3 min read 2018.12
Linux 고스트 블로그 셋팅 Theme 이미지에 Alt 문구 추가하기 post.hbs <script type="text/javascript"> $(document).ready(function(){ var contentM = $('.kg-card-markdown p'); contentM.each(function(){ console.log() if (!$(this).find('img').length == 1) { return } else { var alt = $(this).find('img').attr('alt' Keun.R 2 min read 2018.12
Dev Python 주요 함수 BackgroundScheduler 'inteval' 'cron' 'date' sched.add_job(function, 'date', run_date='2018-01-01 11:00:00', timezone="Asia/Seoul") #시간설정 참고 sched.add_job(get_data, 'cron', day_of_week='mon-sun', hour='0,1, Keun.R 2 min read 2018.12
Win Windows Tip AutoHotkey (윈도우 환경) 업무 효율화에 있어 굉장히 매력적인 툴. 탐색기 팝업메뉴 제거 Adobe Bridge ways to remove the "Browse in Adobe Bridge" option from the context menu. 1. Open the "Run…" box. This can be accessed from the Start Menu or by holding down the Windows Keun.R 1 min read 2018.12
Review 키보드에 관한 고찰 1. 해피해킹 Type-S * 일명 HHKB. PFU라는 곳에서 개발하고, 후지쯔에서 생산하는 고급 키보드. 정전 용량 무접점방식의 키보드. 멤브레인 키보드보다 키감이 좋고 수명이 길다. * 키감 : 키보드를 치는 맛이 끝내준다. 게다가 조용하다. 기계식과는 비교할 수 없는. 처음 접했던 키감에 대한 문구가 구름위를 걷는 느낌이라고 했는데, 과연 좋은 표현이다. 키보드 끝판왕. * 키배열 : 키배열이 다소 Keun.R 5 min read 2018.12
Dev VBA Function import hashlib import base64 def hash_function(value: str) -> str: # 클라이언트와 동일한 방식으로 해시화하는 함수 sha512 = hashlib.sha512() sha512.update(value.encode('utf-8')) return base64.b64encode(sha512.digest()).decode('utf-8') hash_function('...') 자주쓰는 코드 '작업속도 상승 With Application .ScreenUpdating = False .EnableEvents Keun.R 15 min read 2018.08
Review YouTube - Scrab Originals The surprising habits of original thinkers | Adam Grant - 2018.07.26(목) * 성공하는 사람들의 습관 Procrastinator Inside the mind of a master procrastinator | Tim Urban - 2018.07.30(월) JYP speech JYP 2.0 박진영의 스피치 - 2018.07.31(화) Steve Jobs 스티브잡스가 말하는 자신의 성공 Keun.R 2 min read 2018.07
Linux How To Install MongoDB on Ubuntu 14.04 Introduction MongoDB is a free and open-source NoSQL document database used commonly in modern web applications. This tutorial will help you set up MongoDB on your server for a production application environment. Note: MongoDB can be installed automatically on your Droplet by adding this script to its User Data when Keun.R 2 min read 2018.02
Node.js Node.js 설치하기 1. CURL 설치 $ sudo apt-get install build-essential 2. PPA 추가 $ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - 3. NodeJS 설치 $ sudo apt-get install -y nodejs 4. build-essential 설치 $ sudo apt-get install build-essential MongoDB $ mkdir data $ echo 'mongod --bind_ip=$IP Keun.R 1 min read 2018.02