#見出し #見出し1 ##見出し2 ##見出し3
#見出し1 ##見出し2 ##見出し3
#見出し #見出し1 ##見出し2 ##見出し3
#見出し1 ##見出し2 ##見出し3
0x80300001 このディスクにWindowsをインストールすることはできません。選択されたディスクにはMBRパーティションがあります。EFIシステムでは、GPTディスクのみにWindowsをインストールできます。
shift + f10
でコマンドプロンプトが立ち上がる。
diskpart
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| my @board = (); | |
| solve(0); | |
| sub solve { | |
| my ($num) = @_; |
| user_shokuzai | |
| { | |
| user_id: int, | |
| shokuzai_id: int, | |
| comment: comment | |
| } | |
| shokuzai_master | |
| { |
#apache pig basic memo
##LOAD hdfsなどのファイルシステムからデータを読み込む。 このようなデータに対してLOADすると、
$ cat myfile.txt
1 2 3
4 2 1
| # | |
| # .screenrc - GNU screen user configuration file | |
| # | |
| # $Id: .screenrc 190 2010-04-17 07:54:54Z yoshikaw $ | |
| # | |
| # @see http://www.informatik.uni-hamburg.de/RZ/software/screen/screen_toc.html | |
| # @see http://www.limy.org/program/screen_command.html | |
| # | |
| # Escape key is C-t, literal is a. |
#How to install my-boxen
install Xcode & create github account.
create /opt/boxen
sudo mkdir -p /opt/boxen
sudo chown $USER:admin /opt/boxen
こういうときは、、
$ git commit
error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.
こうして core.editor に /usr/bin/vim を指定するとOK
git config --global core.editor "/usr/bin/vim"