Recent Posts

#TIL #ExifTool 이미지에 지오태깅

less than 1 minute read

지오태깅이 안 되는 옛날 카메라를 사용하고 있다. GPS 로그는 Moves 앱을 사용해서 기록하고 Moves Export를 사용해서 GPX 포맷으로 저장한다.

#TIL MSYS2? MinGW?

1 minute read

MSYS2 refers to the libraries and programs that use the POSIX emulation layer (“msys2 runtime”, derived from Cygwin’s cygwin1.dll). It i...

#TIL #vim 찾기 이후 찾은 단 강조를 지우고 싶을 때

less than 1 minute read

* 키로 찾던가 아님 / 커맨드로 찾던가하면 일치하는 단어가 강조된다. 다음 찾기를 할 때까지 강조가 유지된다. 지우고 싶을 때면 /adfafddsaf 처럼 일치하는 단어가 없게 마구잡이로 넣어서 강조를 지웠다.

#TIL #xcode #vim 지원 플러그인 xvim

less than 1 minute read

Since Apple decided not to load 3rd party plugins, we have to make change to it. What we have to do overall is to re-codesign Xcode. This allows us to loa...

#TIL #git 이전 commit 쪼개기

less than 1 minute read

Start an interactive rebase with git rebase -i <commit>^, where <commit> is the commit you want to split. In fact, any commit range will ...

#TIL #unix #bash exec builtin command

less than 1 minute read

#!/bin/sh ... export PATH="node_modules/.bin:node_modules/hubot/node_modules/.bin:$PATH" exec node_modules/.bin/hubot --name “hubot" "$@...