Skip to content

Instantly share code, notes, and snippets.

View IzumiSy's full-sized avatar
🎯
Focusing

Seiya IZUMI IzumiSy

🎯
Focusing
View GitHub Profile
@IzumiSy
IzumiSy / weblio.pl
Last active August 29, 2015 14:01
Weblio seaching on CUI
#!/usr/bin/perl
#
# Weblio on CUI
#
use strict;
use warnings;
use LWP::UserAgent;
use HTML::TreeBuilder;
@IzumiSy
IzumiSy / gsearch.pl
Created April 4, 2014 02:01
Google search from terminal
#!/usr/bin/perl
use strict;
use warnings;
use utf8;
use Encode;
our $args = decode_utf8($ARGV[0]);
foreach my $i (1 .. $#ARGV) {
$args = $args . "+" . decode_utf8($ARGV[$i]);
}
@IzumiSy
IzumiSy / mikuttervc.pl
Created April 4, 2014 01:59
Perl script for mikutter version checking
#!/usr/bin/perl
#
# みくったーの最新版があるのかどうかを調べるPerlスクリプト
#
use strict;
use warnings;
use LWP::UserAgent;
use HTML::TreeBuilder;
@IzumiSy
IzumiSy / WebsiteJumper.plugin
Created April 4, 2014 01:54
Plugin for radiotray
[RadioTrayPlugin]
name=Website Jumper
desc=Open the website of the current radio
script=WebsiteJumper.py
class=WebsiteJumper
author=Seiya IZUMI
@IzumiSy
IzumiSy / 4quiz.pl
Created April 4, 2014 01:51
Quiz with 4 multiple choices written in Perl/Tk
#
# Tiny quiz script using Perl/Tk
# 4quiz.pl
# JsZ 2011 10.12
#
use strict;
use Tk;
use Text::CSV::Simple;
@IzumiSy
IzumiSy / taglib-1.9.1.pro
Created February 20, 2014 02:12
Qt Project file for building Taglib 1.9.1
TEMPLATE = lib
INCLUDEPATH += \
taglib/ \
taglib/ape \
taglib/asf \
taglib/flac \
taglib/mp4 \
taglib/mpc \
taglib/mpeg \
@IzumiSy
IzumiSy / taglib-1.8.pro
Last active December 14, 2015 16:28
Qt Project file for building Taglib 1.8
TEMPLATE = lib
INCLUDEPATH += \
taglib/ \
taglib/ape \
taglib/asf \
taglib/flac \
taglib/mp4 \
taglib/mpc \
taglib/mpeg \