- vimj_cut.pl
- F_XXX.BIN & F_XXX.IDX からファイルを取り出します
- vimj_sss2s14.pl
- MIDステレオの楽曲データ(*.SSS)を2つの *.S14 ファイルに分割します
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| import datetime | |
| import youtube_dl | |
| import subprocess | |
| from sys import exit, argv | |
| from os.path import exists | |
| from modules import text | |
| from traceback import format_exc |
User-Agent: c384da2W9f73dz20403d
All files are in the format (P|)XXXYZZZa.bin
"X" is the company code, one of the following:
'AGL', 'ARS', 'ART', 'ATN', 'BGT', 'BOT', 'BPS', 'CAR', 'COM', 'COS', 'DBS', 'DMB', 'EBS', 'FAL', 'FAM', 'FAS', 'FUG', 'GAR', 'GDA', 'GMD', 'GNX', 'HAM', 'HOK', 'HOT', 'HRZ', 'HUD', 'IMX', 'IPM', 'ISE', 'JLC', 'KNK', 'KNM', 'KSK', 'KUR', 'MCN', 'MEW', 'MIC', 'MIL', 'NCS', 'NIC', 'NTB', 'ONS', 'PHA', 'PON', 'POP', 'QSR', 'RDM', 'RIV', 'ROM', 'SAC', 'SKP', 'SNT', 'SPS', 'SQE', 'STW', 'SYS', 'TAE', 'TEL', 'THR', 'TZG', 'WIN', 'XTA', 'ZOM'
- Gratitude グラッティテュード・感謝
- Webサイト『アイドルマスターオフィシャルグッズショップ「ショップナムコ」』上において、765プロ(アーケード版の9人)所属アイドルのバースデーを記念してグッズを制作する企画があった。
- 同企画の第2弾として、千早のバースデーを記念したマキシシングルCDが販売された。
- ドラマパートとカバー曲が収録されている。
- ブックレットを同梱し、ボーナストラックとして「ふたりのもじぴったん」を追加で収録して、アニメイトで再販された。なお、この「ふたりのもじぴったん」は「Your Song」や「MASTER ARTIST 02」と同じである(「Your Song」からの再録?)。
- 俗に再販された方は「アニメイト限定版」、公式サイトで販売された方は「バースデー版」と呼ばれる。
- 入手困難なCDとしてやたらと有名である。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # vim: sw=4 ts=4 et tw=100 cc=+1 | |
| # | |
| #################################################################################################### | |
| # DESCRIPTION # | |
| #################################################################################################### | |
| # | |
| # Decompressor/compressor for files in Mozilla's "mozLz4" format. Firefox uses this file format to | |
| # compress e. g. bookmark backups (*.jsonlz4). | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Prevent OBJECT Insertion | |
| // @version 1.1 | |
| // @description OBJECT要素の挿入を阻止します。「Amazonが重い」問題(Bug 1172205)を回避できるかもしれません。 | |
| // @id f4cce630-3501-4d9f-a846-d69064429f02 | |
| // @namespace f4cce630-3501-4d9f-a846-d69064429f02 | |
| // @include http://www.amazon.com/* | |
| // @include http://www.amazon.com.au/* | |
| // @include http://www.amazon.com.br/* | |
| // @include http://www.amazon.ca/* |
In VirtualBox, a virtual machine and its settings are described in a virtual machine settings file in XML format.
VM の設定は XML 形式で書いてある。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| LANG=ja_JP.utf8 | |
| pid=$$ | |
| date=`date '+%Y-%m-%d-%H_%M'` | |
| outdir="." | |
| if [ $# -le 1 ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import time | |
| import sys | |
| if __name__ == "__main__": | |
| if len(sys.argv) != 2: | |
| exit("need an argument") | |
| to_run = sys.argv[1] | |
| proc = subprocess.Popen(to_run) | |
| print "start process with pid %s" % proc.pid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Win7 Powershell script to resize Minecraft to 1280x720 (HD for fraps youtube capture) | |
| # use by typing the following at a command prompt: | |
| # > PowerShell -ExecutionPolicy Bypass -File minecraft-sethd.ps1 | |
| # refs: | |
| # http://stackoverflow.com/questions/2556872/how-to-set-foreground-window-from-powershell-event-subscriber-action | |
| # http://richardspowershellblog.wordpress.com/2011/07/23/moving-windows/ | |
| # http://www.suite101.com/content/client-area-size-with-movewindow-a17846 |