javascript:Q='';x=document;y=window;if(x.selection){Q+=x.selection.createRange().text;}else if(y.getSelection){Q+=y.getSelection();}else if(x.getSelection){Q+=x.getSelection();}w=window.open('','_blank','width=600,height=250');f=w.document.createElement('form');f.setAttribute('action','<?echo Utilities::buildUrl(true);?>/bookmarkletPage.php?logtext='+escape(Q)+'&loglink='+escape(x.location.href)+'&logtitle='+escape(x.title));f.setAttribute('method','POST');i=w.document.createElement('input');i.setAttribute('type','hidden');i.setAttribute('name','ihtml');i.setAttribute('value',encodeURIComponent(x.documentElement.innerHTML));f.appendChild(i);w.document.documentElement.appendChild(f);w.focus();f.submit();"
03/27: TCP/IP エラー処理 connect 編
03/13: Linux > Shell scrip
if 文と test コマンド - UNIX & Linux コマンド・シェルスクリプト リファレンス
-o = OR
-a = AND
-f = if the file is normal then true
-e = if the file exists then true
$ false
$ echo $?
1
-o = OR
-a = AND
-f = if the file is normal then true
-e = if the file exists then true
$ false
$ echo $?
1
03/12: Ruby > .Net ironruby
03/11: Python > file open write
Python: テキストファイルに書き込み - write()、writelines()メソッド - Yukun
09.f = open('text.txt', 'w') # 書き込みモードで開く
10.f.write(str) # 引数の文字列をファイルに書き込む
11.f.close() # ファイルを閉じる
convert dict to str = str(dict)
format dict = import ppritn; pprint.pformat(dict)
09.f = open('text.txt', 'w') # 書き込みモードで開く
10.f.write(str) # 引数の文字列をファイルに書き込む
11.f.close() # ファイルを閉じる
convert dict to str = str(dict)
format dict = import ppritn; pprint.pformat(dict)
03/03: Linux > checking port
03/02: Windows > command
スーパーユーザーのためのWindowsコマンド再入門:findstr――正規表現を使った検索 - ITmedia エンタープライズ
netstat -p TCP -n | findstr xxx.xxx.xxx.xxx
fc――ファイルの比較
netstat -p TCP -n | findstr xxx.xxx.xxx.xxx
fc――ファイルの比較