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 / 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 \
@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 / 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 / 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 / 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 / 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 / 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 / manifest.json
Last active November 6, 2022 20:29
Chrome.storage.sync example
{
"name": "SyncExtension",
"version": "0.1",
"manifest_version": 2,
"description": "Storage Sync Extension",
"permissions": [ "storage" ],
"browser_action": {
@IzumiSy
IzumiSy / balloon.jsx
Created July 12, 2017 08:08
Balloon component for React Native
import React from "react";
import {
StyleSheet,
TouchableWithoutFeedback,
View
} from "react-native";
export class Notifications extends React.Component {
componentWillMount() {
this.state = {
@IzumiSy
IzumiSy / validatable_record.js
Created August 27, 2017 04:37
Immutable Record with validate.js
//
// Example for Immutable Record with validate.js
//
const _ = require("underscore");
const I = require("immutable");
const validate = require("validate.js");
function ValidatableRecord(args, rules = {}) {
const _prototype = I.Record.prototype;