In VirtualBox, a virtual machine and its settings are described in a virtual machine settings file in XML format.
VM の設定は XML 形式で書いてある。
# 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 |
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 |
#!/bin/bash | |
LANG=ja_JP.utf8 | |
pid=$$ | |
date=`date '+%Y-%m-%d-%H_%M'` | |
outdir="." | |
if [ $# -le 1 ]; then |
In VirtualBox, a virtual machine and its settings are described in a virtual machine settings file in XML format.
VM の設定は XML 形式で書いてある。
// ==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/* |
#!/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). | |
# |
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'
#!/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 |