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
| wpaAuduBfrfarwowoffS'warffl | |
| o-carAdwf | |
| fySwyaayAr.r | |
| prYahraprrhBycfvAfrffyKfhcyroBfwyrrfylpAfBfrAfwdwiqYrfwY-Bp.fhral-rw | |
| odrfvpomhrhAr. | |
| aruSuffhpraABvhphrSAYrrrooar | |
| .oAraRprhfyryrkoraryK,prhyrAwo.forfAroGBvvrwwfrBrB.SrfgwarpTfrwIf..rwhfrNulrBwrKro | |
| rBBa | |
| frfwraBarYrr.rhIShLflfvr'AArarhrrBlfwdrayBff?a'pwrpRrrofArWyvd.Bffhfr'vfa |
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
| flights O O | |
| from O O | |
| san B-fromloc.city_name B-fromloc.city_name | |
| diego I-fromloc.city_name I-fromloc.city_name | |
| to O O | |
| seattle B-toloc.city_name B-toloc.city_name | |
| i O O | |
| would O O | |
| like O O |
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
| The Superman! | |
| ANGELO: | |
| What us well, man | |
| And weep my heart whesteed to beon, | |
| To take answer a man's repabely, we can now, | |
| Refect deible pluptory advised selder, you | |
| come my patient's mildless of the injurate ardon, | |
| I'll march her our joubt: friend, father! thy good | |
| you kings! woe everies as if this? |
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
| " インタープリターの実行 | |
| autocmd BufNewFile,BufRead *.rb nnoremap <C-e> :!ruby % | |
| autocmd BufNewFile,BufRead *.py nnoremap <C-e> :!python % | |
| autocmd BufNewFile,BufRead *.pl nnoremap <C-e> :!perl % | |
| " 表示のカスタマイズ | |
| set number "行番号を表示する | |
| set title "編集中のファイル名を表示 | |
| set showmatch "括弧入力時の対応する括弧を表示 |
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
| $ brew intall clisp | |
| $ clisp [~] | |
| i i i i i i i ooooo o ooooooo ooooo ooooo | |
| I I I I I I I 8 8 8 8 8 o 8 8 | |
| I \ `+' / I 8 8 8 8 8 8 | |
| \ `-+-' / 8 8 8 ooooo 8oooo | |
| `-__|__-' 8 8 8 8 8 | |
| | 8 o 8 8 o 8 8 | |
| ------+------ ooooo 8oooooo ooo8ooo ooooo 8 |
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
| std::random_device rnd; // 非決定的な乱数生成器を生成 | |
| std::mt19937 mt(rnd()); | |
| std::uniform_int_distribution<> rand200to512(100, 512); | |
| int preprocess_type = rand200to512(mt) % 512; // intにしたい場合 |
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
| char* db_file_list_path = argv[2]; | |
| char* output_dir = argv[3]; | |
| vector<string> file_list; | |
| // trainリストのロード | |
| try { | |
| ifstream ifs; | |
| OpenFile(ifs, db_file_list_path); | |
| string readline; |
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
| // | |
| // multiplication.cpp | |
| // CplusplusPractice | |
| // | |
| // Created by masai on 2015/06/27. | |
| // Copyright (c) 2015年 masai. All rights reserved. | |
| // | |
| #include <iostream> |
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
| --- | |
| - hosts: all | |
| tasks: | |
| - name: install latest docker | |
| shell: curl -sSL https://get.docker.com/ubuntu/ | sudo sh | |
| - name: add vagrant user to docker group | |
| command: gpasswd -a vagrant docker | |
| sudo: yes |
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
| #vagrant provision [~/vagrant/ubunt1404] | |
| ==> default: Running provisioner: ansible... | |
| PYTHONUNBUFFERED=1 ANSIBLE_FORCE_COLOR=true ANSIBLE_HOST_KEY_CHECKING=false ANSIBLE_SSH_ARGS='-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s' ansible-playbook --private-key=/Users/masai/vagrant/ubunt1404/.vagrant/machines/default/virtualbox/private_key --user=vagrant --connection=ssh --limit='default' --inventory-file=/Users/masai/vagrant/ubunt1404/.vagrant/provisioners/ansible/inventory playbook.yml | |
| PLAY [all] ******************************************************************** | |
| GATHERING FACTS *************************************************************** | |
| ok: [default] | |
| TASK: [install latest docker] ************************************************* |