diff --git a/README.md b/README.md new file mode 100644 index 0000000..e564591 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +ライセンス +-------- +©2012 [@kou029w](http://twitter.com/kou029w) - [MIT license][MIT] + +[MIT]: http://kou029w.appspot.com/mit-license.txt \ No newline at end of file diff --git a/c/profile.c b/cpp/profile.c similarity index 100% rename from c/profile.c rename to cpp/profile.c diff --git a/javascript/deffftp.html b/javascript/deffftp.html new file mode 100644 index 0000000..b86c88f --- /dev/null +++ b/javascript/deffftp.html @@ -0,0 +1,41 @@ + + +FFFTPパスワード解読 + +

FFFTPパスワード解読

+ffftp.iniに書かれたパスワードを解読します。 +
+ + + +
+ \ No newline at end of file diff --git a/powershell/date.bat b/powershell/date.bat new file mode 100644 index 0000000..d2c2f83 --- /dev/null +++ b/powershell/date.bat @@ -0,0 +1,3 @@ +@echo off +set s=%0 +(more %s:bat=ps1% & echo;) | powershell -command - \ No newline at end of file diff --git a/powershell/date.ps1 b/powershell/date.ps1 new file mode 100644 index 0000000..2628f22 Binary files /dev/null and b/powershell/date.ps1 differ diff --git a/powershell/serialmonitor.ps1 b/powershell/serialmonitor.ps1 new file mode 100644 index 0000000..8a761c9 Binary files /dev/null and b/powershell/serialmonitor.ps1 differ diff --git a/shellscript/jtalk2.sh b/shellscript/jtalk2.sh new file mode 100644 index 0000000..21b2927 --- /dev/null +++ b/shellscript/jtalk2.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# 文字しゃべる君 2 +# 同じディレクトリにあるtalk.txtの内容を1行ごとに読み上げる +# * OS X only + +cd "${0%/*}" +ln=1 +while read -p "> " line; do + if [ "$line" = "" ]; then + line="`sed -n ${ln}p talk.txt`" + ((ln++)) + fi + echo "$line" + say "$line" +done \ No newline at end of file