GifVJ
これがクールだったのでどうにかこれを JavaScript で作れないか頑張ってみた(頑張ってる途中)
Burrn!
ランダムで GIF アニメを全画面表示
Enter で再生/停止
#!/usr/bin/env python | |
# with help and inspiration from | |
# * ASN1_generate_nconf(3) (specifically the SubjectPublicKeyInfo structure) | |
# * http://www.sysmic.org/dotclear/index.php?post/2010/03/24/Convert-keys-betweens-GnuPG%2C-OpenSsh-and-OpenSSL | |
# * http://blog.oddbit.com/2011/05/converting-openssh-public-keys.html | |
import sys | |
import base64 | |
import struct |
#!/usr/bin/perl | |
# "pflog" enhancement for parsing maillog of postfix 2.3 or higher version. | |
# "pflog" see: http://www.tmtm.org/ruby/pflog/pflog-0.3 | |
use strict; | |
use warnings; | |
use Time::Local; | |
use Getopt::Long; | |
#use Data::Dumper; |
package Yairc::Plugin::OXGame; | |
=pod | |
○×ゲーム | |
3×3のマスに○と×を交互に置いて | |
タテ・ヨコ・ナナメ3連続になった方の勝ち | |
タグは #ox | |
まずはTAGSにoxを追加しておきましょう。 |
* * * * * /home/riywo/MyApp/env perl -e 'print "$@"' > /tmp/hoge 2>&1 |
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use File::Monitor::Lite; | |
use HTTP::Request::Common; | |
use IO::File; | |
use LWP::UserAgent; | |
my $upload_path = '/foo/bar'; # ここを直す |
this script is moved to Github. | |
https://github.com/yoku0825/my_slowlog/blob/master/table2slowlog.pl |
Option Explicit | |
'VbLiteUnitを読み込みます | |
Implements ITestCase | |
Private Function ITestCase_TestCaseInstance() As ITestCase | |
Dim objResult As New ClassTest '自テストClass名を記載 | |
Debug.Assert TypeName(objResult) = TypeName(Me) | |
Set ITestCase_TestCaseInstance = objResult | |
End Function |