Skip to content

Instantly share code, notes, and snippets.

View mirai-iro's full-sized avatar
🤔
転職活動中

mirai-iro mirai-iro

🤔
転職活動中
View GitHub Profile
@mirai-iro
mirai-iro / Maruamyu_Imas_Constants_Line.php
Last active December 7, 2019 19:35
Maruamyu\Imas\Constants\Line
<?php
namespace Maruamyu\Imas\Constants;
/**
* @lisence MIT
*/
class Line
{
/** @var string[] packageId => name */
@mirai-iro
mirai-iro / Maruamyu_Imas_Core_Util.php
Created February 18, 2017 07:28
Maruamyu_Imas_Core_Util.php
<?php
# ユーティリティ
class Maruamyu_Imas_Core_Util
{
# アイドル名, 声優名, アイドルならtrue
public static $IDOL_LIST = array(
'har' => array('天海春香', '中村繪里子', true),
'chi' => array('如月千早', '今井麻美', true),
'yuk' => array('萩原雪歩', '浅倉杏美', true),
@mirai-iro
mirai-iro / VIMJ-utils.md
Last active December 26, 2019 10:09
コロムビアさん MASTER BOX DSはまだですか……

VIMJ utils

ファイルの説明

  • vimj_cut.pl
    • F_XXX.BIN & F_XXX.IDX からファイルを取り出します
  • vimj_sss2s14.pl
  • MIDステレオの楽曲データ(*.SSS)を2つの *.S14 ファイルに分割します
@mirai-iro
mirai-iro / jquery.isexist.js
Last active August 29, 2015 14:00
if ($('#hoge').length > 0) { ...と書くのがめんどうだった
/*!
* jQuery.isExist
* written by mirai-iro.
* https://gist.github.com/mirai-iro/11401781
* Released under the MIT license.
*/
(function($){
$.fn.isExist = function(){
return($(this).length > 0);
}