Skip to content

Instantly share code, notes, and snippets.

View ablyeom's full-sized avatar

AB ablyeom

  • Seoul, Republic of Korea
View GitHub Profile
@ablyeom
ablyeom / karabiner.json
Created February 21, 2018 05:31
My Complex Modifications
{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"parameters": {
@ablyeom
ablyeom / gtest-install.rst
Created January 24, 2017 06:59 — forked from massenz/gtest-install.rst
Describes how to install and run GTest, a Google framework to conduct unit testing in C++

Build and install Google Test

Download the latest (1.7.0) from Google Code (Q: where is it going to live, once GCode shuts down?)

Then follow the primer, but more to the point, the README (YMMV) Having installed CLion and cmake, this is how I built gtest:

brew install cmake
cd gtest-1.7.0
@ablyeom
ablyeom / Steps.md
Created October 12, 2016 06:20
Installing OpenCV using Homebrew

Currently(10/12/2016) installing on Sierra has many problems.

  1. Numpy Version, required 1.11.2, but brew install 1.11.1.
  2. QT, QTKit Problem. (actually I don't know how to solve this. so I'm using ffmepg.)

Steps

  1. Install with HEAD

    brew install opencv3 --with-contrib --with-ffmpeg --HEAD

  2. Make symbolic link to pkg-config directory.

@ablyeom
ablyeom / fix colum.sh
Last active December 25, 2015 15:50
OSX Finder에서 Column View를 Kind로 고정하기
# Finder Order by Kind
# Nlsv – List View
# icnv – Icon View
# clmv – Column View
# Flwv – Cover Flow View
echo "Always open everything in Finder's column view."
defaults write com.apple.Finder FXPreferredViewStyle clmv
# Desktop - Arrage by Kind
/usr/libexec/PlistBuddy -c "Delete :DesktopViewSettings:IconViewSettings:arrangeBy" ~/Library/Preferences/com.apple.finder.plist
[
{ "keys": ["f12"], "command": "htmlprettify"},
{ "keys": ["f1"], "command": "fold" },
{ "keys": ["f2"], "command": "unfold" },
{ "keys": ["ctrl+à"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
{ "keys": ["ctrl+!"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["ctrl+space"], "command": "auto_complete" },
{ "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
@ablyeom
ablyeom / Gemfile
Last active August 29, 2015 14:13 — forked from nebiros/Gemfile
group :production do
gem "unicorn"
end