This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NeoBundle "osyo-manga/unite-quickfix.git" | |
" ------ unite-quickfix ------ | |
command UniteQuickFix Unite -no-quit -vertical -winwidth=40 -max-multi-lines=1 quickfix | |
function! s:open_quickfix_with_ggrep(...) | |
let _ = join(a:000, " ") | |
execute ":Ggrep "._ | redraw! | |
if (len(getqflist()) > 0) | |
execute ":UniteQuickFix" | |
endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NeoBundle 'rhysd/vim-clang-format' | |
NeoBundle 'Shougo/vimproc' | |
NeoBundle 'itchyny/lightline.vim' | |
NeoBundle "thinca/vim-quickrun" | |
NeoBundle "osyo-manga/shabadou.vim" | |
NeoBundle "osyo-manga/vim-watchdogs" | |
NeoBundle "jceb/vim-hier" | |
NeoBundle "yonchu/quickfixstatus" | |
" :WatchdogsRun後にlightline.vimを更新 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PREFIX="from now" | |
MESSAGE="[${PREFIX}] `date +\"%Y/%m/%d %T\"`" | |
get_amend() { | |
if [ -z `git log --pretty=oneline -1 | cut -d " " -f 2- | grep "^\[${PREFIX}]"` ] | |
then | |
return 1 | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# require package : inotify-tools | |
exclude=(--exclude \~ --exclude \.swp --exclude \.git/) | |
events=(-e CREATE -e MODIFY -e MOVED_TO -e DELETE) | |
if [ $# -eq 0 ]; then | |
echo 'start polling' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vi互換オフ | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Result = OCamlet_test_result | |
module Unit_test = OCamlet_test | |
include Unit_test.Test_poly | |
include Unit_test.Test_exn | |
let run_test_case c = | |
let open Result in | |
let result_unit x y = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.application.Application; | |
import javafx.application.Platform; | |
import javafx.event.ActionEvent; | |
import javafx.event.EventHandler; | |
import javafx.stage.Stage; | |
import javafx.scene.Scene; | |
import javafx.scene.control.TextField; | |
import javafx.scene.layout.VBox; | |
import javafx.scene.control.TextArea; | |
import javafx.scene.control.Button; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.application.Application; | |
import javafx.event.ActionEvent; | |
import javafx.event.EventHandler; | |
import javafx.stage.Stage; | |
import javafx.scene.Scene; | |
import javafx.scene.control.TextField; | |
import javafx.scene.layout.VBox; | |
import javafx.scene.control.TextArea; | |
import javafx.scene.control.Button; | |
import javafx.scene.layout.HBox; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.application.Application; | |
import javafx.event.ActionEvent; | |
import javafx.event.EventHandler; | |
import javafx.stage.Stage; | |
import javafx.scene.Scene; | |
import javafx.scene.control.TextField; | |
import javafx.scene.layout.VBox; | |
import javafx.scene.control.TextArea; | |
import javafx.scene.control.Button; | |
import javafx.scene.layout.HBox; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.application.Application; | |
import javafx.stage.Stage; | |
import javafx.scene.Scene; | |
import javafx.scene.control.TextField; | |
import javafx.scene.layout.VBox; | |
import javafx.scene.control.TextArea; | |
import javafx.scene.control.Button; | |
import javafx.scene.layout.HBox; | |
public class JavaFXMemo extends Application { |