updated occassionally
filename | character |
---|---|
CH0058_spr |
Hifumi (Swimsuit) |
CH0060_spr |
Tsurugi (Swimsuit) |
CH0063_spr |
Hina (Swimsuit) |
CH0064_spr |
Iori (Swimsuit) |
CH0066_spr |
Shun (Small) |
CH0069_spr |
Mika |
#!/bin/bash | |
# Remove existing "nameserver" lines from /etc/resolv.conf | |
sed -i '/nameserver/d' /etc/resolv.conf | |
# Run the PowerShell command to generate "nameserver" lines and append to /etc/resolv.conf | |
# we use full path here to support boot command with root user | |
/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -Command '(Get-DnsClientServerAddress -AddressFamily IPv4).ServerAddresses | ForEach-Object { "nameserver $_" }' | tr -d '\r'| tee -a /etc/resolv.conf > /dev/null |
Inspired by this
More of my guides: Debloating MEMu - Debloating Nox (Updated)
This mainly applies to LDPlayer9. They will probably work on the low end options (like LDPlayer5) but not guaranteed.
This emulator seems to have less stability issues than MEMu. I think we get the shtick that these emulators do spooky stuff.
For this tutorial I will be making a bypass for dutchycorp.space, if you want to follow along example links are here.
There are several ways to clone a repository from github. Similar from other providers, such as bitbucket, gitlab, etc.
https://git-scm.com/book/en/v2/Git-on-the-Server-The-Protocols
Mostly, we use
This gist is intended to assist beginners, like myself, in getting started with Android Kernel Compilation. Please note that while I'm sharing my setup and process, this guide may not be entirely accurate, and I welcome suggestions from experienced developers to improve it.
I am on Arch, so I will be using pacman to install the base-devel package group.
sudo pacman -S base-devel
On a Debian based distro, you can use apt and install the build-essential package.
/** -- | |
** Copyright (C) 2019 by Josh van den Heever | |
** | |
** Permission is hereby granted, free of charge, to any person obtaining a copy of | |
** this software and associated documentation files (the "Software"), to deal in | |
** the Software without restriction, including without limitation the rights to | |
** use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | |
** of the Software, and to permit persons to whom the Software is furnished to | |
** do so, subject to the following conditions: | |
** |
Generally, the Git proxy configuration depends on the Git Server Protocol you use. And there're two common protocols: SSH and HTTP/HTTPS. Both require a proxy setup already. In the following, I assume a SOCKS5 proxy set up on localhost:1080
. But it can also be a HTTP proxy. I'll talk about how to set up a SOCKS5 proxy later.
When you do git clone ssh://[user@]server/project.git
or git clone [user@]server:project.git
, you're using the SSH protocol. You need to configurate your SSH client to use a proxy. Add the following to your SSH config file, say ~/.ssh/config
:
ProxyCommand nc -x localhost:1080 %h %p