Skip to content

Instantly share code, notes, and snippets.

View kozo2's full-sized avatar

Kozo Nishida kozo2

View GitHub Profile
@kozo2
kozo2 / keymap.cson
Created April 10, 2015 04:18
keymap.cson
# 'atom-text-editor':
# 'enter': 'editor:newline'
#
# 'atom-workspace':
# 'ctrl-shift-p': 'core:move-up'
# 'ctrl-p': 'core:move-down'
'atom-text-editor.vim-mode:not(.command-mode)':
'ctrl-l': 'vim-mode:activate-command-mode'
@kozo2
kozo2 / beforeInstall.sh
Created May 20, 2015 04:16
ecell4 ubuntu vivid python3 dependencies
sudo apt install python3-pip cython3
@kozo2
kozo2 / README-en.md
Last active August 29, 2015 14:21
English readme for iron-maiden-cl

iron-maiden-cl

iron-maiden-cl is a powerful utility for keyboard customization. iron-maiden-cl supports

  • remapping sticky keys
  • remapping for each keyboard

Installation

@kozo2
kozo2 / vim_lua_build_linux.md
Last active January 22, 2016 00:00
building vim with lua extension
sudo apt install lua5.2 liblua5.2-dev
./configure --with-features=huge --enable-gui=gtk2 --enable-pythoninterp --enable-luainterp=dynamic
make
sudo make install

about make

@kozo2
kozo2 / tc_warnings.txt
Created May 31, 2015 03:58
tc warning log
Leaving directory `c:/Users/knishida/.emacs.d/elpa/async-20150529.529'
Compiling file c:/Users/knishida/.emacs.d/elpa/async-20150529.529/async-bytecomp.el at Sun May 31 12:54:01 2015
Entering directory `c:/Users/knishida/.emacs.d/elpa/async-20150529.529/'
Compiling file c:/Users/knishida/.emacs.d/elpa/async-20150529.529/async.el at Sun May 31 12:54:01 2015
Compiling file c:/Users/knishida/.emacs.d/elpa/async-20150529.529/dired-async.el at Sun May 31 12:54:01 2015
Compiling file c:/Users/knishida/.emacs.d/elpa/async-20150529.529/smtpmail-async.el at Sun May 31 12:54:01 2015
@kozo2
kozo2 / sublime_key.json
Created June 1, 2015 15:40
sublime key bindings
[
{ "keys": ["j", "j"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
}
]
@kozo2
kozo2 / log.txt
Last active August 29, 2015 14:22
ubuntu, 64bit, 14.04 LTS, R 3.2.0
> sessionInfo()
R version 3.2.0 (2015-04-16)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 14.04.2 LTS
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=ja_JP.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=ja_JP.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=ja_JP.UTF-8 LC_NAME=C
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kozo2
kozo2 / redpen-watchdogs.vim
Created June 27, 2015 09:37
watchdogs and redepen
let g:quickrun_config = {}
let g:quickrun_config["markdown/watchdogs_checker"] = {
\ "type" : "watchdogs_checker/redpen"
\}
let g:quickrun_config["watchdogs_checker/redpen"] = {
\ "command" : "redpen",
\ "exec" : "%c %s:p",
\}

Building Python Wheel (including C++ module)

Requirements (C++)

  • G++
  • GSL
  • Boost
  • HDF5(C++)

Requirements (Python)

  • Cython
  • Wheel