Skip to content

Instantly share code, notes, and snippets.

@motoraku
motoraku / How_to_use_Code_tag.txt
Created December 25, 2015 04:37
WordPress.com でソースコードを綺麗に表示 (codeタグ利用) : Show beautiful source code using Code tag
[code language="css"]
#button {
font-weight: bold;
border: 2px solid #fff;
}
[/code]
@motoraku
motoraku / Binary_To_Text.js
Last active December 25, 2015 13:07
バイナリファイルをテキストファイルへ変換 : Convert binary file to text file
WScript.Quit((function() {
// 入力ファイル名、出力ファイル名を受け取る
if(WScript.Arguments.length < 1) {
//WScript.Echo("args : (path) (out text file path)");
WScript.Echo("args : (path) (out text file path)");
return 1;
}
// ファイル読み込み
@motoraku
motoraku / Text_To_Binary.js
Created December 25, 2015 13:08
テキストファイルをバイナリファイルへ変換 : Convert text file to binary file
WScript.Quit((function() {
// 入力ファイル名、出力ファイル名を受け取る
if(WScript.Arguments.length < 1) {
//WScript.Echo("args : (text file path)");
return 1;
}
// ファイル読み込み
var ins = WScript.CreateObject('ADODB.Stream');