./ad2mf.sh aosp.dependencies
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
mkdir -p ~/android; podman run -v $HOME/android/:/android-build/android --rm -it koumaza/android_rom |
podman run --privileged -it koumaza/podman /bin/bash
podman run --cgroup-manager=cgroupfs --net=host -it koumaza/podman /bin/bash
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
adb shell | |
settings get global tether_dun_required # Get value | |
settings put global tether_dun_required 1 # Disabled | |
settings put global tether_dun_required 0 # Enbaled |
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
echo "b c a n z d g q v h a g d"|tr ' ' '\n'|sort|uniq|tr '\n' ' ' |
This page: https://git.io/TiT
using translate google;
- En to Ja
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/fish | |
while true | |
rm .tmp.target.apk 2&> /dev/null || true | |
set uri $argv | |
if test -z "$uri" | |
read uri -p "echo 'URI |> '" | |
set -gx uri $uri | |
end | |
aria2c -x10 -s10 -o .tmp.target.apk "$uri" |
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
# notyet!!!!! | |
#!/usr/bin/fish | |
# if Regular cycle | |
function regular_c | |
while true | |
echo 'How many days is your menstrual cycle?' | |
read regular_day -p "echo '(day) > '" | |
end | |
echo $regular_day |
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/fish | |
function device | |
echo 'devices' | |
fastboot devices | |
end | |
function getvar_max-sparse-size | |
echo 'getvar max-sparse-size' | |
fastboot getvar max-sparse-size |