- Windowsがインストールされたマシン(Windows 10で動作確認済)
- Android SDKをインストールする
- KingoRootをインストールする
- Fx0をUSBケーブルでマシンにつなぐ
- KingoRootを起動し,「ROOT」をクリック
- 待つ
- adb shellから
su
する
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 | |
# YOUR_ACCESS_TOKEN には https://www.pushbullet.com/#settings/account から取得したトークンを使用 | |
PUSHBULLET_TOKEN=YOUR_ACCESS_TOKEN | |
# CCacheを使う | |
export USE_CCACHE=1 | |
workdir=`pwd` | |
mkdir -p $workdir/log/success $workdir/log/fail $workdir/rom |
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
# 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 |
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
document.querySelector("#global-actions").appendChild(document.querySelector("#global-actions>li.moments.js-moments-tab")); |
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
1 | 黒髪 | |
---|---|---|
1 | 赤髪 | |
1 | 青髪 | |
1 | 緑髪 | |
1 | 茶髪 | |
1 | 桃髪 | |
1 | 銀髪 | |
1 | 金髪 | |
2 | ツインテール | |
2 | ポニーテール |
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
# 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 } |
-
平日の業務時間内に見つけた問題である関係で(自分ルールで)所属を入れていますが、他社サービスに対する調査や報告は業務とは一切関係のない個人の活動として行っています。
-
文責はmala個人にあります。お問い合わせなどありましたら個人宛にどうぞ。TwitterのDMや任意の文字列 @ma.la
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
____-------____ | |
__-- --__ | |
/ \ | |
\ _--_ _--_ / あなたはシステム管理者から通常の講習を受けたはずです。 | |
| ,--. ,--. | これは通常、以下の3点に要約されます: | |
| |()| |()| | | |
| _______ | #1) 他人のプライバシーを尊重すること。 | |
| \ ||| / | | |
| `---' | #2) タイプする前に考えること。 |
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
# ################################################################### | |
# 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 | |
# |