VRChatの標準カメラ(FOV=60)で撮影すると、周辺部がにゅ~んと伸びてしまいがちなので、それを調整するためのバッチファイルを書いてみました。
※2021年11月のアップデート以降、カメラのFOVが調整可能になりました。FOVがデフォルトから変更している状態で撮影した場合は正常に補正できませんのでご注意ください。
// @ts-check | |
// --- | |
// | |
// Boothの購入金額とかを集計するスクリプト | |
// | |
// --- | |
// | |
// 自己責任で実行してください | |
// |
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>ログ見るだけのやつ</title> | |
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | |
<meta name="referrer" content="no-referrer"> | |
<meta name="robots" content="none"> | |
<style type="text/css"> | |
body { |
# ################################################################### | |
# Mp3tag (v2.39+) parsing for VGMdb.net, created by dano on 2010-01-20 | |
# Updated and maintained by PBX_g33k starting from 2015-09-01 | |
# Changes for the current (2020) vgmdb site by jiyunomegami | |
# | |
# | |
# This file should be in your sources directory | |
# On Windows XP it's | |
# C:\Documents and Settings\*username*\Application Data\Mp3tag\data\sources | |
# |
____-------____ | |
__-- --__ | |
/ \ | |
\ _--_ _--_ / あなたはシステム管理者から通常の講習を受けたはずです。 | |
| ,--. ,--. | これは通常、以下の3点に要約されます: | |
| |()| |()| | | |
| _______ | #1) 他人のプライバシーを尊重すること。 | |
| \ ||| / | | |
| `---' | #2) タイプする前に考えること。 |
平日の業務時間内に見つけた問題である関係で(自分ルールで)所属を入れていますが、他社サービスに対する調査や報告は業務とは一切関係のない個人の活動として行っています。
文責はmala個人にあります。お問い合わせなどありましたら個人宛にどうぞ。TwitterのDMや任意の文字列 @ma.la
# Validates that MX record exists for domain to prevent typos and also block by MX servers | |
# Use by adding to app/models/user.rb | |
# validates_with EmailMXValidator, if: :email_changed? | |
# frozen_string_literal: true | |
require 'resolv' | |
class EmailMXValidator < ActiveModel::Validator | |
def validate(user) | |
domain = user.email.split('@', 2).last | |
mxs = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::MX).to_a.map { |e| e.exchange.to_s } |
1 | 黒髪 | |
---|---|---|
1 | 赤髪 | |
1 | 青髪 | |
1 | 緑髪 | |
1 | 茶髪 | |
1 | 桃髪 | |
1 | 銀髪 | |
1 | 金髪 | |
2 | ツインテール | |
2 | ポニーテール |
document.querySelector("#global-actions").appendChild(document.querySelector("#global-actions>li.moments.js-moments-tab")); |
# The initial version | |
if [ ! -f .env ] | |
then | |
export $(cat .env | xargs) | |
fi | |
# My favorite from the comments. Thanks @richarddewit & others! | |
set -a && source .env && set +a |