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. パッケージ名でPIDを探す | |
gpid=`pidof -s com.miHoYo.GenshinImpact` | |
2. フレーム補間をPID指定で有効化 | |
vivo X100の場合45FPSを90FPSにフレーム補間 | |
settings put system gamecube_frame_interpolation 1:3:$gpid:45:90 | |
iQOO 12の場合48FPSを144FPSにフレーム補間 | |
settings put system gamecube_frame_interpolation 1:3:$gpid:48:144 |
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. root権限で実行するためsuに | |
su | |
※suコマンドを実行できないGSIの場合は一旦exitでadb shellを抜けて以下を実行 | |
adb root | |
adb shell | |
# 2. 各イメージがあるパスへ移動する (/dev/block/bootdevice/by-name/ の場合もあります) | |
cd /dev/block/by-name/ | |
# 3. バックアップ保存用ディレクトリを作成 |
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
# Check if the port works. Error will be outputed if it didn't work | |
./EfsTools.exe efsInfo | |
# Reset mcfg_autoselect_by_uim (please create empty file named mcfg_autoselect_by_uim file) | |
./EfsTools.exe writeFile -i mcfg_autoselect_by_uim -o /nv/item_files/mcfg/mcfg_autoselect_by_uim | |
# Flash mbn | |
./EfsTools.exe uploadDirectory -i mcfg_sw.mbn -o / -v |
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
⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛🟥⬛⬛⬛ | |
⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛🟥⬛⬛⬛ | |
⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛🟥⬛⬛⬛ | |
🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥⬛⬛🟥🟥🟥🟥🟥🟥🟥 | |
🟥⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛🟥⬛⬛⬛ | |
🟥⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛🟥⬛⬛⬛ | |
🟥⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛🟥⬛⬛⬛ | |
🟥⬛⬛⬛⬛🟥🟥🟥🟥⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛ | |
🟥⬛⬛⬛⬛🟥🟥🟥🟥⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛ | |
🟥⬛⬛⬛⬛⬛⬛🟥🟥⬛⬛⬛⬛⬛⬛🟥⬛⬛⬛ |
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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<string name="actionbar_button_up_description">Back</string> | |
<string name="afternoon">Afternoon</string> | |
<string name="ai_assistant">AI Call Assistant</string> | |
<string name="ai_assistant_not_installed">Install AI Call Assistant first</string> | |
<string name="ai_dial">AI call</string> | |
<string name="ai_mode_auto">Auto</string> | |
<string name="ai_mode_manual">Manually</string> | |
<string name="ai_mode_subtitles">Subtitles</string> |
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 Google検索 日本語のみ・英語のみボタン | |
// @namespace http://0-oo.net/ | |
// @description Google検索に「日本語のみ」「英語のみ」ボタンを追加する | |
// @homepage http://0-oo.net/log/category/greasemonkey/ | |
// @version 1.1 | |
// @include http*://www.google.tld/search* | |
// @include http*://www.google.tld/webhp* | |
// @include http*://www.google.tld/#* | |
// @include http*://www.google.tld/ |
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 | |
# Example of the case where you want to get 50 repetitions | |
max=50 | |
for ((i=0; i < $max; i++)); do | |
adb shell su -c "cat /sys/devices/platform/soc/ae00000.qcom,mdss_mdp/drm/card0/sde-crtc-0/measured_fps" | |
echo -n -e "\n" | |
done |
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
.raf-slider{ | |
width: 50%; | |
float: left; | |
} | |
#app > main > section:nth-child(2){ | |
overflow-y: scroll; | |
height: 300px; | |
} | |
#app > main > section:nth-child(3){ | |
padding-top: 1rem; |
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
https://github.com/fsyhrnl/twifer | |
を | |
composer require ferrysyahrinal/twifer | |
でテーマフォルダにインストールしておく | |
<?php | |
require_once STYLESHEETPATH . '/vendor/autoload.php'; | |
use Twifer\API; | |
function tweetv2($new_status, $old_status, $post){ |
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
./realme-ota -d ./out.txt -r [0] [1] [2] [3] [4] | |
例: | |
./realme-ota -d ./out.txt -r 1 PGP110 PGP110_11.A.12_0120_202210111756 3 10010111 | |
[0] | |
リージョン | |
グローバル = 0, CN = 1, IN = 2, EU = 3 | |
[1] |
NewerOlder